main
Last change
on this file since 057453c was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
598 bytes
|
Rev | Line | |
---|
[5d6f37a] | 1 | // @mui
|
---|
| 2 | import Box, { BoxProps } from '@mui/material/Box';
|
---|
| 3 | import LinearProgress from '@mui/material/LinearProgress';
|
---|
| 4 |
|
---|
| 5 | // ----------------------------------------------------------------------
|
---|
| 6 |
|
---|
| 7 | export 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.