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