--- 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 ``` ## Examples ### Label Use `ProgressLabel` and `ProgressValue` to add a label and value display. ### Controlled A progress bar that can be controlled by a slider. ## RTL To enable RTL support in shadcn/ui, see the [RTL configuration guide](/docs/rtl). ## API Reference See the [Base UI Progress](https://base-ui.com/react/components/progress#api-reference) documentation.