import { cn } from '@/lib/utils'; function Card({ className, ref, ...props }) { return (
); } function CardHeader({ className, ref, ...props }) { return ( ); } function CardTitle({ className, ref, ...props }) { return ( ); } function CardDescription({ className, ref, ...props }) { return ( ); } function CardContent({ className, ref, ...props }) { return ( ); } function CardFooter({ className, ref, ...props }) { return ( ); } export { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter };