"use client"; import * as SwitchPrimitive from "@radix-ui/react-switch"; import * as React from "react"; import { cn } from "@/presentation/utils"; function Switch({ className, ...props }: React.ComponentProps) { return ( ); } export { Switch };