@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.
9 lines • 379 B
JavaScript
import extendTheme from "./createThemeWithVars.js";
let warnedOnce = false;
export default function deprecatedExtendTheme(...args) {
if (!warnedOnce) {
console.warn(['MUI: The `experimental_extendTheme` has been stabilized.', '', "You should use `import { extendTheme } from '@mui/material/styles'`"].join('\n'));
warnedOnce = true;
}
return extendTheme(...args);
}