import { Link } from "@tanstack/react-router"; // ---------------------- // Type Definitions // ---------------------- type BreadcrumbProps = { text: string; href: string; }; // ---------------------- // Main Component // ---------------------- const HeaderBreadcrumb = ({ text, href }: BreadcrumbProps) => { return ( // ========================================================= // BREADCRUMB LINK // - Displays a single breadcrumb segment // - Includes a right border except on the last item // ========================================================= {text} ); }; // ---------------------- // Export Component // ---------------------- export default HeaderBreadcrumb;