mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-28 23:24:13 +00:00
12 lines
303 B
TypeScript
12 lines
303 B
TypeScript
import { Skeleton } from "@/styles/base-nova/ui/skeleton"
|
|
|
|
export function SkeletonText() {
|
|
return (
|
|
<div className="flex w-full max-w-xs flex-col gap-2">
|
|
<Skeleton className="h-4 w-full" />
|
|
<Skeleton className="h-4 w-full" />
|
|
<Skeleton className="h-4 w-3/4" />
|
|
</div>
|
|
)
|
|
}
|