0
0
mirror of https://github.com/lipis/flag-icons.git synced 2024-11-22 02:47:32 +01:00
🎏 A curated collection of all country flags in SVG — plus the CSS for easier integration
Go to file
Guillaume Cièr 1734912def
Fixing blurry us flag in Safari (#1096)
* Fixing blurry us flag when zooming on a flag in Safari (iOS & Mac OS).

* Removing usage of <use/> to make flag editable in Illustrator & Inkscape
2023-03-28 14:04:30 -04:00
.github Simplify prettier (#1006) 2022-06-21 11:00:43 +03:00
assets Switch event 2022-06-25 11:35:29 +03:00
css Add cefta flag to stylesheets (#1065) 2022-12-21 02:47:17 -05:00
flags Fixing blurry us flag in Safari (#1096) 2023-03-28 14:04:30 -04:00
less Add cefta flag to stylesheets (#1065) 2022-12-21 02:47:17 -05:00
sass Add cefta flag to stylesheets (#1065) 2022-12-21 02:47:17 -05:00
.gitignore
.prettierignore
.prettierrc.json Simplify prettier (#1006) 2022-06-21 11:00:43 +03:00
404.html Fix formatting 2022-02-12 09:00:57 +02:00
CHANGELOG.md Changelog 2022-08-24 20:57:20 +03:00
CNAME
country.json Add flag for Basque Country (#1014) (#1050) 2022-12-21 02:12:12 -05:00
favicon.ico
flag-ids.py Format 2022-06-22 17:47:54 +03:00
flags.py Fix encoding and sort by name in country.json (#1031) 2022-08-24 20:38:07 +03:00
index.html button to switch (#1010) 2022-06-23 19:23:59 +03:00
LICENSE
package.json Bump prettier from 2.8.6 to 2.8.7 (#1095) 2023-03-28 01:55:28 -04:00
README.md Added CDN (#1032) 2022-09-01 20:01:31 +03:00
svgo.config.js Remove IDs and add only the main ID (#1009) 2022-06-22 15:51:14 +03:00
yarn.lock Bump prettier from 2.8.6 to 2.8.7 (#1095) 2023-03-28 01:55:28 -04:00

flag-icons

A curated collection of all country flags in SVG — plus the CSS for easier integration. See the demo.

Install

You can either download the whole project as is or install it via npm or Yarn:

npm install flag-icons
# or
yarn add flag-icons

Usage

First, you need to import css:

import "/node_modules/flag-icons/css/flag-icons.min.css";

or use CDN:

<link
  rel="stylesheet"
  href="https://cdn.jsdelivr.net/gh/lipis/flag-icons@6.6.6/css/flag-icons.min.css"
/>

For using the flags inline with text add the classes .fi and .fi-xx (where xx is the ISO 3166-1-alpha-2 code of a country) to an empty <span>. If you want to have a squared version flag then add the class fis as well. Example:

<span class="fi fi-gr"></span> <span class="fi fi-gr fis"></span>

You could also apply this to any element, but in that case you'll have to use the fib instead of fi and you're set. This will add the correct background with the following CSS properties:

background-size: contain;
background-position: 50%;
background-repeat: no-repeat;

Which means that the flag is just going to appear in the middle of an element, so you will have to set manually the correct size of 4 by 3 ratio or if it's squared add also the flag-icon-squared class.

Development

Run the yarn to install the dependencies after cloning the project and you'll be able to:

To build *.less files

$ yarn build

To serve it on localhost:8000

$ yarn start

To have only specific countries in the css file, remove the ones that you don't need from the flag-icons-list.less file and build it again.

Credits

  • This project wouldn't exist without the awesome and now deleted collection of SVG flags by koppi.
  • Thank you Andrejs Abrickis for providing the flag-icons name on npm.