Breadcrumb
Breadcrumb is a React and Tailwind CSS navigation component from SmoothUI, licensed MIT. Copy it and paste it into your project.
SmoothUI
MIT
navigation
What it is
Breadcrumb is a React and Tailwind CSS navigation component from SmoothUI, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
Needs
npm i motion lucide-react
Licence
This component comes from SmoothUI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Breadcrumb
"use client";
import { cn } from "@/lib/utils";
import { ChevronRight } from "lucide-react";
import { motion, useReducedMotion } from "motion/react";
import type { ReactNode } from "react";
import { SPRING_DEFAULT } from "@/components/smoothui/lib/animation";
/** A single breadcrumb item definition. */
export type BreadcrumbItemProps = {
/** Display label for the breadcrumb item. */
label: ReactNode;
/** URL the breadcrumb links to. Omit for the current (last) page. */
href?: string;
};
export type BreadcrumbProps = {
/** Ordered list of breadcrumb items. The last item is treated as the current page. */
items: BreadcrumbItemProps[];
/** Custom separator element. Defaults to a chevron icon. */
separator?: ReactNode;
/** Additional CSS classes for the nav element. */
className?: string;
};
const staggerDelay = 0.04;
export default function Breadcrumb({
items,
separator,
className,
}: BreadcrumbProps) {
const shouldReduceMotion = useReducedMotion();
return (
<nav aria-label="Breadcrumb" className={cn("inline-flex", className)}>
<ol className="flex flex-wrap items-center gap-1.5 text-muted-foreground text-sm sm:gap-2.5">
{items.map((item, index) => {
const isLast = index === items.length - 1;
return (
<motion.li
animate={{ opacity: 1, transform: "translateX(0px)" }}
className="inline-flex items-center gap-1.5"
initial={
shouldReduceMotion
? { opacity: 1 }
: { opacity: 0, transform: "translateX(-4px)" }
}
key={
typeof item.label === "string"
? item.label
: `breadcrumb-${String(index)}`
}
transition={
shouldReduceMotion
? { duration: 0 }
: {
...SPRING_DEFAULT,
delay: index * staggerDelay,
}
}
>
{index > 0 && (
<span
aria-hidden="true"
className="mr-1.5 [&>svg]:size-3.5"
role="presentation"
>
{separator ?? <ChevronRight className="size-3.5" />}
</span>
)}
{isLast ? (
<span
aria-current="page"
className="font-normal text-foreground"
>
{item.label}
</span>
) : (
<a
className="transition-colors hover:text-foreground"
href={item.href ?? "#"}
>
{item.label}
</a>
)}
</motion.li>
);
})}
</ol>
</nav>
);
}