Basic Breadcrumb
import { Breadcrumb } from "@/components/breadcrumb";
const items = [
{ label: "Home", href: "/" },
{ label: "Products", href: "/products" },
{ label: "Category", current: true }
];
<Breadcrumb items={items} />Breadcrumb with Icons
import { Home, Settings } from "lucide-react";
const items = [
{ label: "Home", href: "/", icon: <Home className="h-3 w-3" /> },
{ label: "Settings", href: "/settings", icon: <Settings className="h-3 w-3" /> },
{ label: "Profile", current: true }
];
<Breadcrumb items={items} />