Spaces:
Sleeping
Sleeping
File size: 458 Bytes
420b22a |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import React from 'react';
import Stack from '@mui/material/Stack';
import CircularProgress from '@mui/material/CircularProgress';
function LoadingSpinnerComponent({ size }) {
return (
<Stack sx={{ color: 'grey.500' }} spacing={2} direction="row" className='flex w-full h-full justify-center items-center pt-32'>
<CircularProgress color="inherit" size={size}/>
</Stack>
);
}
export default LoadingSpinnerComponent; |