source: src/components/loading-screen/loading-screen.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 598 bytes
Line 
1// @mui
2import Box, { BoxProps } from '@mui/material/Box';
3import LinearProgress from '@mui/material/LinearProgress';
4
5// ----------------------------------------------------------------------
6
7export default function LoadingScreen({ sx, ...other }: BoxProps) {
8 return (
9 <Box
10 sx={{
11 px: 5,
12 width: 1,
13 flexGrow: 1,
14 minHeight: 1,
15 display: 'flex',
16 alignItems: 'center',
17 justifyContent: 'center',
18 ...sx,
19 }}
20 {...other}
21 >
22 <LinearProgress color="inherit" sx={{ width: 1, maxWidth: 360 }} />
23 </Box>
24 );
25}
Note: See TracBrowser for help on using the repository browser.