UNPKG

@nodeject/ui-components

Version:

UI library for non-trivial components

10 lines (9 loc) 266 B
import * as React from 'react'; export interface BreadcrumbProps { className?: string; label: React.ReactNode; Link?: any; url?: string; onLinkClick?: (path: string) => void; } export declare const Breadcrumb: React.FC<BreadcrumbProps>;