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.

14 lines (12 loc) 336 B
import { JUSTIFY } from "../consts"; const getJustify = justify => { const tokens = { [JUSTIFY.START]: "flex-start", [JUSTIFY.END]: "flex-end", [JUSTIFY.CENTER]: "center", [JUSTIFY.BETWEEN]: "space-between", [JUSTIFY.AROUND]: "space-around" }; return justify && tokens[justify]; }; export default getJustify;