20 lines
390 B
TypeScript
Executable File
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
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|