import { Select, Flex, Typography } from 'antd' import PropTypes from 'prop-types' import Flag from './Flag' import countries from '../../../database/Countries' const { Text } = Typography const CountrySelect = ({ value, onChange, style, placeholder = 'Select country' }) => { return (