@blueprintjs/core
Version:
Core styles & components
10 lines (9 loc) • 417 B
TypeScript
import * as React from "react";
import { ActionProps, LinkProps } from "../../common/props";
export declare type BreadcrumbProps = IBreadcrumbProps;
/** @deprecated use BreadcrumbProps */
export interface IBreadcrumbProps extends ActionProps, LinkProps {
/** Whether this breadcrumb is the current breadcrumb. */
current?: boolean;
}
export declare const Breadcrumb: React.FunctionComponent<BreadcrumbProps>;