Skip to content

sandygudie/react-countryname-flag

Repository files navigation

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