@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.
22 lines (21 loc) • 463 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.SIZE_OPTIONS = exports.TYPE_OPTIONS = void 0;
const TYPE_OPTIONS = {
PRIMARY: "primary",
SECONDARY: "secondary",
SUCCESS: "success",
INFO: "info",
WARNING: "warning",
CRITICAL: "critical",
WHITE: "white"
};
exports.TYPE_OPTIONS = TYPE_OPTIONS;
const SIZE_OPTIONS = {
SMALL: "small",
NORMAL: "normal",
LARGE: "large"
};
exports.SIZE_OPTIONS = SIZE_OPTIONS;