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.

19 lines (15 loc) 433 B
/* eslint-disable flowtype/require-exact-type */ // @flow import * as React from "react"; import type { Size, IconForeground, IconProps } from ".."; import type { ThemeProps } from "../../../defaultTheme"; export type GetIconContainer = ({ iconLeft?: React.Node, children?: React.Node, size?: Size, iconForeground: IconForeground, ...ThemeProps, }) => {| icons: IconProps, |}; declare export default GetIconContainer;