react-native-gesture-handler
Version:
Declarative API exposing native platform touch and gesture system to React Native
7 lines (5 loc) • 350 B
text/typescript
import type { ViewStyle } from 'react-native';
// react-native-web sets `cursor: 'pointer'` on its interactive components
// (Pressable, TouchableOpacity, …) but not on `View`, which the native button
// renders — so the Touchable-based Pressable adds it here to match RN Pressable.
export const pointerStyle: ViewStyle = { cursor: 'pointer' };