UNPKG

618 BTypeScriptView Raw
1import * as React from "react";
2import { ActionProps, LinkProps } from "../../common";
3export interface BreadcrumbProps extends ActionProps<HTMLAnchorElement>, LinkProps {
4 children?: React.ReactNode;
5 /** Whether this breadcrumb is the current breadcrumb. */
6 current?: boolean;
7 /**
8 * Pass through value to icon's title attribute. Should be used for breadcrumbs without
9 * text or children defined.
10 */
11 iconTitle?: string;
12}
13/**
14 * Breadcrumb component.
15 *
16 * @see https://blueprintjs.com/docs/#core/components/breadcrumbs
17 */
18export declare const Breadcrumb: React.FC<BreadcrumbProps>;