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 287 B
import { ALIGNS } from "../consts"; export var isAlignCenter = function isAlignCenter(a) { return a === ALIGNS.CENTER; }; export var isAlignStart = function isAlignStart(a) { return a === ALIGNS.START; }; export var isAlignEnd = function isAlignEnd(a) { return a === ALIGNS.END; };