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

17 lines
343 B
TypeScript

// ** MUI Imports
import { Theme } from '@mui/material/styles'
const Snackbar = (theme: Theme) => {
return {
MuiSnackbarContent: {
styleOverrides: {
root: {
backgroundColor: theme.palette.mode === 'light' ? theme.palette.grey[900] : theme.palette.grey[100]
}
}
}
}
}
export default Snackbar