Kaballas's picture
initialize project structure with essential configurations and components
56b6519
import cx from 'clsx';
export type RadioProps = {
disabled?: boolean;
checked: boolean;
id: string;
label: string;
name?: string;
onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
value: string;
};
const Radio = ({
disabled,
checked,
id,
label,
name,
onChange,
value,
}: RadioProps) => {
const handleRadioChange = (event: React.ChangeEvent<HTMLInputElement>) => {
onChange(event);
};
return (
<div className="flex gap-2 items-start">
<div className="grid place-items-center mt-1">
<input
checked={checked}
className="
peer
col-start-1 row-start-1
appearance-none shrink-0
w-4 h-4 border-2 border-blue-500 rounded-full
focus:outline-none focus:ring-offset-0 focus:ring-2 focus:ring-blue-400
disabled:border-gray-400
"
disabled={disabled}
id={id}
name={name}
onChange={handleRadioChange}
type="radio"
value={value}
/>
<div
className={cx(
'pointer-events-none',
'col-start-1 row-start-1',
'w-2 h-2 rounded-full peer-checked:bg-blue-500',
'peer-checked:peer-disabled:bg-gray-400',
)}
/>
</div>
<label
className={cx('text-start hover:cursor-pointer', {
'text-gray-400': disabled,
})}
htmlFor={id}
>
{label}
</label>
</div>
);
};
export default Radio;