Navigation

Breadcrumbs

A navigational aid that displays a hierarchical path, helping users track their location and easily navigate back within a website. It improves user orientation.

Loading...

Installation

Install the component via the CLI in one command.

npx shadcn@latest add @intentui/breadcrumbs

Composed components

When you install this component via the CLI, it automatically loads all composed components, so you don’t need to add them individually.

Manual installation

Use this approach if you prefer to install and wire up the component yourself instead of using the CLI.

npm install react-aria-components @heroicons/react

Anatomy

import { Breadcrumbs, BreadcrumbsItem } from "@/components/ui/breadcrumbs"
<Breadcrumbs>
  <BreadcrumbsItem href="#">Home</BreadcrumbsItem>
  <BreadcrumbsItem href="#">Design System</BreadcrumbsItem>
  <BreadcrumbsItem>Collections</BreadcrumbsItem>
</Breadcrumbs>

Examples

Separator

The separator appears when the breadcrumb changes. By default, it uses a chevron. You can disable it with separator="false" or switch to a slash with separator="slash".

Loading...

If you need a unique separator for each item (not recommended), set the separator prop directly:

<BreadcrumbsItem href="#" separator="slash"/>

You can also combine breadcrumbs with menus to create a more complex navigation structure.

Loading...

Collections

You can also use breadcrumbs to navigate between collections.

Loading...

Current

The current breadcrumb indicates the active page in the breadcrumb navigation. It is automatically added as the last item and its color is updated accordingly. But you can also control the color of the current breadcrumb by passing a className prop to the BreadcrumbsItem component.

Loading...

if you think you want to render an element inside that current breadcrumb, you can do it like this:

<BreadcrumbsItem className="data-current:text-primary">
  {({ isCurrent }: { isCurrent: boolean }) => (
    <span className="flex items-center gap-x-2">
      Navbar
      {isCurrent && <ChevronDownIcon />}
    </span>
  )}
</BreadcrumbsItem>

Component API

The Breadcrumbs component groups breadcrumb navigation items.

PropTypeDefault
classNamestring-
separator"chevron" | "slash" | boolean-

The BreadcrumbsItem component represents one step in a breadcrumb trail.

PropTypeDefault
classNamestring-
hrefstring-

See the React Aria for the full API reference.

Unlock the full power of
Intent UI Design

Build modern web apps faster with 1000+ resources across components, blocks, patterns, templates, and starter kits.

Learn more