docs(progress-bar): add "Small size" example

This commit is contained in:
Eric Liu 2022-02-26 10:51:42 -08:00
commit d355cda0ff

View file

@ -9,6 +9,12 @@ Without a specified `value` prop, the progress bar is indeterminate.
<ProgressBar helperText="Loading..." />
### Small size
Specify `size="sm"` to use the small variant.
<ProgressBar size="sm" helperText="Loading..." />
### Percentage
<ProgressBar value={40} labelText="Upload status" helperText="40 MB of 100 MB" />