import clsx from "clsx"; import { ChangeEventHandler } from "react"; type Props = { label: string; className?: string; state: boolean; onClick: ChangeEventHandler; }; export default function RadioButton({ label, state, onClick, className, }: Props) { return ( ); }