@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.
21 lines (17 loc) • 372 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _consts = require("../consts");
const tooltipSize = ({
size
}) => {
const sizes = {
[_consts.SIZE_OPTIONS.SMALL]: "240px",
[_consts.SIZE_OPTIONS.MEDIUM]: "380px"
};
return sizes[size];
};
var _default = tooltipSize;
exports.default = _default;