mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00: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;
|