Files
shadcn-ui/apps/v4/examples/base/skeleton-card.tsx
shadcn 7d718ddaa9 fix: refactor styles (#10190)
* feat: refactor styles handling across v4

* fix

* fix

* fix

* fix

* fix

* fix
2026-03-26 14:36:00 +04:00

17 lines
454 B
TypeScript

import { Card, CardContent, CardHeader } from "@/styles/base-nova/ui/card"
import { Skeleton } from "@/styles/base-nova/ui/skeleton"
export function SkeletonCard() {
return (
<Card className="w-full max-w-xs">
<CardHeader>
<Skeleton className="h-4 w-2/3" />
<Skeleton className="h-4 w-1/2" />
</CardHeader>
<CardContent>
<Skeleton className="aspect-video w-full" />
</CardContent>
</Card>
)
}