# BreadcrumbItem (w-breadcrumb-item)

## Description

Represents one item in a `w-breadcrumbs` trail.
Renders the slotted label as a link when `href` is set, or as text when it is not, and adds a separator after non-current items.

[Warp component reference](https://warp-ds.github.io/docs/components/breadcrumbs/frameworks/elements)

### `<w-breadcrumb-item>` API

#### Properties

| Name | Type | Default | Summary |
|-|-|-|-|
| current-page | `boolean` | `false` | Marks this item as the current page. |
| href | `string \| null` | `null` | URL for linked breadcrumb items. |

#### Property Details

##### current-page

Marks this item as the current page.
Use this on the final breadcrumb item so it exposes `aria-current="page"` and does not render a trailing separator.

- Type: `boolean`
- Default: `false`

##### href

URL for linked breadcrumb items.
When omitted, the item renders as non-focusable text.

- Type: `string | null`
- Default: `null`

