You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
500 B
13 lines
500 B
import * as React from 'react';
|
|
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
|
export interface BreadcrumbItemProps extends BsPrefixProps, Omit<React.HTMLAttributes<HTMLElement>, 'title'> {
|
|
active?: boolean;
|
|
href?: string;
|
|
linkAs?: React.ElementType;
|
|
target?: string;
|
|
title?: React.ReactNode;
|
|
linkProps?: Record<string, any>;
|
|
}
|
|
declare const BreadcrumbItem: BsPrefixRefForwardingComponent<'li', BreadcrumbItemProps>;
|
|
export default BreadcrumbItem;
|