import clsxm from '@/lib/clsxm'; type CardProps = { as?: React.ElementType | keyof JSX.IntrinsicElements; className?: string; clickable?: boolean; children: React.ReactNode; [key: string]: any; }; export const Card = ({ as, className, children, clickable, ...props }: CardProps) => { const Component = as || 'div'; return ( {children} ); };