Files
shadcn-ui/apps/www/content/docs/components/progress.mdx
2023-06-22 22:44:52 +04:00

33 lines
558 B
Plaintext

---
title: Progress
description: Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.
component: true
radix:
link: https://www.radix-ui.com/docs/primitives/components/progress
api: https://www.radix-ui.com/docs/primitives/components/progress#api-reference
---
<ComponentPreview name="progress-demo" />
## Installation
<Steps>
### Command
```bash
npx shadcn-ui add progress
```
### Usage
```tsx
import { Progress } from "@/components/ui/progress"
```
```tsx
<Progress value={33} />
```
</Steps>