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.

29 lines (28 loc) 948 B
import { QUERIES } from "../../utils/mediaQuery/consts"; export declare enum SIZES { NONE = "none", XXXSMALL = "XXXSmall", XXSMALL = "XXSmall", XSMALL = "XSmall", SMALL = "small", MEDIUM = "medium", LARGE = "large", XLARGE = "XLarge", XXLARGE = "XXLarge", XXXLARGE = "XXXLarge" } export declare const paddingClasses: { [K in QUERIES | SIZES]: K extends QUERIES ? Record<SIZES, string> : string; }; export declare const paddingTopClasses: { [K in QUERIES | SIZES]: K extends QUERIES ? Record<SIZES, string> : string; }; export declare const paddingRightClasses: { [K in QUERIES | SIZES]: K extends QUERIES ? Record<SIZES, string> : string; }; export declare const paddingBottomClasses: { [K in QUERIES | SIZES]: K extends QUERIES ? Record<SIZES, string> : string; }; export declare const paddingLeftClasses: { [K in QUERIES | SIZES]: K extends QUERIES ? Record<SIZES, string> : string; };