CircularProgress API
Demos
For examples and details on the usage of this React component, visit the component demo pages:
Import
import CircularProgress from '@mui/material/CircularProgress';
// or
import { CircularProgress } from '@mui/material';ARIA
If the progress bar is describing the loading progress of a particular region of a page,
you should use aria-describedby to point to the progress bar, and set the aria-busy
attribute to true on that region until it has finished loading.
Props
Props of the native component are also available.
Override or extend the styles applied to the component.
See CSS API below for more details.
Type:
objectThe color of the component. It supports both default and custom theme colors, which can be added as shown in the palette customization guide.
Type:
'inherit' | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning' | stringDefault:
'primary'If true, the shrink animation is disabled. This only works if variant is indeterminate.
Type:
boolDefault:
falseThe size of the component. If using a number, the pixel unit is assumed. If using a string, you need to provide the CSS unit, e.g '3rem'.
Type:
number | stringDefault:
40The system prop that allows defining system overrides as well as additional CSS styles.
See the `sx` page for more details.
Type:
Array<func | object | bool> | func | objectThe value of the progress indicator for the determinate variant. Value between 0 and 100.
Type:
numberDefault:
0ref is forwarded to the root element.Theme default props
You can use MuiCircularProgress to change the default props of this component with the theme.
CSS
The following class names are useful for styling with CSS (the state classes are marked).
To learn more, visit the component customization page.
Styles applied to the root element if variant="determinate".
Styles applied to the root element if variant="indeterminate".
Styles applied to the root element if color="secondary".
Styles applied to the circle svg path if variant="determinate".
Styles applied to the circle svg path if variant="indeterminate".
You can override the style of the component using one of these customization options:
- With a global class name.
- With a rule name as part of the component's
styleOverridesproperty in a custom theme.