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.

6 lines 307 B
import { backgroundColorClasses } from "../../common/tailwind/backgroundColor"; const getBackgroundClass = (background, viewport) => { if (!background) return null; return viewport ? backgroundColorClasses[viewport][background] : backgroundColorClasses[background]; }; export default getBackgroundClass;