23 lines
526 B
TypeScript
23 lines
526 B
TypeScript
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|