UNPKG

@wordpress/components

Version:
11 lines (10 loc) 288 B
/** * Internal dependencies */ import breakpoints from './breakpoint-values'; /** * @param {keyof breakpoints} point * @return {string} Media query declaration. */ export const breakpoint = point => `@media (min-width: ${breakpoints[point]})`; //# sourceMappingURL=breakpoint.js.map