@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.
20 lines (16 loc) • 476 B
Flow
// @flow
import * as React from "react";
import type { Globals } from "../../common/common.js.flow";
export type Props = {|
+id?: string,
+children: React.Node,
+shown?: boolean,
+helpClosable: boolean,
+isHelp?: boolean,
+referenceElement?: {| current: HTMLElement | null |},
+inputSize?: "small" | "normal",
+inlineLabel?: boolean,
+onShown: ((boolean => boolean) | boolean) => void,
...Globals,
|};
declare export default React.ComponentType<Props>;