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) 240 B
import { css } from "styled-components"; import { isDefined } from "../../layout"; const getDisplay = (inline, force) => css(["display:", ";"], (isDefined(inline) || force) && (inline ? "inline-grid" : "grid")); export default getDisplay;