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