react-countryname-flag
v1.1.4
Published
React package for country name, code and flag
Downloads
36
Maintainers
Readme
react-countryname-flag
Installation:
npm install react-countryname-flag --save-dev
or
yarn add -D react-countryname-flag
Usage :
Get country flag from country name
import { CountryFlag } from 'react-countryname-flag'
<CountryFlag countryName={'Afghanistan'} style={{ fontSize: '20px' }} />
🇦🇫
Get country flag from country code
import { CountryFlag } from 'react-countryname-flag'
<CountryFlag countryCode={'AG'} />
🇦🇬
Get country code from country name
import { CountryCode } from 'react-countryname-flag'
<CountryCode countryName={'Afghanistan'} />
// AF
Get country name from country code
import { CountryName } from 'react-countryname-flag'
<CountryName countryCode={'AG'} />
// Antigua and Barbuda