File size: 1,546 Bytes
56b6519
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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;