@kadconsulting/dry
Version:
KAD Reusable Component Library
16 lines • 536 B
JavaScript
/**
* 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