UNPKG

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