"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = createMixins; function createMixins(breakpoints, mixins) { return { toolbar: { minHeight: 56, [breakpoints.up('xs')]: { '@media (orientation: landscape)': { minHeight: 48 } }, [breakpoints.up('sm')]: { minHeight: 64 } }, ...mixins }; }