UNPKG

515 BTypeScriptView Raw
1import React from 'react';
2import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
3export interface BreadcrumbItemProps extends BsPrefixPropsWithChildren {
4 active?: boolean;
5 href?: string;
6 linkAs?: React.ElementType;
7 target?: string;
8 title?: React.ReactNode;
9 linkProps?: Record<string, any>;
10}
11declare type BreadcrumbItem = BsPrefixRefForwardingComponent<'li', BreadcrumbItemProps>;
12declare const BreadcrumbItem: BreadcrumbItem;
13export default BreadcrumbItem;