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