25
Displays an indicator showing the completion progress of a task, with a floating badge that shows the current percentage.
npx neobrutal add progressimport { Progress } from "@/components/ui/progress"<Progress value={33} />| Prop | Type | Default | Description |
|---|---|---|---|
| value | number | null | - | The progress value from 0 to 100. |
| max | number | - | The maximum progress value. Defaults to 100. |
| showValue | boolean | - | Whether to show the floating percentage badge. Defaults to true. |