mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 22:18:39 +00:00
18 lines
495 B
TypeScript
18 lines
495 B
TypeScript
import { Skeleton } from "@/examples/radix/ui/skeleton"
|
|
|
|
export function SkeletonForm() {
|
|
return (
|
|
<div className="flex w-full flex-col gap-7">
|
|
<div className="flex flex-col gap-3">
|
|
<Skeleton className="h-4 w-20" />
|
|
<Skeleton className="h-10 w-full" />
|
|
</div>
|
|
<div className="flex flex-col gap-3">
|
|
<Skeleton className="h-4 w-24" />
|
|
<Skeleton className="h-10 w-full" />
|
|
</div>
|
|
<Skeleton className="h-9 w-24" />
|
|
</div>
|
|
)
|
|
}
|