import React from 'react'
import { TouchableOpacity } from 'react-native'
import { CountryIcon } from './CountryIconAndName'

export const MarketSelectorButton: React.FC<{
  countryCode: string
  onPress: () => void
}> = ({ countryCode, onPress }) => (
  <TouchableOpacity onPress={onPress}>
    <CountryIcon countryCode={countryCode} size={32} />
  </TouchableOpacity>
)
