Displays an indicator showing the completion progress of a task.
import { Progress } from "@/components/ui/progress" export function ProgressDemo() { return <Progress value={33} /> }
Prop | Type | Default | Description |
---|---|---|---|
value | number | - | The progress value between 0 and 100. |
max | number | 100 | The maximum value of the progress. |
getValueLabel | function | - | A function to generate a label for the progress. |