Components
Overview
AlertApp SidebarAssistant PanelAvatarBadgeBreadcrumbButtonButton GroupCalendarCheckboxChipComboboxData TableDate PickerDividerDropdown MenuFABField / Field SetFormIcon ButtonIconsInputInput GroupItem / Item SetKeyboardLink ButtonLogoNavbarNotificationPage HeadingPopoverRadioScanner FieldSection HeadingSelectSheetSidebarText AreaTime PickerToggle ButtonTokensToolbarTooltip

Breadcrumb

Horizontally-arranged crumbs separated by caret-right. Last crumb is the current page.

View in Figma
  1. Dashboard
  2. Requests
<Breadcrumb
  items={[
    { label: "Dashboard", href: "#" },
    { label: "Requests", current: true },
  ]}
/>
  1. Dashboard
  2. Requests
  3. Request #4287
<Breadcrumb
  items={[
    { label: "Dashboard", href: "#" },
    { label: "Requests", href: "#" },
    { label: "Request #4287", current: true },
  ]}
/>
  1. Dashboard
<Breadcrumb
  items={[{ label: "Dashboard", current: true }]}
/>
  1. Dashboard
  2. Buildings
  3. Main building
  4. Conference Room A
<Breadcrumb
  items={[
    { label: "Dashboard", href: "#" },
    { label: "Buildings", href: "#" },
    { label: "Main building", href: "#" },
    { label: "Conference Room A", current: true },
  ]}
/>
Props
items:BreadcrumbCrumb[]
Array of { label, href?, current? }. Last item defaults to current.
Tokens
Engineer workflow → docs/kits.md