@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.
13 lines (10 loc) • 414 B
Flow
// @flow
import type { Direction, Props, Spacing, SmallMobile } from "..";
import type { Devices } from "../../utils/mediaQuery/consts";
import type { ThemeProps } from "../../defaultTheme";
export type GetProperty = (
property: "spacing" | "direction",
{| index: number, devices: Devices[] |},
{| ...Props, ...SmallMobile, ...ThemeProps |},
) => ?Direction | ?Spacing;
declare export default GetProperty;