UNPKG

react-native-gesture-handler

Version:

Declarative API exposing native platform touch and gesture system to React Native

26 lines (24 loc) 779 B
"use strict"; import * as React from 'react'; import GenericTouchable from './GenericTouchable'; /** * @deprecated TouchableWithoutFeedback will be removed in the future version of Gesture Handler. Use Pressable instead. */ import { jsx as _jsx } from "react/jsx-runtime"; /** * @deprecated TouchableWithoutFeedback will be removed in the future version of Gesture Handler. Use Pressable instead. */ const TouchableWithoutFeedback = ({ delayLongPress = 600, extraButtonProps = { rippleColor: 'transparent', exclusive: true }, ...rest }) => /*#__PURE__*/_jsx(GenericTouchable, { delayLongPress: delayLongPress, extraButtonProps: extraButtonProps, ...rest }); export default TouchableWithoutFeedback; //# sourceMappingURL=TouchableWithoutFeedback.js.map