UNPKG

@redocly/theme

Version:

Shared UI components lib

11 lines (10 loc) 287 B
import type { JSX } from 'react'; type BreadcrumbProps = { label: string; link?: string; isActive: boolean; onClick?: () => void; icon?: string; }; export declare function Breadcrumb({ label, link, isActive, onClick, icon }: BreadcrumbProps): JSX.Element; export {};