Skip to content

Commit f430579

Browse files
committed
fix(checkbox): 💚 fix build ts definition
1 parent ccf8d42 commit f430579

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/checkbox/Checkbox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,6 @@ const RNCheckbox: React.FC<Partial<CheckboxProps>> = forwardRef<
363363
// Web Callbacks
364364
onHoverIn={onHoverIn}
365365
onHoverOut={onHoverOut}
366-
{...focusProps}
367366
// Web Callbacks
368367
// A11y Props
369368
accessibilityLabel={accessibilityLabel}
@@ -441,6 +440,7 @@ const RNCheckbox: React.FC<Partial<CheckboxProps>> = forwardRef<
441440
})}
442441
disabled={isDisabled}
443442
{...(description ? {} : handlers)}
443+
{...focusProps}
444444
>
445445
{(touchState: PressableStateCallbackType) =>
446446
children({

0 commit comments

Comments
 (0)