import React from 'react' import { TouchableOpacity, Text, StyleSheet, DimensionValue } from 'react-native' import { globalStyles } from '../../../styles/GlobalStyles' export type ButtonProps = { danger?: boolean onClick: () => void outlined?: boolean title: string width?: DimensionValue size?: 'large' } export const Button: React.FC = ({ title, onClick, outlined, danger, width, size }) => { return ( {title} ) } const styles = StyleSheet.create({ appButtonContainer: { backgroundColor: '#009290', paddingHorizontal: 24, height: 42, borderRadius: 15, borderWidth: 1, borderColor: '#009290', alignItems: 'center', justifyContent: 'center', }, outlined: { backgroundColor: 'transparent', }, danger: { backgroundColor: 'transparent', borderColor: '#F05B5D', }, large: { paddingHorizontal: 40, }, appButtonText: { color: '#FFFDFE', }, outlinedCaseText: { color: '#303443', }, dangerCaseText: { color: '#F05B5D', }, })