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.

20 lines (15 loc) 609 B
// Type definitions for @kiwicom/orbit-components // Project: http://github.com/kiwicom/orbit import * as React from "react"; import * as Common from "../../common/common"; export interface Props extends Common.Global { readonly active?: boolean; readonly component?: Common.Component; readonly children: React.ReactNode; readonly href?: string; readonly id?: string; readonly contentKey?: number; readonly onClick?: Common.Event<React.SyntheticEvent<HTMLLinkElement>>; } declare const BreadcrumbsItem: React.FunctionComponent<Props>; export { BreadcrumbsItem, BreadcrumbsItem as default };