import type { RadioButtonProps } from "$/types/Input"; import { Radio } from "@headlessui/react"; import clsx from "clsx"; export default function RadioButton({ id, className, labelClassName, size = "sm", value, children }: RadioButtonProps){ return (
{ children &&
{children}
} ); }