For the complete documentation index, see llms.txt. Markdown variants are available by appending .md to any URL or sending an Accept: text/markdown header. An agent skill is available at /.well-known/agent-skills/site-skill.md.
119

Progress

Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.

x
"use client";

import * as React from "react";

import { Progress } from "@/components/ui/progress";

Installation

$ pnpm dlx shadcn@latest add https://shadcn-cssinjs.com/r/progress.json

Usage

import { Progress } from "@/components/ui/progress";
<Progress value={33} />

Composition

With label and value

Use ProgressLabel and ProgressValue to add a label and value display.

import {
  Progress,
  ProgressLabel,
  ProgressValue,
} from "@/components/ui/progress";
<Progress value={56} className="w-full max-w-sm">
  <ProgressLabel>Upload progress</ProgressLabel>
  <ProgressValue />
</Progress>;
Progress
├── ProgressLabel
├── ProgressValue
└── ProgressTrack
    └── ProgressIndicator

Label

Use ProgressLabel and ProgressValue to add a label and value display.

Upload progress
x
import {
  Progress,
  ProgressLabel,
  ProgressValue,
} from "@/components/ui/progress";

Controlled

A progress bar that can be controlled by a slider.

x
"use client";

import * as React from "react";

import { Progress } from "@/components/ui/progress";
import { Slider } from "@/components/ui/slider";

RTL

To enable RTL support in shadcn/ui, see the RTL configuration guide.

تقدم الرفع
x
"use client";

import * as React from "react";

import { useTranslation } from "@/components/language-selector";
import type { Translations } from "@/components/language-selector";

API Reference

See the Base UI Progress documentation.