@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.
14 lines (13 loc) • 452 B
TypeScript
import { QUERIES } from "../../utils/mediaQuery/consts";
export declare enum JUSTIFY {
START = "start",
CENTER = "center",
END = "end",
BETWEEN = "between",
AROUND = "around"
}
export declare const justifyClasses: {
[K in QUERIES | JUSTIFY]: K extends QUERIES ? Record<JUSTIFY, string> : string;
};
export declare const getJustifyClasses: (justify: `${JUSTIFY}`, viewport?: QUERIES) => string;
export default getJustifyClasses;