@blueprintjs/core
Version:
Core styles & components
9 lines (8 loc) • 345 B
TypeScript
/// <reference types="react" />
import * as React from "react";
import { IActionProps, ILinkProps } from "../../common/props";
export interface IBreadcrumbProps extends IActionProps, ILinkProps {
/** Whether this breadcrumb is the current breadcrumb. */
current?: boolean;
}
export declare const Breadcrumb: React.SFC<IBreadcrumbProps>;