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