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