ConstThe properties for the CircularProgress component
A rendered CircularProgress component
// Basic usage with loading state
<CircularProgress isLoaded={false} />
// With custom size and color
<CircularProgress
isLoaded={false}
size={40}
color="secondary"
/>
// With custom styling
<CircularProgress
isLoaded={false}
sx={{
color: 'primary.main',
position: 'absolute'
}}
/>
// With custom thickness
<CircularProgress
isLoaded={false}
thickness={4}
size={50}
/>
A customized Material UI Circular Progress component with fade animation.