Breadcrumb
Minimal breadcrumb navigation.
Preview
Installation
bash
npx auralix-ui add breadcrumbUsage
Basic Breadcrumb
tsx
import { Breadcrumb } from "@/components/ui/Breadcrumb";
<Breadcrumb items={[
{ label: "Home", href: "/" },
{ label: "Products", href: "/products" },
{ label: "Details" },
]} />Props
| Name | Type | Default | Description |
|---|---|---|---|
items | BreadcrumbItem[] | [] | Array of {label, href?}. |
separator | "chevron" | "slash" | "dot" | "chevron" | Separator style. |
On this page