diff --git a/src/components/input/SelectInputCheckbox.tsx b/src/components/input/SelectInputCheckbox.tsx index 24125204..a334d133 100644 --- a/src/components/input/SelectInputCheckbox.tsx +++ b/src/components/input/SelectInputCheckbox.tsx @@ -25,14 +25,18 @@ const CheckboxOption = < >( props: OptionProps ) => { - const { isSelected, label, innerRef, innerProps, className } = props; + const { isSelected, label, innerRef, innerProps, className, isFocused } = + props; return (
@@ -40,9 +44,12 @@ const CheckboxOption = < type='checkbox' checked={isSelected} onChange={() => null} - className='checkbox checkbox-sm rounded checkbox-primary pointer-events-none' + className='checkbox checkbox-sm rounded-md checkbox-primary pointer-events-none border-base-content/10' /> - + +
); };