@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.
17 lines (12 loc) • 421 B
Flow
// @flow
import type { Globals, Translation } from "../common/common.js.flow";
import type { Props as ItemProps } from "./NavigationListItem";
export type Types = "navigation" | "inline";
export type Props = {|
+children: React$Node,
+title?: Translation,
+type?: Types,
...Globals,
|};
declare export default React$ComponentType<Props>;
declare export var NavigationListItem: React$ComponentType<ItemProps>;