| aria-label | string | null | Adds accessible text to the ProgressBar. Required when title not used and there is not any label associated with the progress bar |
| aria-labelledby | string | null | Associates the ProgressBar with it's label for accessibility purposes. Required when title not used |
| className | string | '' | Classname for progress component. |
| helperText | React.ReactNode | | Content which can be used to convey additional information about the progress component.
We recommend the helper text component as it was designed for this purpose. |
| id | string | '' | DOM id for progress component. |
| isTitleTruncated | boolean | false | Indicate whether to truncate the string title |
| label | React.ReactNode | null | Text description of current progress value to display instead of percentage. |
| max | number | 100 | Maximum value of progress. |
| measureLocation | 'outside' | 'inside' | 'top' | 'none' | ProgressMeasureLocation.top | Where the measure percent will be located. |
| min | number | 0 | Minimal value of progress. |
| size | 'sm' | 'md' | 'lg' | null | Size variant of progress. |
| title | React.ReactNode | '' | Title above progress. The isTitleTruncated property will only affect string titles. Node title truncation must be handled manually. |
| tooltipPosition | 'auto' | 'top' | 'bottom' | 'left' | 'right' | 'top' | Position of the tooltip which is displayed if title is truncated |
| value | number | 0 | Actual value of progress. |
| valueText | string | null | Accessible text description of current progress value, for when value is not a percentage. Use with label. |
| variant | 'danger' | 'success' | 'warning' | null | Status variant of progress. |