Files
Account/src/components/Loading.tsx
2025-08-21 14:51:56 +03:30

18 lines
352 B
TypeScript

import { CircularProgress, Stack } from '@mui/material';
export const Loading = () => {
return (
<Stack
sx={{
alignItems: 'center',
justifyContent: 'center',
position: 'fixed',
inset: '0',
zIndex: (t) => t.zIndex.tooltip + 1,
}}
>
<CircularProgress size={50} />
</Stack>
);
};