ProgressLinear
A linear progress indicator. It can display a specific value from 0 to 100 or showcase an indeterminate loading state.
Usage
Determinate Progress
Demonstrates progress value between 0 and 100.
<ProgressLinear value={50} height={2} />
Indeterminate Progress
Exhibits a looping animation indicating an ongoing process.
<ProgressLinear indeterminate height={2} />
Rounded Corners
A linear progress with rounded corners.
<ProgressLinear value={70} height={2} rounded />
API
Props
Prop | Type | Default | Required |
---|---|---|---|
value | number (0-100) | 0 | - |
indeterminate | boolean | - | - |
height | number | 4 | - |
rounded | boolean | - | - |
MarginProps | Token<MarginProps> | - | - |
color | ThemeAccentColor | - | - |
radius | ThemeRadius | - | - |
Progress Circular
Previous
Tab
Next