import type { ReactNode } from "react"; import { cn } from "../../lib/cn"; export type SwitchProps = { checked?: boolean; label?: ReactNode; onChange?: (checked: boolean) => void; }; export function Switch({ checked = false, label, onChange }: SwitchProps) { return ( ); }