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.

13 lines (10 loc) 341 B
// @flow import type { Globals } from "../common/common.js.flow"; import ButtonLink from "../ButtonLink"; import Button from "../Button"; export type Props = {| +children: Array<React$Element<typeof Button> | React$Element<typeof ButtonLink>>, +connected?: boolean, ...Globals, |}; declare export default React$ComponentType<Props>;