mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 06:28:37 +00:00
14 lines
362 B
TypeScript
14 lines
362 B
TypeScript
import { Skeleton } from "@/examples/base/ui/skeleton"
|
|
|
|
export function SkeletonDemo() {
|
|
return (
|
|
<div className="flex items-center space-x-4">
|
|
<Skeleton className="h-12 w-12 rounded-full" />
|
|
<div className="space-y-2">
|
|
<Skeleton className="h-4 w-[250px]" />
|
|
<Skeleton className="h-4 w-[200px]" />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|