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) 290 B
import { css } from "styled-components"; import POSITIONS from "../consts"; import { left, right } from "../../utils/rtl"; const getPosition = ({ position, theme }) => css(["", ":0;"], position === POSITIONS.RIGHT ? right({ theme }) : left({ theme })); export default getPosition;