@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.
30 lines • 572 B
JavaScript
export const DIRECTIONS = {
ROW: "row",
COLUMN: "column",
ROWREVERSE: "row-reverse",
COLUMNREVERSE: "column-reverse"
};
export const ALIGNS = {
START: "start",
END: "end",
CENTER: "center",
STRETCH: "stretch"
};
export const JUSTIFY = {
START: "start",
END: "end",
CENTER: "center",
BETWEEN: "between",
AROUND: "around"
};
export const SPACINGS = {
NONE: "none",
EXTRATIGHT: "extraTight",
TIGHT: "tight",
CONDENSED: "condensed",
COMPACT: "compact",
NATURAL: "natural",
COMFY: "comfy",
LOOSE: "loose",
EXTRALOOSE: "extraLoose"
};