import type { MattrixwvButtonSwitchProps } from "$/types/Input"; import { Switch } from "@headlessui/react"; export default function ButtonSwitch({ id, className, name, value, defaultChecked, checked, onChange, disabled, onNode, offNode }: MattrixwvButtonSwitchProps){ return ( {({ checked }) => ( <> {checked ? onNode : offNode} )} ); }