@fchh/fcos-suite-ui
Version:
Reusable UI components based on React and TailwindCSS for the Fab City OS Suite (initially funded by the Interfacer EU project).
11 lines (10 loc) • 335 B
TypeScript
export interface BreadcrumbsProps {
crumbs?: Array<{
href?: string;
title?: string;
icon?: React.ReactElement;
}>;
separator?: string;
className?: string;
}
export declare function Breadcrumbs({ crumbs, separator, className, }: BreadcrumbsProps): import("react/jsx-runtime").JSX.Element | null;