From 4114234714e8dac6b59e19939f6c2dfa06b920e2 Mon Sep 17 00:00:00 2001 From: OverDsh Date: Mon, 6 Apr 2026 11:01:58 +0200 Subject: [PATCH 1/3] chore: install breadcrumb ui component --- src/components/ui/breadcrumb.tsx | 109 +++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 src/components/ui/breadcrumb.tsx diff --git a/src/components/ui/breadcrumb.tsx b/src/components/ui/breadcrumb.tsx new file mode 100644 index 0000000..8757be9 --- /dev/null +++ b/src/components/ui/breadcrumb.tsx @@ -0,0 +1,109 @@ +import * as React from "react" +import { ChevronRight, MoreHorizontal } from "lucide-react" +import { Slot } from "radix-ui" + +import { cn } from "@/src/lib/utils" + +function Breadcrumb({ ...props }: React.ComponentProps<"nav">) { + return