import React from 'react'; import { TouchableNativeFeedback, TouchableOpacity, TouchableOpacityProps, View } from 'react-native'; import { isIOS } from '../../lib/methods/helpers'; const NativeButton = (props: TouchableOpacityProps) => { if (isIOS) { return {props.children}; } return ( {props.children} ); }; export default NativeButton;