Skeleton
---import { Skeleton } from "@/components/ui/skeleton"---
<div class="w-full max-w-sm space-y-2"> <Skeleton class="h-12 w-12 rounded-full" /> <Skeleton class="h-4 w-full" /> <Skeleton class="h-4 w-3/4" /></div>Installation
Section titled “Installation”To install the skeleton component, run the following command:
pnpm dlx shadcn@latest add @fulldev-ui/skeletonimport { Skeleton } from "@/components/ui/skeleton"<Skeleton class="h-12 w-12 rounded-full" /><Skeleton class="h-4 w-full" />Examples
Section titled “Examples”Avatar Skeleton
Section titled “Avatar Skeleton”---import { Skeleton } from "@/components/ui/skeleton"---
<Skeleton class="h-12 w-12 rounded-full" />Text Skeleton
Section titled “Text Skeleton”---import { Skeleton } from "@/components/ui/skeleton"---
<div class="space-y-2"> <Skeleton class="h-4 w-full" /> <Skeleton class="h-4 w-3/4" /></div>Card Skeleton
Section titled “Card Skeleton”---import { Skeleton } from "@/components/ui/skeleton"---
<div class="space-y-2 rounded-md border p-4"> <Skeleton class="h-4 w-3/4" /> <Skeleton class="h-4 w-1/2" /></div>