@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.
23 lines (19 loc) • 380 B
Flow
// @flow
/*
DOCUMENTATION: https://orbit.kiwi/components/skiplink
*/
type Actions = {|
+name: string,
+href?: string,
+onClick?: () => {},
|};
export type MappedOptions = {|
+value: string | number,
+label?: string,
+disabled?: boolean,
|};
export type Props = {|
links: Actions[],
description?: string,
|};
declare export default React$ComponentType<Props>;