From c680b159886af415e0ca7dfd046a7711a7683815 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 7 Aug 2026 04:14:22 +0000 Subject: [PATCH] Modified by www.SourceFiles.app --- 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 };