@workday/canvas-kit-react
Version:
The parent module that contains all Workday Canvas Kit React components
11 lines (10 loc) • 375 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.isWithinBreakpoint = void 0;
/**
* This function determines whether or not a container's width is within two values.
*/
const isWithinBreakpoint = (width, min, max) => {
return width >= min && (!max || (max && width <= max - 0.5));
};
exports.isWithinBreakpoint = isWithinBreakpoint;
;