@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.
7 lines • 416 B
JavaScript
import { POSITIONS } from "../consts";
export const isPositionLeft = p => p === POSITIONS.LEFT;
export const isPositionRight = p => p === POSITIONS.RIGHT;
export const isPositionBottom = p => p === POSITIONS.BOTTOM;
export const isPositionTop = p => p === POSITIONS.TOP;
export const isVertical = p => isPositionTop(p) || isPositionBottom(p);
export const isHorizontal = p => isPositionLeft(p) || isPositionRight(p);