UNPKG

730 BTypeScriptView Raw
1import * as React from 'react';
2export interface BreadcrumbHeadingProps extends React.HTMLProps<HTMLLIElement> {
3 /** Content rendered inside the breadcrumb title. */
4 children?: React.ReactNode;
5 /** Additional classes added to the breadcrumb item. */
6 className?: string;
7 /** HREF for breadcrumb link. */
8 to?: string;
9 /** Target for breadcrumb link. */
10 target?: string;
11 /** Sets the base component to render. Defaults to <a> */
12 component?: React.ReactNode;
13 /** Internal prop set by Breadcrumb on all but the first crumb */
14 showDivider?: boolean;
15}
16export declare const BreadcrumbHeading: React.FunctionComponent<BreadcrumbHeadingProps>;
17//# sourceMappingURL=BreadcrumbHeading.d.ts.map
\No newline at end of file