@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.
18 lines (17 loc) • 501 B
JavaScript
;
exports.__esModule = true;
exports.JUSTIFY = exports.ALIGNS = void 0;
let ALIGNS = exports.ALIGNS = /*#__PURE__*/function (ALIGNS) {
ALIGNS["START"] = "start";
ALIGNS["END"] = "end";
ALIGNS["CENTER"] = "center";
return ALIGNS;
}({});
let JUSTIFY = exports.JUSTIFY = /*#__PURE__*/function (JUSTIFY) {
JUSTIFY["START"] = "start";
JUSTIFY["END"] = "end";
JUSTIFY["CENTER"] = "center";
JUSTIFY["BETWEEN"] = "between";
JUSTIFY["AROUND"] = "around";
return JUSTIFY;
}({});