UNPKG

520 BTypeScriptView Raw
1import React from 'react';
2import BreadcrumbItem from './BreadcrumbItem';
3import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
4export interface BreadcrumbProps extends BsPrefixPropsWithChildren {
5 className?: string;
6 label?: string;
7 listProps?: React.OlHTMLAttributes<HTMLOListElement>;
8}
9declare type Breadcrumb = BsPrefixRefForwardingComponent<'nav', BreadcrumbProps> & {
10 Item: typeof BreadcrumbItem;
11};
12declare const Breadcrumb: Breadcrumb;
13export default Breadcrumb;