UNPKG

@kadconsulting/dry

Version:
16 lines 536 B
/** * Provide a set of JS default breakpoints if one not provided by a ThemeProvider * * Though not recommended, applications can opt out of the ThemeProvider, in which case * the LayoutProvider won't have access to breakpoint values. * * Uses Material UI's breakpoints sm, md, and lg breakpoints: https://mui.com/material-ui/customization/breakpoints/ */ export const DEFAULT_BREAKPOINTS = { desktopMin: 900, tabletMax: 899, tabletMin: 600, mobileMax: 599, mobileMin: 0, }; //# sourceMappingURL=config.js.map