UNPKG

559 BTypeScriptView Raw
1import * as React from 'react';
2import { OUIAProps } from '../../helpers';
3export interface BreadcrumbProps extends React.HTMLProps<HTMLElement>, OUIAProps {
4 /** Children nodes be rendered to the BreadCrumb. Should be of type BreadCrumbItem. */
5 children?: React.ReactNode;
6 /** Additional classes added to the breadcrumb nav. */
7 className?: string;
8 /** Aria label added to the breadcrumb nav. */
9 'aria-label'?: string;
10}
11export declare const Breadcrumb: React.FunctionComponent<BreadcrumbProps>;
12//# sourceMappingURL=Breadcrumb.d.ts.map
\No newline at end of file