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.

9 lines (8 loc) 316 B
import type { Props } from "../types"; import type { Devices } from "../../utils/mediaQuery/types"; type GetProperty = (property: "spacing" | "direction", { index, devices }: { index: number; devices: Devices[]; }, props: Props) => string; declare const getProperty: GetProperty; export default getProperty;