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) 295 B
import { TYPES } from "../../consts"; const resolveTextColor = ({ type, theme, selected }) => { if (selected) return theme.orbit.paletteWhite; if (type === TYPES.LEGROOM) return theme.orbit.paletteBlueDark; return theme.orbit.paletteProductDark; }; export default resolveTextColor;