@totalsoft/rocket-ui
Version:
A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.
40 lines • 1.32 kB
JavaScript
// Copyright (c) TotalSoft.
// This source code is licensed under the MIT license.
export default function Chip(theme) {
return {
MuiChip: {
styleOverrides: {
root: {
margin: theme.spacing(0.5, 0.25)
},
deleteIcon: {
variants: [
{
props: { variant: 'filled' },
style: {
color: 'white'
}
},
{
props: { variant: 'filled', color: 'default' },
style: {
color: theme.palette.grey[700],
':hover': { color: theme.palette.grey[900] }
}
}
]
}
},
variants: [
{
props: { variant: 'filled', color: 'default' },
style: {
color: theme.palette.grey[900],
backgroundColor: theme.palette.grey[300]
}
}
]
}
};
}
//# sourceMappingURL=Chip.js.map