ProgressBar
Use the ProgressBar
component to show your users that a system operation such
as downloading, uploading, or processing is progressing. The ProgressBar
can
be used to visualize determinate or indeterminate progress.
ProgressBarProps
extends
, , , , ,
Name | Type | Default | Description |
---|---|---|---|
value? | | | 'indeterminate' | The current value. |
min? | 0 | The minimum allowed value. | |
max? | 100 | The maximum allowed value. | |
density? | | | 'default' | Controls the density of the rendering. |
color? | | | | | | 'primary' or a container's color. | Controls the color of the progress. |
'aria-valuetext'? | the value of the progress as percentage. | The aria-valuetext attribute defines the human-readable text alternative of aria-valuenow for a range widget. By default, the value will be given as a percentage. If the value is not a percentage, you should provide aria-valuetext. https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-valuetext |