import React from 'react'; import { StyleSheet, Text, TouchableOpacity } from 'react-native'; const CustomButton = ({label, onPress}) => { return ( {label} ) } const styles = StyleSheet.create({ button: { backgroundColor: '#AD40AF', padding: 20, borderRadius: 10, marginBottom: 30 }, buttonText: { textAlign: 'center', fontWeight: '700', fontSize: 16, color: '#fff', fontFamily: 'poppins-semibold' } }) export default CustomButton;