--- 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 --- ## Installation ```bash npx shadcn-ui add progress ``` Manual Installation 1. Install the `@radix-ui/react-progress` component from radix-ui: ```bash npm install @radix-ui/react-progress ``` 2. Copy and paste the following code into your project. This is the `` primitive. You can place it in a file at `components/ui/progress.tsx`. ## Usage ```tsx import { Progress } from "@/components/ui/progress" ``` ```tsx ```