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.

15 lines (11 loc) 436 B
// @flow import type { Interpolation } from "styled-components"; import type { Devices } from "../../mediaQuery/consts"; import type { Props, SmallMobile, BasicProps } from "../index"; export type GetViewportIEGridStyles = ( mediaQuery: BasicProps, childrenCount: number, {| index: number, devices: Devices[] |}, {| ...Props, ...SmallMobile |}, ) => Interpolation[] | boolean; declare export default GetViewportIEGridStyles;