@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) • 404 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.TYPES = exports.STATES = exports.SIZES = void 0;
const SIZES = {
SMALL: "small",
NORMAL: "normal"
};
exports.SIZES = SIZES;
const STATES = {
DEFAULT: "default",
HOVER: "hover",
ACTIVE: "active"
};
exports.STATES = STATES;
const TYPES = {
COLORED: "colored",
NEUTRAL: "neutral"
};
exports.TYPES = TYPES;