diff --git a/components/ui/accordion.tsx b/components/ui/accordion.tsx deleted file mode 100644 index 077b29b..0000000 --- a/components/ui/accordion.tsx +++ /dev/null @@ -1,64 +0,0 @@ -"use client"; -import * as AccordionPrimitive from "@radix-ui/react-accordion"; -import { RiArrowDownBoxFill } from "@remixicon/react"; -import type * as React from "react"; -import { cn } from "@/lib/utils"; - -function Accordion({ - ...props -}: React.ComponentProps) { - return ; -} - -function AccordionItem({ - className, - ...props -}: React.ComponentProps) { - return ( - - ); -} - -function AccordionTrigger({ - className, - children, - ...props -}: React.ComponentProps) { - return ( - - svg]:rotate-180", - className, - )} - {...props} - > - {children} - - - - ); -} - -function AccordionContent({ - className, - children, - ...props -}: React.ComponentProps) { - return ( - -
{children}
-
- ); -} - -export { Accordion, AccordionItem, AccordionTrigger, AccordionContent }; diff --git a/components/ui/breadcrumb.tsx b/components/ui/breadcrumb.tsx deleted file mode 100644 index 2e280a5..0000000 --- a/components/ui/breadcrumb.tsx +++ /dev/null @@ -1,108 +0,0 @@ -import { Slot } from "@radix-ui/react-slot"; -import { RiArrowRightSLine, RiMore2Line } from "@remixicon/react"; -import type * as React from "react"; -import { cn } from "@/lib/utils/ui"; - -function Breadcrumb({ ...props }: React.ComponentProps<"nav">) { - return