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) 277 B
import { ALIGNS } from "../consts"; const getAlign = align => { const tokens = { [ALIGNS.START]: "flex-start", [ALIGNS.END]: "flex-end", [ALIGNS.CENTER]: "center", [ALIGNS.STRETCH]: "stretch" }; return align && tokens[align]; }; export default getAlign;