UNPKG

599 BTypeScriptView Raw
1import * as React from "react";
2import { ActionProps, LinkProps } from "../../common/props";
3export declare type BreadcrumbProps = IBreadcrumbProps;
4/** @deprecated use BreadcrumbProps */
5export interface IBreadcrumbProps extends ActionProps, LinkProps {
6 children?: React.ReactNode;
7 /** Whether this breadcrumb is the current breadcrumb. */
8 current?: boolean;
9 /**
10 * Pass through value to icon's title attribute. Should be used for breadcrumbs without
11 * text or children defined.
12 */
13 iconTitle?: string;
14}
15export declare const Breadcrumb: React.FC<BreadcrumbProps>;