Material-UI CircularProgress without animation wrapper.
Base circular progress component with direct Material-UI CircularProgress
rendering without fade animation or additional container. Use this for simple
progress indicators where animation is not needed. All Material-UI CircularProgress
props are supported and passed through directly.
Parameters
props: CircularProgressProps
CircularProgress configuration (see MUI docs for all available props)
Returns Element
Base CircularProgress component without animation
Example
// Basic usage <CircularProgressBase/>
// With specific value <CircularProgressBasevalue={75}/>
// Indeterminate with color <CircularProgressBase color="secondary" variant="indeterminate" />
// With custom size and thickness <CircularProgressBase size={60} thickness={4} value={80} />
Material-UI CircularProgress without animation wrapper.
Base circular progress component with direct Material-UI CircularProgress rendering without fade animation or additional container. Use this for simple progress indicators where animation is not needed. All Material-UI CircularProgress props are supported and passed through directly.