BreadCrumbs
Hierarchical navigation paths with linked text segments and chevron separators.
Import
Basic Usage
Props
BreadCrumbs
| Prop | Type | Default | Description |
|---|---|---|---|
| items | BreadCrumbItem[] | - | Array of breadcrumb items to display (required) |
| separator | React.ReactNode | '>' | Separator element between breadcrumb items |
| className | string | - | Additional CSS class names |
BreadCrumbItem
| Prop | Type | Default | Description |
|---|---|---|---|
| label | string | - | Display label for the breadcrumb (required) |
| href | string | - | URL to navigate to when clicked |
| onClick | () => void | - | Click handler for custom navigation logic |