import React from 'react'; import { Text, TouchableOpacity, ViewStyle } from "react-native"; import { ItemTemplateProps } from "../types/Types"; export const CountryButton = ({ item, name, style, ...rest }: ItemTemplateProps) => ( {item?.flag} {item?.dial_code} {name} ); type StyleKeys = 'countryButton'; const styles: { [key in StyleKeys]: ViewStyle } = { countryButton: { paddingVertical: 10, backgroundColor: '#f5f5f5', width: '100%', height: 50, paddingHorizontal: 25, alignItems: 'center', marginVertical: 2, flexDirection: 'row', borderRadius: 10, }, };