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.

6 lines (4 loc) 344 B
import { css } from "styled-components"; import isDefined from "../../../Stack/helpers/isDefined"; const getDisplay = (inline, force) => css(["display:", ";display:", ";"], (isDefined(inline) || force) && (inline ? "inline-grid" : "grid"), (isDefined(inline) || force) && (inline ? "-ms-inline-grid" : "-ms-grid")); export default getDisplay;