Skip to main content

CircularProgress

Example


import CircularProgress from '@mavvy/m3-ui/CircularProgress';
import Text from '@mavvy/m3-ui/Text';

export function Example() {
return (
<div>
<Text>small</Text>
<CircularProgress
color="primary"
size="small"
indeterminate
/>
<Text>medium</Text>
<CircularProgress color="primary" indeterminate />
<Text>large</Text>
<CircularProgress
color="primary"
size="large"
indeterminate
/>
</div>
);
}


small

medium

large

Props

proptypedescription
valuenumbervalue of the current progress
colorColorcomponent color
sizeSizesize of the chip component
indeterminatebooleanif true, shows an indeterminate state
classNamestringclassName of the component