import React from 'react'; import cn from 'classnames'; import { countries } from 'App/constants'; import { Icon } from 'UI'; import stl from './countryFlag.module.css'; const CountryFlag = ({ country = '', className = '', style = {}, label = false, width = 22, height = 15}) => { const knownCountry = !!country && country !== 'UN'; const countryFlag = knownCountry ? country.toLowerCase() : ''; const countryName = knownCountry ? countries[ country ] : 'Unknown Country'; return (