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.

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