@clubmed/trident-ui
Version:
Shared ClubMed React UI components
11 lines (10 loc) • 375 B
TypeScript
import { ComponentPropsWithoutRef, FunctionComponent } from 'react';
import { Theme } from './types/Theme';
export interface BreadcrumbProps extends ComponentPropsWithoutRef<'nav'> {
items: ({
href: string;
label: string;
} & ComponentPropsWithoutRef<'li'>)[];
theme?: Theme;
}
export declare const Breadcrumb: FunctionComponent<BreadcrumbProps>;