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.
0
Sponsor

Progress

Displays an indicator showing the completion progress of a task.

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

export function ProgressDemo() {
  return <Progress style={{ maxWidth: 320 }} value={60} />;
}

Installation

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

Usage

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

RTL

To enable right-to-left support, see the RTL guide.

x
"use client";

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

API Reference

See the Base UI documentation for the full API.