Progress
Displays an indicator showing the completion progress of a task. Supports determinate and indeterminate states.
You can show multiple progress bars to track different tasks:
Storage60%
Memory30%
CPU85%
Indeterminate
Pass value={null} for an indeterminate animated state:
Installation
Props
| Prop | Type | Default | Description |
|---|---|---|---|
value | number | null | — | Current progress (0-100). null for indeterminate. |
max | number | 100 | Maximum value. |
getValueLabel | (value: number, max: number) => string | — | Accessible label for the progress value. |
className | string | — | Additional classes. |