const InputRadio = ({ label, name, value, checked, inline, isLast, onChange }) => { const id = `${name}[${value}]`; const wrapperClassName = classNames({ 'next-input-wrapper': true, 'inline': inline, 'sr': !isLast }); const labelClassName = classNames({ 'next-label': true, 'next-label--switch': true, 'inline': inline, 'fw-normal': inline }); const handleChange = (e) => { onChange(e.target.value); }; return(
) };