@material-ui/core
Version:
React components that implement Google's Material Design.
11 lines (9 loc) • 367 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import { withStyles as withStylesWithoutDefault } from '@material-ui/styles';
import defaultTheme from './defaultTheme';
function withStyles(stylesOrCreator, options) {
return withStylesWithoutDefault(stylesOrCreator, _extends({
defaultTheme: defaultTheme
}, options));
}
export default withStyles;