Documentation Index
Fetch the complete documentation index at: https://mintlify.com/zendeskgarden/website/llms.txt
Use this file to discover all available pages before exploring further.
Basic usage
CombineBreadcrumb with Anchor (for navigable crumbs) and Span (for the current non-navigable page). Each crumb is automatically separated by an arrow chevron.
The last item in a breadcrumb trail represents the current page and should not be a link. Use
Span or plain text for the current page crumb.With router links
When using a client-side router (React Router, Next.js), render anAnchor with the appropriate as prop or use your router’s Link component via the tag prop.
Props
TheBreadcrumb component does not accept additional props beyond standard HTML attributes. Styling and separators are applied automatically to its children.
Accessibility
-
Breadcrumbrenders a<nav>element witharia-label="breadcrumb"automatically. -
The ordered list of crumbs uses
<ol>so assistive technologies announce the list count. -
The current page crumb (the final non-link item) should have
aria-current="page"to signal the active location. When usingSpan, add this attribute manually: - Breadcrumbs are a secondary navigation landmark. Ensure each page has a unique and descriptive label for the current crumb.