mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-30 08:04:18 +00:00
18 lines
494 B
TypeScript
18 lines
494 B
TypeScript
import { Skeleton } from "@/examples/base/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>
|
|
)
|
|
}
|