mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-29 15:44:22 +00:00
12 lines
291 B
TypeScript
12 lines
291 B
TypeScript
import { Skeleton } from "@/examples/base/ui/skeleton"
|
|
|
|
export function SkeletonText() {
|
|
return (
|
|
<div className="flex w-full flex-col gap-2">
|
|
<Skeleton className="h-4 w-full" />
|
|
<Skeleton className="h-4 w-full" />
|
|
<Skeleton className="h-4 w-3/4" />
|
|
</div>
|
|
)
|
|
}
|