@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.
15 lines • 457 B
JavaScript
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
import _extends from "@babel/runtime/helpers/esm/extends";
export default function createMixins(breakpoints, mixins) {
return _extends({
toolbar: _defineProperty(_defineProperty({
minHeight: 56
}, breakpoints.up('xs'), {
'@media (orientation: landscape)': {
minHeight: 48
}
}), breakpoints.up('sm'), {
minHeight: 64
})
}, mixins);
}