Laravel | Vue | React | Vanilla JS | Variants | Contributing
1,759 SVG country and language flags for Laravel Blade, Vue, React, and vanilla JavaScript. Three flag styles, 128 language mappings, and full support for regional variants like ar-sa, en-us, and fr-ca. Works great with Inertia.js.
Use them anywhere — locale switchers, address forms, dashboards, or admin panels.
| Variant | Blade | JS import | Countries | Languages | Source |
|---|---|---|---|---|---|
| Default (rounded) | <x-flag-country-us /> |
defaultFlags |
264 | 281 | TwEmoji |
| Circle | <x-flag-circle-country-us /> |
circleFlags |
405 | 275 | circle-flags |
| Flat (4:3) | <x-flag-flat-country-us /> |
flatFlags |
270 | 264 | flag-icons |
For a full list of available icons see the SVG directories: default, circle, flat.
# Laravel / PHP
composer require outhebox/blade-flags
# Vue
npm install @blade-flags/core @blade-flags/vue
# React
npm install @blade-flags/core @blade-flags/react
# Vanilla JS / Node
npm install @blade-flags/coreRequires PHP 8.0+ and Laravel 9+. Uses Blade Icons under the hood — see their readme for caching and additional features.
Watch a 3-minute video by Povilas Korop showcasing the package.
Icons can be used as self-closing Blade components which will be compiled to SVG icons.
<x-flag-country-us />
<x-flag-country-gb />
<x-flag-country-br />
<x-flag-country-cn />
<x-flag-country-ru /><x-flag-language-en />
<x-flag-language-ar />
<x-flag-language-es /><x-flag-circle-country-us />
<x-flag-circle-country-gb />
<x-flag-circle-country-br />
<x-flag-circle-country-cn />
<x-flag-circle-country-ru /><x-flag-circle-language-en />
<x-flag-circle-language-ar />
<x-flag-circle-language-ar-sa />
<x-flag-circle-language-ar-eg /><x-flag-flat-country-us />
<x-flag-flat-country-gb />
<x-flag-flat-country-br />
<x-flag-flat-country-cn />
<x-flag-flat-country-ru /><x-flag-flat-language-en />
<x-flag-flat-language-ar />
<x-flag-flat-language-fr />You can pass classes to any variant:
<x-flag-country-us class="w-6 h-6"/>
<x-flag-circle-country-us class="w-6 h-6"/>
<x-flag-flat-country-us class="w-6 h-6"/>For dynamic icon names (e.g. from a database or variable), use the @svg Blade directive:
@svg('flag-country-'.$country->iso2_code)
@svg('flag-circle-country-'.$country->iso2_code, 'w-6 h-6')
@svg('flag-flat-country-'.$country->iso2_code)
@svg('flag-language-'.$language->code)
@svg('flag-circle-language-'.$language->code, 'w-6 h-6')
@svg('flag-flat-language-'.$language->code)Or the svg() helper in PHP:
svg('flag-country-us')->toHtml()
svg('flag-circle-country-us', 'w-6 h-6')->toHtml()Publish the raw SVG files as public assets:
php artisan vendor:publish --tag=blade-flags --force
php artisan vendor:publish --tag=blade-flags-circle --force
php artisan vendor:publish --tag=blade-flags-flat --forceThen use them in your views:
<img src="{{ asset('vendor/blade-flags/country-us.svg') }}" width="32" height="32"/>
<img src="{{ asset('vendor/blade-flags-circle/circle-country-us.svg') }}" width="32" height="32"/>
<img src="{{ asset('vendor/blade-flags-flat/flat-country-us.svg') }}" width="32" height="32"/>Blade Flags also offers the ability to use features from Blade Icons like default classes, default attributes, etc. If you'd like to configure these, publish the blade-flags.php config file:
php artisan vendor:publish --tag=blade-flags-configBy default, language flags use the country mappings defined in config/language-countries.json (e.g. ar → UAE, en → UK). You can override these defaults per-language:
-
Publish the config file:
php artisan vendor:publish --tag=blade-flags-config
-
Edit
config/blade-flags.phpto set your preferred mappings:'language_overrides' => [ 'ar' => ['default' => 'sa'], // Arabic → Saudi Arabia 'en' => ['default' => 'us'], // English → United States ],
-
Publish the SVG assets and apply your overrides:
php artisan vendor:publish --tag=blade-flags --force php artisan vendor:publish --tag=blade-flags-circle --force php artisan vendor:publish --tag=blade-flags-flat --force php artisan blade-flags:generate
The blade-flags:generate command reads the package defaults, merges your overrides, and regenerates the language flag SVGs in the published vendor directories.
Works with Vue 3.3+. Ideal for Inertia.js apps.
<script setup>
import { Flag } from '@blade-flags/vue'
import { circleFlags } from '@blade-flags/core/flags/circle'
</script>
<template>
<!-- Dynamic: pass the full map, resolve by code at runtime -->
<Flag :code="user.country" :flags="circleFlags" />
<Flag code="ar-sa" type="language" :flags="circleFlags" />
</template>Works with React 18+.
import { Flag } from '@blade-flags/react'
import { circleFlags } from '@blade-flags/core/flags/circle'
// Dynamic: pass the full map, resolve by code at runtime
<Flag code={user.country} flags={circleFlags} />
<Flag code="ar-sa" type="language" flags={circleFlags} />Use @blade-flags/core directly in any JavaScript or TypeScript project:
import { resolveFlag } from '@blade-flags/core'
import { circleFlags } from '@blade-flags/core/flags/circle'
// Dynamic: resolve by code at runtime (loads all flags in the variant)
const svg = resolveFlag(circleFlags, user.country)
document.getElementById('flag').innerHTML = svgEvery flag is a named export. If you know which flags you need at build time, import them directly — your bundler will tree-shake the rest:
// Only the flags you import end up in your bundle
import { countryUs, countryGb, languageAr, languageArSa } from '@blade-flags/core/flags/circle'Flag names follow the pattern country{Code} and language{Code} in camelCase:
| SVG key | Named export | Type |
|---|---|---|
country-us |
countryUs |
Country |
country-gb-eng |
countryGbEng |
Country (region) |
language-ar |
languageAr |
Language |
language-ar-sa |
languageArSa |
Language (regional) |
For dynamic use (code comes from a database or API), import the full variant map. The Flag component uses this approach:
// Loads all flags in the variant — use when the code isn't known at build time
import { circleFlags } from '@blade-flags/core/flags/circle'
import { resolveFlag } from '@blade-flags/core'
const countrySvg = resolveFlag(circleFlags, 'us') // country flag
const languageSvg = resolveFlag(circleFlags, 'ar-sa', 'language') // language flag| Import style | When to use | Bundle impact |
|---|---|---|
import { countryUs } from '.../circle' |
You know the flags at build time | Only the flags you import |
import { circleFlags } from '.../circle' |
Code is dynamic (from data/API) | All flags in the variant |
Import only the variant you need:
import { defaultFlags } from '@blade-flags/core/flags/default' // 264 country + 281 language
import { circleFlags } from '@blade-flags/core/flags/circle' // 405 country + 275 language
import { flatFlags } from '@blade-flags/core/flags/flat' // 270 country + 264 language| Package | Description |
|---|---|
@blade-flags/core |
SVG strings as JS modules + resolveFlag() helper |
@blade-flags/vue |
<Flag> component for Vue 3 (peer dep: vue ^3.3) |
@blade-flags/react |
<Flag> component for React 18+ (peer dep: react ^18 | ^19) |
The AutoFlag convenience component accepts a variant string prop but bundles all variants:
<script setup>
import { AutoFlag } from '@blade-flags/vue'
</script>
<template>
<AutoFlag code="us" variant="circle" />
</template>This package aims for broad compatibility by mirroring upstream flag collections. Inclusion of any flag does not imply endorsement. The author of this package stands with Palestine (the Palestine flag is featured in the project cover). If you want to exclude specific flags, you can do so in your application/UI, or exclude them during the build via bin/build.sh.
Please see CONTRIBUTING for details.
Blade Flags is open-sourced software licensed under the MIT license.
