14 lines
430 B
JavaScript
14 lines
430 B
JavaScript
|
|
import Box from '@mui/joy/Box';
|
||
|
|
import CircularProgress from '@mui/joy/CircularProgress';
|
||
|
|
|
||
|
|
export default function CircularProgressVariants() {
|
||
|
|
return (
|
||
|
|
<Box sx={{ display: 'flex', gap: 2, alignItems: 'center', flexWrap: 'wrap' }}>
|
||
|
|
<CircularProgress variant="solid" />
|
||
|
|
<CircularProgress variant="soft" />
|
||
|
|
<CircularProgress variant="outlined" />
|
||
|
|
<CircularProgress variant="plain" />
|
||
|
|
</Box>
|
||
|
|
);
|
||
|
|
}
|