import { ReactNode } from "react" import clsx from "clsx" interface CardProps { children?: ReactNode className?: string type?: string onClick?: () => void } const Card = ({ children }: CardProps) => { return (
{children}
) } const CardHeader = ({ children }: CardProps) => { return
{children}
} const CardIcon = ({ children, type, className, ...rest }: CardProps) => { return (
{children}
) } const CardTool = ({ children }: CardProps) => { return
{children}
} const CardBody = ({ children }: CardProps) => { return
{children}
} export { Card, CardHeader, CardIcon, CardTool, CardBody }