Lambda UI
v1.3.4
Stable

Breadcrumb

Breadcrumb component indicates the current page's location within a navigational hierarchy.

Playground

Experiment with all the properties of the Breadcrumb component in real time.

Properties
maxItems

Maximum number of items to show before collapsing (0 to show all).

items

Array of breadcrumb items.

color

Controls the color scheme of the breadcrumb items.

variant

Defines the visual style of the separator.

size

Controls the size of the breadcrumb.

radius

Defines the border radius of the breadcrumb items.

Usage

import { Breadcrumb } from "lambda-ui-components";
import { Home, User, Settings } from "lucide-react";

const items = [
	{ label: "Home", href: "#", icon: <Home size={14} /> },
	{ label: "Profile", href: "#", icon: <User size={14} /> },
	{ label: "Settings", href: "#", icon: <Settings size={14} /> },
	{ label: "Security", href: "#", icon: <LockIcon size={14} /> },
	{ label: "Password", href: "#", icon: <RectangleEllipsis size={14} /> },
];

export default function App() {
	return (
		<Breadcrumb items={items} variant="chevron" color="primary" />
	);
}

API Reference

Props

Prop
Default
Type
items
[]
BreadcrumbItem[]
variant
"chevron"
"chevron" | "slash" | "dot" | "arrow" | "stepped"
color
"primary"
"neutral" | "primary" | "secondary" | "success" | "danger" | "warning" | "info"
size
"small"
"tiny" | "small" | "medium" | "large"
radius
"small"
"none" | "tiny" | "small" | "medium" | "large" | "full"
maxItems
0
number
The modern React component library.
© 2026 Lambda UI. Made with in Mexico by AletzMan.