From 751cc1bb55c888ee1664a85c55d7beba6e71955e Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 22 Aug 2026 23:08:34 +0000 Subject: [PATCH] Terminal --- src/components/ui/switch.tsx | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 src/components/ui/switch.tsx diff --git a/src/components/ui/switch.tsx b/src/components/ui/switch.tsx deleted file mode 100644 index 6338184..0000000 --- a/src/components/ui/switch.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import * as React from "react"; -import * as SwitchPrimitives from "@radix-ui/react-switch"; - -import { cn } from "@/lib/utils"; - -const Switch = React.forwardRef< - React.ElementRef, - React.ComponentPropsWithoutRef ->(({ className, ...props }, ref) => ( - - - -)); -Switch.displayName = SwitchPrimitives.Root.displayName; - -export { Switch };