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