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.

13 lines (12 loc) 351 B
import { QUERIES } from "../../utils/mediaQuery/consts"; export declare enum TEXT_ALIGN { START = "start", CENTER = "center", END = "end", JUSTIFY = "justify", LEFT = "left", RIGHT = "right" } export declare const textAlignClasses: { [K in QUERIES | TEXT_ALIGN]: K extends QUERIES ? Record<TEXT_ALIGN, string> : string; };