Components
Progress
Progress
The Progress component displays a progress bar to indicate the completion status of a task, providing users with visual feedback on the progress of ongoing operations. It is ideal for keeping users informed about the status of tasks like file uploads, data processing, or installations.
Configurable Props
<Progress>
Prop | Type | Default/ Options | Description |
---|---|---|---|
value | number | null | The progress value. | |
max | number | The maximum progress value. | |
getValueLabel | (value: number, max: number) => string | A function to get the accessible label text representing the current value in a human-readable format. If not provided, the value label will be read as the numeric value as a percentage of the max value. |