BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/aurora/aurora-breadcrumb

Aurora Breadcrumb

aurora-dinglebear-ai/aurora-breadcrumb
UnverifiedComponent

Breadcrumb navigation with separator chevrons and Aurora muted text styling.

Install it

npx shadcn@latest add https://raw.githubusercontent.com/dinglebear-ai/aurora/main/aurora-breadcrumb.json

Source

registry/aurora/ui/breadcrumb.tsxraw.githubusercontent.com/dinglebear-ai/aurora/main/aurora-breadcrumb.json · first 6 KB
1"use client"
2
3/**
4 * Aurora Design System — Breadcrumb
5 * No additional peer deps required.
6 */
7
8import * as React from "react"
9import { Slot } from "@radix-ui/react-slot"
10import { ChevronRight, Dot, Ellipsis } from "lucide-react"
11import { Badge } from "./badge"
12import { cn } from "@/lib/utils"
13
14// ─── Variant context ──────────────────────────────────────────────────────────
15
16type BreadcrumbVariant = "default" | "mono" | "pill-trail"
17
18const BreadcrumbVariantContext = React.createContext<BreadcrumbVariant>("default")
19
20// ─── Breadcrumb root ──────────────────────────────────────────────────────────
21
22export interface BreadcrumbProps extends React.ComponentProps<"nav"> {
23 variant?: BreadcrumbVariant
24 separator?: React.ReactNode
25}
26
27function Breadcrumb({ ref, variant = "default", className, ...props }: BreadcrumbProps & { ref?: React.Ref<HTMLElement> }) {
28 return (
29 <BreadcrumbVariantContext.Provider value={variant}>
30 <nav
31 ref={ref}
32 aria-label="breadcrumb"
33 className={cn("flex", className)}
34 {...props}
35 />
36 </BreadcrumbVariantContext.Provider>
37 )
38}
39
40// ─── BreadcrumbList ───────────────────────────────────────────────────────────
41
42function BreadcrumbList({ ref, className, ...props }: React.ComponentProps<"ol"> & { ref?: React.Ref<HTMLOListElement> }) {
43 const variant = React.useContext(BreadcrumbVariantContext)
44 return (
45 <ol
46 ref={ref}
47 className={cn(
48 "flex min-w-0 flex-wrap items-center gap-1.5 break-words",
49 variant === "pill-trail" && "gap-1.5",
50 className
51 )}
52 {...props}
53 />
54 )
55}
56
57// ─── BreadcrumbItem ───────────────────────────────────────────────────────────
58
59function BreadcrumbItem({ ref, className, ...props }: React.ComponentProps<"li"> & { ref?: React.Ref<HTMLLIElement> }) {
60 return (
61 <li
62 ref={ref}
63 className={cn("inline-flex min-w-0 items-center gap-1", className)}
64 {...props}
65 />
66 )
67}
68
69// … truncated

What it pulls in

npm packages

  • @radix-ui/react-slot@^1.2.3
  • lucide-react@^0.487.0

Other registry items

  • @aurora/aurora-tokens
  • @aurora/aurora-badge

Files it writes

  • registry/aurora/ui/breadcrumb.tsx

Facts

Registry
aurora
Type
registry:ui
Access
Unverified
Files written
1
Licence
AGPL-3.0
In the index
at or before 2026-08-08
Last confirmed
today

Go to the source

aurora.dinglebear.ai dinglebear-ai/aurora on GitHub Raw registry item This item as JSON

More from aurora

All 176 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Aurora Accordionaurora-accordionauroraComponentsUnverified2 deps
Aurora Alert Dialogaurora-alert-dialogauroraComponentsUnverified2 deps
Aurora Aspect Ratioaurora-aspect-ratioauroraComponentsUnverifiedno deps
Aurora Avataraurora-avatarauroraComponentsUnverified1 dep
Aurora Badgeaurora-badgeauroraComponentsUnverified2 deps
Aurora Banneraurora-bannerauroraComponentsUnverified1 dep
Aurora Buttonaurora-buttonauroraComponentsUnverified2 deps
Aurora Button Groupaurora-button-groupauroraComponentsUnverifiedno deps

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex