--- title: Progress description: Displays an indicator showing the completion progress of a task, typically displayed as a progress bar. component: true links: doc: https://www.radix-ui.com/docs/primitives/components/progress api: https://www.radix-ui.com/docs/primitives/components/progress#api-reference source: radix: true shadcn: true --- ## Installation CLI Manual ```bash npx shadcn-ui@latest add progress ``` Install the following dependencies: ```bash npm install @radix-ui/react-progress ``` Copy and paste the following code into your project. Update the import paths to match your project setup. ## Usage ```tsx import { Progress } from '@/components/ui/progress' ``` ```tsx ```