mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-24 21:25:55 +00:00
59 lines
941 B
Plaintext
59 lines
941 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
|
|
|
|
<CodeTabs>
|
|
|
|
<TabsList>
|
|
<TabsTrigger value="cli">CLI</TabsTrigger>
|
|
<TabsTrigger value="manual">Manual</TabsTrigger>
|
|
</TabsList>
|
|
<TabsContent value="cli">
|
|
|
|
```bash
|
|
npx shadcn@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>
|
|
|
|
</CodeTabs>
|
|
|
|
## 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."
|
|
/>
|