Skip to content
Navigation

Breadcrumbs

Navigation breadcrumb trail showing the current page location within a hierarchy.

AtlBreadcrumbs + AtlBreadcrumbItem
WCAG AA0 deps

Demo

Live PreviewReact
html
<atl-breadcrumbs>
  <atl-breadcrumb-item href="/">Home</atl-breadcrumb-item>
  <atl-breadcrumb-item href="/components">Components</atl-breadcrumb-item>
  <atl-breadcrumb-item>Breadcrumbs</atl-breadcrumb-item>
</atl-breadcrumbs>

API (Angular)

PropTypeDefaultDescription
separatorstring'/'Separator character between items

Composition parts

Breadcrumbs is composed from the parts below. Each part is its own component — drop the ones you don't need.

AtlBreadcrumbItem

One crumb. Omit href (or set current) on the final item; it renders as text and carries aria-current="page".

PropTypeDefaultDescription
hrefstringLink destination. Omit for the current page.
currentbooleanfalseMarks the item as the current page. Auto-detected when href is missing.

Import

ts
import { AtlBreadcrumbs, AtlBreadcrumbItem } from '@atelier-ui/angular';