apps/v4/content/docs/components/radix/progress.mdx
npx shadcn@latest add progress
<Step>Install the following dependencies:</Step>
npm install radix-ui
<Step>Copy and paste the following code into your project.</Step>
<ComponentSource name="progress" title="components/ui/progress.tsx" styleName="radix-nova" />
<Step>Update the import paths to match your project setup.</Step>
</Steps> </TabsContent> </CodeTabs>import { Progress } from "@/components/ui/progress"
<Progress value={33} />
Use a Field component to add a label to the progress bar.
A progress bar that can be controlled by a slider.
<ComponentPreview styleName="radix-nova" name="progress-controlled" />To enable RTL support in shadcn/ui, see the RTL configuration guide.
<ComponentPreview styleName="radix-nova" name="progress-rtl" direction="rtl" />See the Radix UI Progress documentation.