23 lines
417 B
TypeScript
Raw Normal View History

2024-02-18 01:44:48 -05:00
// ** MUI Imports
import { Theme } from '@mui/material/styles'
const Chip = (theme: Theme) => {
return {
MuiChip: {
styleOverrides: {
outlined: {
'&.MuiChip-colorDefault': {
borderColor: `rgba(${theme.palette.customColors.main}, 0.22)`
}
},
deleteIcon: {
width: 18,
height: 18
}
}
}
}
}
export default Chip