2024-02-18 01:44:48 -05:00

17 lines
264 B
TypeScript

// ** MUI Imports
import { Theme } from '@mui/material/styles'
const Rating = (theme: Theme) => {
return {
MuiRating: {
styleOverrides: {
root: {
color: theme.palette.warning.main
}
}
}
}
}
export default Rating