Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

react-countryname-flag

sandygudie14MIT1.1.4TypeScript support: included

React package for country name, code and flag

react, typescript, country-names, country-flag, country-code

readme

react-countryname-flag

NPM version Build npm-typescript License

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