ConstCircularProgress configuration (see CircularProgressPropsExtend interface)
Fading CircularProgress component showing when not loaded
// 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}
/>
Material-UI CircularProgress with fade-in/out animation.
Wraps Material-UI's CircularProgress with Fade animation controlled by the
isLoadedprop. Shows loading spinner when isLoaded is false, fades out when true using theme transitions. All Material-UI CircularProgress props are supported. Useful for displaying loading states with smooth visibility transitions.