File size: 388 Bytes
d1bf860 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import { Skeleton } from '@/components/ui/skeleton';
export function SkeletonCard() {
return (
<div className="flex flex-col space-y-3 items-center">
<Skeleton className="h-[125px] w-[250px] rounded-xl" />
<div className="space-y-2 w-[250px]">
<Skeleton className="h-4 w-[250px]" />
<Skeleton className="h-4 w-[200px]" />
</div>
</div>
);
}
|