"use client"; import * as React from "react"; import * as SwitchPrimitives from "@radix-ui/react-switch"; import { cn } from "@/lib/utils"; const Switch = ({ ref, className, ...props }: React.ComponentPropsWithoutRef & { ref: React.RefObject>; }) => ( ); Switch.displayName = SwitchPrimitives.Root.displayName; export { Switch };