UNPKG

@redocly/theme

Version:

Shared UI components lib

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