UNPKG

@mui/material

Version:

Quickly build beautiful React apps. MUI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.

16 lines (13 loc) 387 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = createStyles; let warnedOnce = false; // To remove in v6 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; }