From a890ed571b1de084539a096701e1be395e091dbc Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Sat, 24 Jan 2026 11:19:50 +0700 Subject: [PATCH] chore: adjust SelectInputRadio styling --- src/components/input/SelectInputRadio.tsx | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) 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' /> - + +
); };