Files
shadcn-ui/apps/www/content/docs/components/skeleton.mdx
shadcn 11c31af94f feat(www): add description and edit in v0 to examples (#3518)
* feat(www): add description and edit in v0 to examples

* fix: missing icon
2024-04-17 22:14:40 +04:00

59 lines
955 B
Plaintext

---
title: Skeleton
description: Use to show a placeholder while content is loading.
component: true
---
<ComponentPreview name="skeleton-demo" description="A skeleton component." />
## Installation
<Tabs defaultValue="cli">
<TabsList>
<TabsTrigger value="cli">CLI</TabsTrigger>
<TabsTrigger value="manual">Manual</TabsTrigger>
</TabsList>
<TabsContent value="cli">
```bash
npx shadcn-ui@latest add skeleton
```
</TabsContent>
<TabsContent value="manual">
<Steps>
<Step>Copy and paste the following code into your project.</Step>
<ComponentSource name="skeleton" />
<Step>Update the import paths to match your project setup.</Step>
</Steps>
</TabsContent>
</Tabs>
## Usage
```tsx
import { Skeleton } from "@/components/ui/skeleton"
```
```tsx
<Skeleton className="w-[100px] h-[20px] rounded-full" />
```
## Examples
### Card
<ComponentPreview
name="skeleton-card"
description="A card with skeleton showing a loading state."
/>