UNPKG

@material-ui/core

Version:

Quickly build beautiful React apps. Material-UI 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) 407 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(['Material-UI: createStyles from @material-ui/core/styles is deprecated.', 'Please use @material-ui/styles/createStyles'].join('\n')); warnedOnce = true; } return styles; }