@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.
33 lines (32 loc) • 750 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = exports.WHITE_SPACE = exports.ALIGN_V_OPTIONS = exports.ALIGN_OPTIONS = void 0;
const ALIGN_OPTIONS = {
LEFT: "left",
CENTER: "center",
RIGHT: "right"
};
exports.ALIGN_OPTIONS = ALIGN_OPTIONS;
const ALIGN_V_OPTIONS = {
BASELINE: "baseline",
SUB: "sub",
SUPER: "super",
TEXT_TOP: "text-top",
TEXT_BOTTOM: "text-bottom",
MIDDLE: "middle",
TOP: "top",
BOTTOM: "bottom"
};
exports.ALIGN_V_OPTIONS = ALIGN_V_OPTIONS;
const WHITE_SPACE = {
NORMAL: "normal",
NOWRAP: "nowrap",
PRE: "pre",
PRE_LINE: "pre-line",
PRE_WRAP: "pre-wrap"
};
exports.WHITE_SPACE = WHITE_SPACE;
var _default = ALIGN_OPTIONS;
exports.default = _default;