import { StyleSheet, Text, View, TouchableWithoutFeedback} from 'react-native' import React from 'react' const ButtonWrapper = ({ onPress, children, buttonStyle}) => { return ( {children} ) } export default ButtonWrapper const styles = StyleSheet.create({ buttonStyle: { alignItems: 'center', justifyContent: 'center', height: 'auto', width: 'auto' }, })