mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-26 07:13:35 +01:00
14 lines
520 B
TypeScript
14 lines
520 B
TypeScript
import React from 'react';
|
|
import BreadcrumbItem from './BreadcrumbItem';
|
|
import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
|
|
export interface BreadcrumbProps extends BsPrefixPropsWithChildren {
|
|
className?: string;
|
|
label?: string;
|
|
listProps?: React.OlHTMLAttributes<HTMLOListElement>;
|
|
}
|
|
declare type Breadcrumb = BsPrefixRefForwardingComponent<'nav', BreadcrumbProps> & {
|
|
Item: typeof BreadcrumbItem;
|
|
};
|
|
declare const Breadcrumb: Breadcrumb;
|
|
export default Breadcrumb;
|