UNPKG

react-garden

Version:

React + TypeScript + ThreeJS app using Material UI on NextJS, Apollo Client, GraphQL + WordPress REST APIs, for ThreeD web development.. a part of the threed.ai code family.

15 lines (13 loc) 339 B
const Snackbar = (theme, skin) => { return { MuiSnackbarContent: { styleOverrides: { root: { ...(skin === 'bordered' && { boxShadow: 'none' }), backgroundColor: theme.palette.mode === 'light' ? theme.palette.grey[900] : theme.palette.grey[100] } } } } } export default Snackbar