UNPKG

@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) 390 B
// @flow /* DOCUMENTATION: https://orbit.kiwi/components/skipnavigation */ type Actions = {| +name?: string, +link?: string, +onClick?: () => {}, |}; export type MappedOptions = {| +value: string | number, +label?: string, +disabled?: boolean, |}; export type Props = {| actions?: Actions[], feedbackUrl?: string, |}; declare export default React$ComponentType<Props>;