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