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.

12 lines (10 loc) 293 B
import { TYPES } from "../../consts"; const resolveHoverColor = ({ theme, type }) => { if (type === TYPES.UNAVAILABLE) return ""; if (type === TYPES.LEGROOM) return theme.orbit.paletteBlueLightHover; return theme.orbit.paletteProductLightHover; }; export default resolveHoverColor;