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