UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.

11 lines (10 loc) 346 B
import { QUERIES } from "../../utils/mediaQuery/consts"; declare enum WRAP { WRAP = "wrap", NO_WRAP = "nowrap" } export declare const wrapClasses: { [K in QUERIES | WRAP]: K extends QUERIES ? Record<WRAP, string> : string; }; declare const getWrapClasses: (wrap: boolean, viewport?: QUERIES) => string; export default getWrapClasses;