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.

10 lines (9 loc) 593 B
import type { Justify, Property, Align, Direction } from "./types"; export declare const isDefined: (prop: Property) => boolean; export declare const formatCSS: (key: string, value: string) => string; export declare const getAlign: (align: Align) => string; export declare const getJustify: (justify: Justify) => string; export declare const getDirection: (direction?: Direction) => string; export declare const getGrow: (grow: string | boolean) => string; export declare const getShrink: (shrink: string | boolean) => string; export declare const getWrap: (wrap: string | boolean) => string;