diff --git a/src/components/Pressable/GenericPressable/index.tsx b/src/components/Pressable/GenericPressable/index.tsx index c8e9560062e0..e0436c26c8fe 100644 --- a/src/components/Pressable/GenericPressable/index.tsx +++ b/src/components/Pressable/GenericPressable/index.tsx @@ -3,14 +3,17 @@ import {Role, View} from 'react-native'; import GenericPressable from './BaseGenericPressable'; import PressableProps from './types'; -function WebGenericPressable(props: PressableProps, ref: ForwardedRef) { +function WebGenericPressable({focusable = true, ...props}: PressableProps, ref: ForwardedRef) { + const accessible = props.accessible ?? props.accessible === undefined ? true : props.accessible; + return (