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.

8 lines (6 loc) 356 B
import { css } from "styled-components"; import { isDefined } from "../../layout"; var getDisplay = function getDisplay(inline, force) { return css(["display:", ";display:", ";"], (isDefined(inline) || force) && (inline ? "inline-grid" : "grid"), (isDefined(inline) || force) && (inline ? "-ms-inline-grid" : "-ms-grid")); }; export default getDisplay;