"use client"; import { ComponentProps } from "react"; import * as SwitchPrimitives from "@radix-ui/react-switch"; import { cn } from "@/lib/style"; export type SwitchProps = ComponentProps; export const Switch = ({ className, ...props }: SwitchProps) => ( );