mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-14 08:15:08 +00:00
23 lines
417 B
TypeScript
23 lines
417 B
TypeScript
![]() |
// ** 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
|