import { forwardRef } from "react"; /** * Breadcrumb * * items: { label: string, href?: string }[] - items with href render as ; * the last item always renders as plain text regardless of href * aria-label: string - accessible label for the nav (default: "Breadcrumbs") */ const Breadcrumb = forwardRef(function Breadcrumb( { items = [], "aria-label": ariaLabel = "Breadcrumbs", className = "", ...props }, ref ) { return ( ); }); export default Breadcrumb;