| 123456789101112131415161718192021222324252627282930 |
- import React from 'react';
- import { StyleSheet, Text, TouchableOpacity } from 'react-native';
-
- const CustomButton = ({label, onPress}) => {
- return (
- <TouchableOpacity onPress={onPress} style={styles.button}>
- <Text style={styles.buttonText}>
- {label}
- </Text>
- </TouchableOpacity>
- )
- }
-
- 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;
|