UNPKG

@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.

13 lines (11 loc) 227 B
import { SIZE_OPTIONS } from "../consts"; const tooltipSize = ({ size }) => { const sizes = { [SIZE_OPTIONS.SMALL]: "240px", [SIZE_OPTIONS.MEDIUM]: "380px" }; return sizes[size]; }; export default tooltipSize;