Circular Progress
Circular Progress indicators, commonly known as spinners, express an unspecified wait time or display the length of a process.
Introduction
Progress indicators inform users about the status of ongoing processes, such as loading an app, submitting a form, or saving updates.
The CircularProgress
is indeterminate by default, indicating an unspecified wait time.
To actually have it represent how long an operation will take, use the determinate mode.
The animations of the components rely on CSS as much as possible to work even before the JavaScript is loaded.
<CircularProgress />
Playground
Component
After installation, you can start building with this component using the following basic elements:
import CircularProgress from '@mui/joy/CircularProgress';
export default function MyApp() {
return <CircularProgress />;
}
Variants
The circular progress component supports the four global variants: solid
, soft
(default), outlined
, and plain
.
Colors
Every palette included in the theme is available via the color
prop.
Play around combining different colors.
Variant:
Sizes
The circular progress component comes with three sizes out of the box: sm
, md
(default), and lg
.
With a button
CircularProgress
can be used as a decorator to show loading on a button.
The size of the circular progress is controlled by a button, an icon button, or a link unless the size
prop is explicitly specified on the progress.
CSS variables
Play around with all the CSS variables available on the component to see how the design changes.
You can use those to customize the component on both the sx
prop and the theme.
<CircularProgress />
CSS Variables