Skip to content
X GitHub

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>

To install the skeleton component, run the following command:

Terminal window
pnpm dlx shadcn@latest add @fulldev-ui/skeleton
import { Skeleton } from "@/components/ui/skeleton"
<Skeleton class="h-12 w-12 rounded-full" />
<Skeleton class="h-4 w-full" />
---
import { Skeleton } from "@/components/ui/skeleton"
---
<Skeleton class="h-12 w-12 rounded-full" />
---
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>
---
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>