@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.
14 lines (13 loc) • 382 B
JavaScript
import { createBox } from '@mui/system';
import { unstable_ClassNameGenerator as ClassNameGenerator } from '../utils';
import { createTheme } from '../styles';
const defaultTheme = createTheme();
/**
* @ignore - do not document.
*/
const Box = createBox({
defaultTheme,
defaultClassName: 'MuiBox-root',
generateClassName: ClassNameGenerator.generate
});
export default Box;