import { Skeleton } from '@/components/ui/skeleton'; import { cn } from '@/lib/utils'; type SkeletonCardProps = { className?: string; }; export function SkeletonCard(props: SkeletonCardProps) { const { className } = props; return (
); }