🎏 A curated collection of all country flags in SVG — plus the CSS for easier integration
Find a file
2026-04-07 14:11:53 -04:00
.github CI: Update multiple actions (#1411) 2026-03-03 11:46:07 -05:00
assets Update bootstrap and icons (#1144) 2023-08-17 01:51:41 +03:00
css Add new flag for Association of Southeast Asian Nations (#1325) 2025-01-17 16:03:10 +02:00
flags Fix white border in Panama flag (#1440) 2026-04-07 14:11:53 -04:00
sass Migrate SASS imports to @use-based code (#1356) 2025-05-29 19:51:45 +03:00
.gitignore Update .gitignore (#1371) 2025-06-19 17:26:27 +03:00
.prettierignore Rename project to flag-icons (#859) 2021-10-22 16:13:32 +03:00
.prettierrc.json Simplify prettier (#1006) 2022-06-21 11:00:43 +03:00
404.html Add robots, sitemaps and change title (#1139) 2023-08-14 22:18:08 +03:00
CHANGELOG.md Update all flags with the latest SVGO 3.3.2 (#1367) 2025-05-29 20:52:05 +03:00
CNAME Update homepage (#861) 2021-10-22 23:26:29 +03:00
composer.json Fix 2023-07-24 22:18:01 +03:00
country.json Add new flag for Association of Southeast Asian Nations (#1325) 2025-01-17 16:03:10 +02:00
favicon.ico Add Favicon 2021-10-25 17:25:33 +03:00
flag-ids.py Add new flag for Association of Southeast Asian Nations (#1325) 2025-01-17 16:03:10 +02:00
flags.py Add new flag for Association of Southeast Asian Nations (#1325) 2025-01-17 16:03:10 +02:00
index.html modern and minimalist UI redesign with new features (#1358) 2025-05-29 16:21:18 +03:00
LICENSE Renamed LICENCE file to LICENSE 2014-06-12 16:47:59 +02:00
maven.sh Show the maven URL in cli 2023-11-07 10:45:19 +02:00
package.json Bump svgo from 3.3.2 to 3.3.3 (#1435) 2026-04-04 14:31:12 -04:00
README.md Migrate SASS imports to @use-based code (#1356) 2025-05-29 19:51:45 +03:00
robots.txt Robots.txt 2023-08-22 19:42:25 +03:00
svgo.config.js feat: enable prefixIds svgo plugin (#1110) 2023-07-24 21:53:33 +03:00
yarn.lock Bump lodash from 4.17.23 to 4.18.1 (#1442) 2026-04-04 14:34:40 -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@7.3.2/css/flag-icons.min.css"
/>

or use SASS:

@use "node_modules/flag-icons/sass/flag-icons";

// or with custom configuration
@use "node_modules/flag-icons/sass/flag-icons" with (
  // Override path to flags directory
  $flag-icons-path: "node_modules/flag-icons/flags",

  // Include only specific country flags
  $flag-icons-included-countries: ("gr", "de", "gb")
);

You can find all available variables in sass/_variables.scss.

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 *.scss 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.scss 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.