@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
15 lines (11 loc) • 345 B
JavaScript
'use client';
;
var px = require('../units-converters/px.cjs');
function getBreakpointValue(breakpoint, breakpoints) {
if (breakpoint in breakpoints) {
return px.px(breakpoints[breakpoint]);
}
return px.px(breakpoint);
}
exports.getBreakpointValue = getBreakpointValue;
//# sourceMappingURL=get-breakpoint-value.cjs.map