source: src/components/table/table-skeleton.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: 908 bytes
Line 
1// @mui
2import Stack from '@mui/material/Stack';
3import Skeleton from '@mui/material/Skeleton';
4import TableCell from '@mui/material/TableCell';
5import TableRow, { TableRowProps } from '@mui/material/TableRow';
6
7// ----------------------------------------------------------------------
8
9export default function TableSkeleton({ ...other }: TableRowProps) {
10 return (
11 <TableRow {...other}>
12 <TableCell colSpan={12}>
13 <Stack spacing={3} direction="row" alignItems="center">
14 <Skeleton sx={{ borderRadius: 1.5, width: 48, height: 48, flexShrink: 0 }} />
15 <Skeleton sx={{ width: 1, height: 12 }} />
16 <Skeleton sx={{ width: 180, height: 12 }} />
17 <Skeleton sx={{ width: 160, height: 12 }} />
18 <Skeleton sx={{ width: 140, height: 12 }} />
19 <Skeleton sx={{ width: 120, height: 12 }} />
20 </Stack>
21 </TableCell>
22 </TableRow>
23 );
24}
Note: See TracBrowser for help on using the repository browser.