UNPKG

@mui/material

Version:

Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.

10 lines (9 loc) 289 B
let warnedOnce = false; // To remove in v6 export default function createStyles(styles) { if (!warnedOnce) { console.warn(['MUI: createStyles from @mui/material/styles is deprecated.', 'Please use @mui/styles/createStyles'].join('\n')); warnedOnce = true; } return styles; }