ConstThe properties for the CircularProgressBase component
A rendered CircularProgressBase component
// Basic usage
<CircularProgressBase />
// With specific value
<CircularProgressBase value={75} />
// Indeterminate with color
<CircularProgressBase
color="secondary"
variant="indeterminate"
/>
// With custom size and thickness
<CircularProgressBase
size={60}
thickness={4}
value={80}
/>
A customized Material UI Circular Progress Base component.