import { Switch } from "@headlessui/react"; type Props = { value: boolean; onChange: (value: boolean) => void; label?: string; size?: "sm" | "md" | "lg"; disabled?: boolean; className?: string; }; export const ToggleSwitch: React.FC = (props) => { const { value, onChange, label, size = "sm", disabled, className } = props; return ( {label} ); };