@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.
23 lines • 448 B
JavaScript
export const ALIGN_OPTIONS = {
LEFT: "left",
CENTER: "center",
RIGHT: "right"
};
export const ALIGN_V_OPTIONS = {
BASELINE: "baseline",
SUB: "sub",
SUPER: "super",
TEXT_TOP: "text-top",
TEXT_BOTTOM: "text-bottom",
MIDDLE: "middle",
TOP: "top",
BOTTOM: "bottom"
};
export const WHITE_SPACE = {
NORMAL: "normal",
NOWRAP: "nowrap",
PRE: "pre",
PRE_LINE: "pre-line",
PRE_WRAP: "pre-wrap"
};
export default ALIGN_OPTIONS;