Breadcrumb

Simple navigation trail with the shared Density chevron separator.

import { Breadcrumb } from "density-base-ui";

export default function BreadcrumbExample() {
  return (
    <Breadcrumb
      items={[
        { href: "/", label: "Home" },
        { href: "/components", label: "Components" },
        { label: "Breadcrumb" },
      ]}
    />
  );
}