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.

25 lines (21 loc) 578 B
// @flow import * as React from "react"; import type { Popper, Sizes } from "../index.js.flow"; import type { Globals } from "../../../common/common.js.flow"; export type Props = {| shown: boolean, size: Sizes, tooltipId: ?string, children: React.Node, parent: ?React.Node, error?: boolean, help?: boolean, onClick: (ev: SyntheticEvent<HTMLDivElement>) => void, onClose: () => void, onCloseMobile: () => void, onEnter: () => void, referenceElement: HTMLElement | null, ...Globals, ...Popper, |}; declare export default React.ComponentType<Props>;