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.

10 lines 277 B
import { TYPES } from "../../consts"; const resolveFocusColor = ({ type, theme, selected }) => { if (!selected) return ""; return type === TYPES.LEGROOM ? theme.orbit.paletteBlueNormalHover : theme.orbit.paletteProductNormalHover; }; export default resolveFocusColor;