@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) • 306 B
Flow
// @flow
import type { Globals } from "../common/common.js.flow";
export type Props = {|
+onMenuOpen?: () => void | Promise<any>,
+onShow?: () => void | Promise<any>,
+onHide?: () => void | Promise<any>,
+children: React$Node,
...Globals,
|};
declare export default React$ComponentType<Props>;