UNPKG

@workday/canvas-kit-react

Version:

The parent module that contains all Workday Canvas Kit React components

7 lines (6 loc) 219 B
/** * This function determines whether or not a container's width is within two values. */ export const isWithinBreakpoint = (width, min, max) => { return width >= min && (!max || (max && width <= max - 0.5)); };