import type { ReactNode, HTMLAttributes } from "react";
interface CardProps extends HTMLAttributes {
className?: string;
children: ReactNode;
onClick?: () => void;
}
export function Card({ className = "", children, onClick, ...rest }: CardProps) {
return (
{children}
);
}