From 713316852fd1630d4f7c745fa69c9f477ad799f3 Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 22 Aug 2026 23:08:30 +0000 Subject: [PATCH] Terminal --- src/components/ui/separator.tsx | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 src/components/ui/separator.tsx diff --git a/src/components/ui/separator.tsx b/src/components/ui/separator.tsx deleted file mode 100644 index 5f5966c..0000000 --- a/src/components/ui/separator.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import * as React from "react"; -import * as SeparatorPrimitive from "@radix-ui/react-separator"; - -import { cn } from "@/lib/utils"; - -const Separator = React.forwardRef< - React.ElementRef, - React.ComponentPropsWithoutRef ->(({ className, orientation = "horizontal", decorative = true, ...props }, ref) => ( - -)); -Separator.displayName = SeparatorPrimitive.Root.displayName; - -export { Separator };