31 lines
596 B
TypeScript
Raw Normal View History

2024-02-18 01:44:48 -05:00
// ** MUI Imports
import { Theme } from '@mui/material/styles'
const Tabs = (theme: Theme) => {
return {
MuiTabs: {
styleOverrides: {
vertical: {
minWidth: 130,
marginRight: theme.spacing(4),
borderRight: `1px solid ${theme.palette.divider}`,
'& .MuiTab-root': {
minWidth: 130
}
}
}
},
MuiTab: {
styleOverrides: {
textColorSecondary: {
'&.Mui-selected': {
color: theme.palette.text.secondary
}
}
}
}
}
}
export default Tabs