diff --git a/src/components/input/SelectInputRadio.tsx b/src/components/input/SelectInputRadio.tsx index 73608931..5b7b56ac 100644 --- a/src/components/input/SelectInputRadio.tsx +++ b/src/components/input/SelectInputRadio.tsx @@ -21,14 +21,18 @@ const RadioOption = < >( props: OptionProps ) => { - const { isSelected, label, innerRef, innerProps, className } = props; + const { isSelected, label, innerRef, innerProps, className, isFocused } = + props; return (
@@ -36,9 +40,12 @@ const RadioOption = < type='radio' checked={isSelected} onChange={() => null} - className='radio radio-sm radio-primary pointer-events-none' + className='radio radio-md radio-primary pointer-events-none' /> - + +
); };