@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.
39 lines (38 loc) • 799 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ALIGN = exports.TOKENS = exports.TYPE_OPTIONS = exports.ELEMENT_OPTIONS = void 0;
const ELEMENT_OPTIONS = {
H1: "h1",
H2: "h2",
H3: "h3",
H4: "h4",
H5: "h5",
H6: "h6",
DIV: "div"
};
exports.ELEMENT_OPTIONS = ELEMENT_OPTIONS;
const TYPE_OPTIONS = {
DISPLAY: "display",
DISPLAYSUBTITLE: "displaySubtitle",
TITLE1: "title1",
TITLE2: "title2",
TITLE3: "title3",
TITLE4: "title4",
TITLE5: "title5"
};
exports.TYPE_OPTIONS = TYPE_OPTIONS;
const TOKENS = {
weightHeading: "weightHeading",
sizeHeading: "sizeHeading",
lineHeight: "lineHeight"
};
exports.TOKENS = TOKENS;
const ALIGN = {
START: "start",
CENTER: "center",
END: "end",
JUSTIFY: "justify"
};
exports.ALIGN = ALIGN;