"use client"; import { cn } from "@/lib/utils"; type SwitchProps = { checked: boolean; onCheckedChange: (value: boolean) => void; className?: string; }; export function Switch({ checked, onCheckedChange, className }: SwitchProps) { return ( ); }