bknd
Version:
Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.
13 lines (12 loc) • 347 B
TypeScript
type Breadcrumb = {
label: string | Element;
onClick?: () => void;
href?: string;
};
export type Breadcrumbs2Props = {
path: Breadcrumb[];
backTo?: string;
onBack?: () => void;
};
export declare const Breadcrumbs2: ({ path: _path, backTo, onBack }: Breadcrumbs2Props) => import("react/jsx-runtime").JSX.Element;
export {};