import React from 'react'; import { TouchableOpacity, Text, ActivityIndicator } from 'react-native'; import { ButtonProps } from './button.props'; import { styles } from './button.styles'; export function Button({ title, onPress, style, textStyle, loading = false, }: ButtonProps) { return ( {loading ? ( ) : ( {title} )} ); }