@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.
22 lines (19 loc) • 501 B
Flow
// @flow
/*
DOCUMENTATION: https://orbit.kiwi/components/navigationlist/
*/
import type { Component, Globals } from "../../common/common.js.flow";
export type Props = {|
+ariaLabel?: string,
+icon?: React$Element<any>,
+children?: React$Node,
+selectable?: boolean,
+selected?: boolean,
+href?: string,
+external?: boolean,
+onClick?: () => void | Promise<any>,
+asComponent?: Component,
+tabIndex?: string,
...Globals,
|};
declare export default React$ComponentType<Props>;