File size: 414 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import type { Components } from '@mui/material/styles';
import type { Theme } from '../types';
export const MuiTab = {
styleOverrides: {
root: {
fontSize: '14px',
fontWeight: 500,
lineHeight: 1.71,
minWidth: 'auto',
paddingLeft: 0,
paddingRight: 0,
textTransform: 'none',
'& + &': { marginLeft: '24px' },
},
},
} satisfies Components<Theme>['MuiTab'];
|