Files
aso/frontend/client-portal/src/theme/overrides/Skeleton.ts
Linksehat Staging Server ce024c2bcd merge
2023-05-08 08:50:15 +07:00

20 lines
390 B
TypeScript
Executable File

import { Theme } from '@mui/material/styles';
// ----------------------------------------------------------------------
export default function Skeleton(theme: Theme) {
return {
MuiSkeleton: {
defaultProps: {
animation: 'wave'
},
styleOverrides: {
root: {
backgroundColor: theme.palette.background.neutral
}
}
}
};
}