mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 22:18:39 +00:00
17 lines
454 B
TypeScript
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>
|
|
)
|
|
}
|