import { cn } from "@/lib/utils"; export function Switch({ checked, onCheckedChange, className, disabled, id, }: { checked: boolean; onCheckedChange: (v: boolean) => void; className?: string; disabled?: boolean; id?: string; }) { return ( ); }