@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.
24 lines (20 loc) • 507 B
Flow
// @flow
import * as React from "react";
import type { Popper, Sizes } from "..";
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,
onClose: () => void,
onCloseMobile: () => void,
onEnter: () => void,
referenceElement: HTMLElement | null,
...Globals,
...Popper,
|};
declare export default React.ComponentType<Props>;