Breadcrumbs

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 tailwind-merge

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="current:text-primary"/>

Component API

Breadcrumbs extends the React Aria Components <Breadcrumbs> component.

classNamestring
separator"chevron" | "slash" | boolean

BreadcrumbsItem extends the React Aria Components <Breadcrumb> component.

classNamestring
hrefstring

See the React Aria for the full API reference.

Design