Files
aso/frontend/dashboard/src/theme/overrides/LoadingButton.ts
Linksehat Staging Server 70fc1579e7 update
2024-07-12 08:41:18 +07:00

23 lines
526 B
TypeScript
Executable File

import { Theme } from '@mui/material/styles';
// ----------------------------------------------------------------------
export default function LoadingButton(theme: Theme) {
return {
MuiLoadingButton: {
styleOverrides: {
root: {
'&.MuiButton-text': {
'& .MuiLoadingButton-startIconPendingStart': {
marginLeft: 0
},
'& .MuiLoadingButton-endIconPendingEnd': {
marginRight: 0
}
}
}
}
}
};
}