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.

17 lines (13 loc) 446 B
// @flow /* DOCUMENTATION: https://orbit.kiwi/components/breadcrumbs/ */ import type { Globals } from "../common/common.js.flow"; import typeof BreadcrumbsItemType from "./BreadcrumbsItem"; export type Props = {| ...Globals, children: React$Node, onGoBack?: (ev?: SyntheticEvent<HTMLButtonElement>) => void | Promise<any>, |}; declare export default React$ComponentType<Props>; declare export var BreadcrumbsItem: BreadcrumbsItemType;