import { StyleSheet, Text, TouchableOpacity, View } from 'react-native' import React from 'react' import fonts from '../../theme/fonts' const Button = ({ style, onPress, children }) => { return ( <TouchableOpacity onPress={onPress}> <View style={[styles.button,style]}> {children} </View> </TouchableOpacity> ) } export default Button const styles = StyleSheet.create({ button:{ paddingVertical: fonts.getSize(12), paddingHorizontal: fonts.getSize(12), backgroundColor: 'grey', borderRadius: fonts.getSize(4) } })