react-native-gesture-handler
Version:
Declarative API exposing native platform touch and gesture system to React Native
9 lines (8 loc) • 352 B
JavaScript
;
// 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 = {
cursor: 'pointer'
};
//# sourceMappingURL=pointerStyle.web.js.map