From 5285db3a8269fa4dfe12358d7f44207cd5b24c47 Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 22 Aug 2026 23:08:16 +0000 Subject: [PATCH] Terminal --- src/components/ui/breadcrumb.tsx | 101 ------------------------------- 1 file changed, 101 deletions(-) delete mode 100644 src/components/ui/breadcrumb.tsx diff --git a/src/components/ui/breadcrumb.tsx b/src/components/ui/breadcrumb.tsx deleted file mode 100644 index 94eb629..0000000 --- a/src/components/ui/breadcrumb.tsx +++ /dev/null @@ -1,101 +0,0 @@ -import * as React from "react"; -import { Slot } from "@radix-ui/react-slot"; -import { ChevronRight, MoreHorizontal } from "lucide-react"; - -import { cn } from "@/lib/utils"; - -const Breadcrumb = React.forwardRef< - HTMLElement, - React.ComponentPropsWithoutRef<"nav"> & { - separator?: React.ReactNode; - } ->(({ ...props }, ref) =>