import React from 'react'; import { StyleSheet, Text, TouchableOpacity, View } from 'react-native'; import { Avatar } from '@rneui/themed'; import loc from '../loc'; const styles = StyleSheet.create({ root: { height: 48, borderRadius: 8, backgroundColor: '#3477F6', flexDirection: 'row', }, labelContainer: { flex: 1, justifyContent: 'center', paddingLeft: 16, }, labelText: { color: 'white', fontWeight: 'bold', }, buttonContainer: { width: 48, alignItems: 'center', justifyContent: 'center', }, ball: { width: 26, height: 26, borderRadius: 13, backgroundColor: 'rgba(255, 255, 255, 0.32)', }, }); interface CoinsSelectedProps { number: number; onContainerPress: () => void; onClose: () => void; } const CoinsSelected: React.FC = ({ number, onContainerPress, onClose }) => ( {loc.formatString(loc.cc.coins_selected, { number })} ); export default CoinsSelected;