diff --git a/app/components/BreadCrumbs.tsx b/app/components/BreadCrumbs.tsx new file mode 100644 index 00000000..65882a15 --- /dev/null +++ b/app/components/BreadCrumbs.tsx @@ -0,0 +1,125 @@ +import { Slot } from "@radix-ui/react-slot"; +import { ChevronRight, MoreHorizontal } from "lucide-react"; +import { + forwardRef, + type ComponentProps, + type ComponentPropsWithoutRef, + type ReactNode, +} from "react"; + +import { cn } from "~/lib/utils/cn"; + +const Breadcrumb = forwardRef< + HTMLElement, + ComponentPropsWithoutRef<"nav"> & { + separator?: ReactNode; + } +>(({ ...properties }, reference) => ( +