@brightlocal/icons 0.2.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,10 +5,22 @@ All notable changes to `@brightlocal/icons` will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
- ## [Unreleased]
8
+ ## [0.3.0] - 2026-02-12
9
+
10
+ ### Removed
11
+ - `Icon` wrapper component and `IconProps`/`IconName` types
12
+ - `Icon` suffix aliases from lucide re-exports (`CheckIcon` -> use `Check`)
13
+ - Direct `lucide-react` re-export (icons now wrapped with BrightLocal defaults)
14
+
15
+ ### Added
16
+ - `LucideProps` and `LucideIcon` type exports
17
+
18
+ ### Fixed
19
+ - Hyphenated SVG attributes converted to JSX camelCase in flag/social-media icons
9
20
 
10
21
  ## [0.2.0] - 2026-02-09
11
22
 
23
+ ### Changed
12
24
  - Change default icon size from 24px to 16px
13
25
  ## [0.1.2] - 2026-01-16
14
26
 
package/README.md CHANGED
@@ -31,21 +31,7 @@ import { Check, Heart, Star } from "@brightlocal/icons";
31
31
  <Star size={16} strokeWidth={2} />
32
32
  ```
33
33
 
34
- ### 2. Icon Component
35
-
36
- Flexible component that accepts icon name or component.
37
-
38
- ```tsx
39
- import { Icon, Check } from "@brightlocal/icons";
40
-
41
- // By name (string)
42
- <Icon name="Check" className="w-4 h-4" />
43
-
44
- // By component reference
45
- <Icon name={Check} size={20} />
46
- ```
47
-
48
- ### 3. DynamicIcon Component
34
+ ### 2. DynamicIcon Component
49
35
 
50
36
  For database-driven icon rendering with code-splitting. Icons are loaded dynamically only when used.
51
37
 
@@ -65,7 +51,7 @@ const iconName = user.settings.preferredIcon; // "heart"
65
51
  </React.Suspense>
66
52
  ```
67
53
 
68
- ### 4. Custom BrightLocal Icons
54
+ ### 3. Custom BrightLocal Icons
69
55
 
70
56
  ```tsx
71
57
  import { BrightLocalLogo } from "@brightlocal/icons";
@@ -75,14 +61,6 @@ import { BrightLocalLogo } from "@brightlocal/icons";
75
61
 
76
62
  ## Component Props
77
63
 
78
- ### Icon Component
79
-
80
- - `name`: Lucide icon name (string) or component
81
- - `customIcon`: Custom icon component
82
- - `size`: Icon size in pixels (default: 16)
83
- - `className`: Additional CSS classes
84
- - All other LucideProps: `color`, `strokeWidth`, `absoluteStrokeWidth`, etc.
85
-
86
64
  ### DynamicIcon Component
87
65
 
88
66
  - `name`: Icon name (kebab-case, e.g., "camera", "chevron-down", "bright-local-logo")
@@ -104,7 +82,7 @@ import { BrightLocalLogo } from "@brightlocal/icons";
104
82
  - **Flexible**: Multiple import patterns for different use cases
105
83
  - **Lazy loading**: DynamicIcon splits icons into separate chunks
106
84
  - **Consistent**: Unified API across all icons
107
- - **Optimized**: Minimal bundle impact (~3KB for Icon component)
85
+ - **Optimized**: Minimal bundle impact
108
86
 
109
87
  ## Adding Custom Icons
110
88
 
@@ -238,34 +216,34 @@ import { Camera, Heart } from "@brightlocal/icons";
238
216
  ### Bundle Size Impact
239
217
 
240
218
  - Direct import: ~1-2KB per icon (tree-shaken)
241
- - Icon component: ~3KB + icon size
242
219
  - DynamicIcon: ~4KB + icon loaded on demand
243
220
 
244
- ## Default Icon Sizes
221
+ ## Default Icon Properties
222
+
223
+ All Lucide icons from `@brightlocal/icons` are wrapped with design system defaults:
224
+
225
+ | Property | Default | Description |
226
+ |----------|---------|-------------|
227
+ | `size` | 16 | Icon dimensions in pixels |
228
+ | `strokeWidth` | 1.33 | Matches Figma design specs |
229
+ | `absoluteStrokeWidth` | true | Keeps stroke consistent regardless of icon size |
245
230
 
246
- Different icon types have different default sizes optimized for their typical use cases:
231
+ ### Default Sizes by Icon Type
247
232
 
248
233
  | Icon Type | Default Size | Use Case |
249
234
  |-----------|--------------|----------|
250
235
  | Lucide icons | 16px | UI elements, buttons, inputs |
251
- | Icon component | 16px | Generic icon rendering |
252
236
  | DynamicIcon | 16px | Database-driven icons |
253
237
  | Flag icons | 16px | Country/region indicators |
254
238
  | Social Media icons | 16px | Brand logos, social links |
255
239
 
256
240
  ```tsx
257
- // Lucide icons default to 16px
241
+ // Lucide icons default to 16px with 1.33 strokeWidth
258
242
  <Check />
259
243
 
260
- // Explicit size
261
- <Check size={16} />
262
-
263
- // Flag/Social icons default to 16px
264
- <UnitedStates />
265
- <FacebookOriginal />
266
-
267
- // Using className for Tailwind sizing
268
- <Check className="w-6 h-6" /> // 16px
244
+ // Explicit size — stroke stays consistent (absoluteStrokeWidth: true)
245
+ <Check size={20} />
246
+ <Check size={12} />
269
247
  ```
270
248
 
271
249
  ## TypeScript Support
@@ -273,11 +251,8 @@ Different icon types have different default sizes optimized for their typical us
273
251
  Full TypeScript support with type inference:
274
252
 
275
253
  ```tsx
276
- import { Icon, DynamicIcon } from "@brightlocal/icons";
277
- import type { IconProps, DynamicIconProps, IconName } from "@brightlocal/icons";
278
-
279
- // IconName type includes all available Lucide icon names
280
- const iconName: IconName = "camera";
254
+ import { DynamicIcon } from "@brightlocal/icons";
255
+ import type { DynamicIconProps } from "@brightlocal/icons";
281
256
 
282
257
  // Props are fully typed
283
258
  const props: DynamicIconProps = {
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("react/jsx-runtime"),c=require("react");function s(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const r in e)if(r!=="default"){const n=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(t,r,n.get?n:{enumerable:!0,get:()=>e[r]})}}return t.default=e,Object.freeze(t)}const u=s(c),a=u.forwardRef(({className:e,size:t=24,strokeWidth:r=2,...n},i)=>o.jsx("svg",{ref:i,"aria-hidden":"true",className:e,fill:"none",height:t,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"miter",strokeWidth:r,viewBox:"0 0 24 24",width:t,xmlns:"http://www.w3.org/2000/svg",...n,children:o.jsx("path",{d:"M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z"})}));a.displayName="StarRating";exports.StarRating=a;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("react/jsx-runtime"),s=require("react");function l(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const r in e)if(r!=="default"){const n=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(t,r,n.get?n:{enumerable:!0,get:()=>e[r]})}}return t.default=e,Object.freeze(t)}const d=l(s),a=d.forwardRef(({className:e,size:t=16,strokeWidth:r=1.33,absoluteStrokeWidth:n=!0,...i},c)=>{const u=n?Number(r)*24/Number(t):r;return o.jsx("svg",{ref:c,"aria-hidden":"true",className:e,fill:"none",height:t,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"miter",strokeWidth:u,viewBox:"0 0 24 24",width:t,xmlns:"http://www.w3.org/2000/svg",...i,children:o.jsx("path",{d:"M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z"})})});a.displayName="StarRating";exports.StarRating=a;
@@ -1 +1 @@
1
- {"version":3,"file":"star-rating.d.ts","sourceRoot":"","sources":["../../src/custom/star-rating.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAEhD;;;;;;GAMG;AACH,eAAO,MAAM,UAAU,gGAoBtB,CAAC"}
1
+ {"version":3,"file":"star-rating.d.ts","sourceRoot":"","sources":["../../src/custom/star-rating.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAChD;;;;;;GAMG;AACH,eAAO,MAAM,UAAU,gGA0BtB,CAAC"}
@@ -1,27 +1,30 @@
1
- import { jsx as t } from "react/jsx-runtime";
2
- import * as n from "react";
3
- const L = n.forwardRef(
4
- ({ className: o, size: r = 24, strokeWidth: e = 2, ...i }, a) => /* @__PURE__ */ t(
5
- "svg",
6
- {
7
- ref: a,
8
- "aria-hidden": "true",
9
- className: o,
10
- fill: "none",
11
- height: r,
12
- stroke: "currentColor",
13
- strokeLinecap: "round",
14
- strokeLinejoin: "miter",
15
- strokeWidth: e,
16
- viewBox: "0 0 24 24",
17
- width: r,
18
- xmlns: "http://www.w3.org/2000/svg",
19
- ...i,
20
- children: /* @__PURE__ */ t("path", { d: "M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z" })
21
- }
22
- )
1
+ import { jsx as e } from "react/jsx-runtime";
2
+ import * as d from "react";
3
+ const m = d.forwardRef(
4
+ ({ className: o, size: r = 16, strokeWidth: t = 1.33, absoluteStrokeWidth: i = !0, ...n }, a) => {
5
+ const L = i ? Number(t) * 24 / Number(r) : t;
6
+ return /* @__PURE__ */ e(
7
+ "svg",
8
+ {
9
+ ref: a,
10
+ "aria-hidden": "true",
11
+ className: o,
12
+ fill: "none",
13
+ height: r,
14
+ stroke: "currentColor",
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "miter",
17
+ strokeWidth: L,
18
+ viewBox: "0 0 24 24",
19
+ width: r,
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ ...n,
22
+ children: /* @__PURE__ */ e("path", { d: "M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z" })
23
+ }
24
+ );
25
+ }
23
26
  );
24
- L.displayName = "StarRating";
27
+ m.displayName = "StarRating";
25
28
  export {
26
- L as StarRating
29
+ m as StarRating
27
30
  };
package/dist/dynamic.d.ts CHANGED
@@ -21,7 +21,7 @@ export { DynamicIcon } from './icons/dynamic-icon.js';
21
21
  export type { DynamicIconProps } from './icons/dynamic-icon.js';
22
22
  export { iconImports } from './icons/dynamic-icon-imports.js';
23
23
  export type { IconImportName, IconComponentProps, } from './icons/dynamic-icon-imports.js';
24
- export { flagIconImports, flagIconNames, } from './flag/dynamic-imports.js';
24
+ export { flagIconImports, flagIconNames } from './flag/dynamic-imports.js';
25
25
  export type { FlagIconName } from './flag/dynamic-imports.js';
26
26
  export { socialMediaIconImports, socialMediaIconNames, } from './social-media/dynamic-imports.js';
27
27
  export type { SocialMediaIconName } from './social-media/dynamic-imports.js';
@@ -1 +1 @@
1
- {"version":3,"file":"dynamic.d.ts","sourceRoot":"","sources":["../src/dynamic.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;GAkBG;AAGH,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,YAAY,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAEhE,OAAO,EAAE,WAAW,EAAE,MAAM,iCAAiC,CAAC;AAC9D,YAAY,EACV,cAAc,EACd,kBAAkB,GACnB,MAAM,iCAAiC,CAAC;AAGzC,OAAO,EACL,eAAe,EACf,aAAa,GACd,MAAM,2BAA2B,CAAC;AACnC,YAAY,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAG9D,OAAO,EACL,sBAAsB,EACtB,oBAAoB,GACrB,MAAM,mCAAmC,CAAC;AAC3C,YAAY,EAAE,mBAAmB,EAAE,MAAM,mCAAmC,CAAC"}
1
+ {"version":3,"file":"dynamic.d.ts","sourceRoot":"","sources":["../src/dynamic.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;GAkBG;AAGH,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,YAAY,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAEhE,OAAO,EAAE,WAAW,EAAE,MAAM,iCAAiC,CAAC;AAC9D,YAAY,EACV,cAAc,EACd,kBAAkB,GACnB,MAAM,iCAAiC,CAAC;AAGzC,OAAO,EAAE,eAAe,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAC3E,YAAY,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAG9D,OAAO,EACL,sBAAsB,EACtB,oBAAoB,GACrB,MAAM,mCAAmC,CAAC;AAC3C,YAAY,EAAE,mBAAmB,EAAE,MAAM,mCAAmC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"dynamic-imports.d.ts","sourceRoot":"","sources":["../../src/flag/dynamic-imports.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAErD,KAAK,UAAU,GAAG;IAAE,OAAO,EAAE,aAAa,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,CAAA;CAAE,CAAC;AAEtE,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,OAAO,CAAC,UAAU,CAAC,CAkQrE,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,MAAM,OAAO,eAAe,CAAC;AAExD,eAAO,MAAM,aAAa,EAAmC,YAAY,EAAE,CAAC"}
1
+ {"version":3,"file":"dynamic-imports.d.ts","sourceRoot":"","sources":["../../src/flag/dynamic-imports.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAErD,KAAK,UAAU,GAAG;IAAE,OAAO,EAAE,aAAa,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,CAAA;CAAE,CAAC;AAEtE,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,OAAO,CAAC,UAAU,CAAC,CAobrE,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,MAAM,OAAO,eAAe,CAAC;AAExD,eAAO,MAAM,aAAa,EAAmC,YAAY,EAAE,CAAC"}
@@ -7,7 +7,9 @@ const a = {
7
7
  Andorra: () => import("./andorra.js").then((t) => ({ default: t.Andorra })),
8
8
  Angola: () => import("./angola.js").then((t) => ({ default: t.Angola })),
9
9
  Anguilla: () => import("./anguilla.js").then((t) => ({ default: t.Anguilla })),
10
- AntiguaAndBarbuda: () => import("./antigua-and-barbuda.js").then((t) => ({ default: t.AntiguaAndBarbuda })),
10
+ AntiguaAndBarbuda: () => import("./antigua-and-barbuda.js").then((t) => ({
11
+ default: t.AntiguaAndBarbuda
12
+ })),
11
13
  Argentina: () => import("./argentina.js").then((t) => ({ default: t.Argentina })),
12
14
  Armenia: () => import("./armenia.js").then((t) => ({ default: t.Armenia })),
13
15
  Aruba: () => import("./aruba.js").then((t) => ({ default: t.Aruba })),
@@ -17,7 +19,9 @@ const a = {
17
19
  AzoresIslands: () => import("./azores-islands.js").then((t) => ({ default: t.AzoresIslands })),
18
20
  Bahamas: () => import("./bahamas.js").then((t) => ({ default: t.Bahamas })),
19
21
  Bahrain: () => import("./bahrain.js").then((t) => ({ default: t.Bahrain })),
20
- BalearicIslands: () => import("./balearic-islands.js").then((t) => ({ default: t.BalearicIslands })),
22
+ BalearicIslands: () => import("./balearic-islands.js").then((t) => ({
23
+ default: t.BalearicIslands
24
+ })),
21
25
  Bangladesh: () => import("./bangladesh.js").then((t) => ({ default: t.Bangladesh })),
22
26
  Barbados: () => import("./barbados.js").then((t) => ({ default: t.Barbados })),
23
27
  BasqueCountry: () => import("./basque-country.js").then((t) => ({ default: t.BasqueCountry })),
@@ -28,12 +32,20 @@ const a = {
28
32
  Bhutan: () => import("./bhutan.js").then((t) => ({ default: t.Bhutan })),
29
33
  Bolivia: () => import("./bolivia.js").then((t) => ({ default: t.Bolivia })),
30
34
  Bonaire: () => import("./bonaire.js").then((t) => ({ default: t.Bonaire })),
31
- BosniaAndHerzegovina: () => import("./bosnia-and-herzegovina.js").then((t) => ({ default: t.BosniaAndHerzegovina })),
35
+ BosniaAndHerzegovina: () => import("./bosnia-and-herzegovina.js").then((t) => ({
36
+ default: t.BosniaAndHerzegovina
37
+ })),
32
38
  Botswana: () => import("./botswana.js").then((t) => ({ default: t.Botswana })),
33
39
  Brazil: () => import("./brazil.js").then((t) => ({ default: t.Brazil })),
34
- BritishColumbia: () => import("./british-columbia.js").then((t) => ({ default: t.BritishColumbia })),
35
- BritishIndianOceanTerritory: () => import("./british-indian-ocean-territory.js").then((t) => ({ default: t.BritishIndianOceanTerritory })),
36
- BritishVirginIslands: () => import("./british-virgin-islands.js").then((t) => ({ default: t.BritishVirginIslands })),
40
+ BritishColumbia: () => import("./british-columbia.js").then((t) => ({
41
+ default: t.BritishColumbia
42
+ })),
43
+ BritishIndianOceanTerritory: () => import("./british-indian-ocean-territory.js").then((t) => ({
44
+ default: t.BritishIndianOceanTerritory
45
+ })),
46
+ BritishVirginIslands: () => import("./british-virgin-islands.js").then((t) => ({
47
+ default: t.BritishVirginIslands
48
+ })),
37
49
  Brunei: () => import("./brunei.js").then((t) => ({ default: t.Brunei })),
38
50
  Bulgaria: () => import("./bulgaria.js").then((t) => ({ default: t.Bulgaria })),
39
51
  BurkinaFaso: () => import("./burkina-faso.js").then((t) => ({ default: t.BurkinaFaso })),
@@ -44,7 +56,9 @@ const a = {
44
56
  CanaryIslands: () => import("./canary-islands.js").then((t) => ({ default: t.CanaryIslands })),
45
57
  CapeVerde: () => import("./cape-verde.js").then((t) => ({ default: t.CapeVerde })),
46
58
  CaymanIslands: () => import("./cayman-islands.js").then((t) => ({ default: t.CaymanIslands })),
47
- CentralAfricanRepublic: () => import("./central-african-republic.js").then((t) => ({ default: t.CentralAfricanRepublic })),
59
+ CentralAfricanRepublic: () => import("./central-african-republic.js").then((t) => ({
60
+ default: t.CentralAfricanRepublic
61
+ })),
48
62
  Ceuta: () => import("./ceuta.js").then((t) => ({ default: t.Ceuta })),
49
63
  Chad: () => import("./chad.js").then((t) => ({ default: t.Chad })),
50
64
  Chile: () => import("./chile.js").then((t) => ({ default: t.Chile })),
@@ -60,29 +74,41 @@ const a = {
60
74
  Curacao: () => import("./curacao.js").then((t) => ({ default: t.Curacao })),
61
75
  Cyprus: () => import("./cyprus.js").then((t) => ({ default: t.Cyprus })),
62
76
  CzechRepublic: () => import("./czech-republic.js").then((t) => ({ default: t.CzechRepublic })),
63
- DemocraticRepublicOfCongo: () => import("./democratic-republic-of-congo.js").then((t) => ({ default: t.DemocraticRepublicOfCongo })),
77
+ DemocraticRepublicOfCongo: () => import("./democratic-republic-of-congo.js").then((t) => ({
78
+ default: t.DemocraticRepublicOfCongo
79
+ })),
64
80
  Denmark: () => import("./denmark.js").then((t) => ({ default: t.Denmark })),
65
81
  Djibouti: () => import("./djibouti.js").then((t) => ({ default: t.Djibouti })),
66
82
  Dominica: () => import("./dominica.js").then((t) => ({ default: t.Dominica })),
67
- DominicanRepublic: () => import("./dominican-republic.js").then((t) => ({ default: t.DominicanRepublic })),
83
+ DominicanRepublic: () => import("./dominican-republic.js").then((t) => ({
84
+ default: t.DominicanRepublic
85
+ })),
68
86
  EastTimor: () => import("./east-timor.js").then((t) => ({ default: t.EastTimor })),
69
87
  Ecuador: () => import("./ecuador.js").then((t) => ({ default: t.Ecuador })),
70
88
  Egypt: () => import("./egypt.js").then((t) => ({ default: t.Egypt })),
71
89
  ElSalvador: () => import("./el-salvador.js").then((t) => ({ default: t.ElSalvador })),
72
90
  England: () => import("./england.js").then((t) => ({ default: t.England })),
73
- EquatorialGuinea: () => import("./equatorial-guinea.js").then((t) => ({ default: t.EquatorialGuinea })),
91
+ EquatorialGuinea: () => import("./equatorial-guinea.js").then((t) => ({
92
+ default: t.EquatorialGuinea
93
+ })),
74
94
  Eritrea: () => import("./eritrea.js").then((t) => ({ default: t.Eritrea })),
75
95
  Estonia: () => import("./estonia.js").then((t) => ({ default: t.Estonia })),
76
96
  Ethiopia: () => import("./ethiopia.js").then((t) => ({ default: t.Ethiopia })),
77
97
  EuropeanUnion: () => import("./european-union.js").then((t) => ({ default: t.EuropeanUnion })),
78
- FalklandIslands: () => import("./falkland-islands.js").then((t) => ({ default: t.FalklandIslands })),
98
+ FalklandIslands: () => import("./falkland-islands.js").then((t) => ({
99
+ default: t.FalklandIslands
100
+ })),
79
101
  FaroeIslands: () => import("./faroe-islands.js").then((t) => ({ default: t.FaroeIslands })),
80
102
  Fiji: () => import("./fiji.js").then((t) => ({ default: t.Fiji })),
81
103
  Finland: () => import("./finland.js").then((t) => ({ default: t.Finland })),
82
104
  France: () => import("./france.js").then((t) => ({ default: t.France })),
83
- FrenchPolynesia: () => import("./french-polynesia.js").then((t) => ({ default: t.FrenchPolynesia })),
105
+ FrenchPolynesia: () => import("./french-polynesia.js").then((t) => ({
106
+ default: t.FrenchPolynesia
107
+ })),
84
108
  Gabon: () => import("./gabon.js").then((t) => ({ default: t.Gabon })),
85
- GalapagosIslands: () => import("./galapagos-islands.js").then((t) => ({ default: t.GalapagosIslands })),
109
+ GalapagosIslands: () => import("./galapagos-islands.js").then((t) => ({
110
+ default: t.GalapagosIslands
111
+ })),
86
112
  Gambia: () => import("./gambia.js").then((t) => ({ default: t.Gambia })),
87
113
  Georgia: () => import("./georgia.js").then((t) => ({ default: t.Georgia })),
88
114
  Germany: () => import("./germany.js").then((t) => ({ default: t.Germany })),
@@ -167,7 +193,9 @@ const a = {
167
193
  NorfolkIsland: () => import("./norfolk-island.js").then((t) => ({ default: t.NorfolkIsland })),
168
194
  NorthKorea: () => import("./north-korea.js").then((t) => ({ default: t.NorthKorea })),
169
195
  NorthernCyprus: () => import("./northern-cyprus.js").then((t) => ({ default: t.NorthernCyprus })),
170
- NorthernMarianasIslands: () => import("./northern-marianas-islands.js").then((t) => ({ default: t.NorthernMarianasIslands })),
196
+ NorthernMarianasIslands: () => import("./northern-marianas-islands.js").then((t) => ({
197
+ default: t.NorthernMarianasIslands
198
+ })),
171
199
  Norway: () => import("./norway.js").then((t) => ({ default: t.Norway })),
172
200
  Oman: () => import("./oman.js").then((t) => ({ default: t.Oman })),
173
201
  OrkneyIslands: () => import("./orkney-islands.js").then((t) => ({ default: t.OrkneyIslands })),
@@ -176,25 +204,37 @@ const a = {
176
204
  Palau: () => import("./palau.js").then((t) => ({ default: t.Palau })),
177
205
  Palestine: () => import("./palestine.js").then((t) => ({ default: t.Palestine })),
178
206
  Panama: () => import("./panama.js").then((t) => ({ default: t.Panama })),
179
- PapuaNewGuinea: () => import("./papua-new-guinea.js").then((t) => ({ default: t.PapuaNewGuinea })),
207
+ PapuaNewGuinea: () => import("./papua-new-guinea.js").then((t) => ({
208
+ default: t.PapuaNewGuinea
209
+ })),
180
210
  Paraguay: () => import("./paraguay.js").then((t) => ({ default: t.Paraguay })),
181
211
  Peru: () => import("./peru.js").then((t) => ({ default: t.Peru })),
182
212
  Philippines: () => import("./philippines.js").then((t) => ({ default: t.Philippines })),
183
- PitcairnIslands: () => import("./pitcairn-islands.js").then((t) => ({ default: t.PitcairnIslands })),
213
+ PitcairnIslands: () => import("./pitcairn-islands.js").then((t) => ({
214
+ default: t.PitcairnIslands
215
+ })),
184
216
  Poland: () => import("./poland.js").then((t) => ({ default: t.Poland })),
185
217
  Portugal: () => import("./portugal.js").then((t) => ({ default: t.Portugal })),
186
218
  PuertoRico: () => import("./puerto-rico.js").then((t) => ({ default: t.PuertoRico })),
187
219
  Qatar: () => import("./qatar.js").then((t) => ({ default: t.Qatar })),
188
220
  RapaNui: () => import("./rapa-nui.js").then((t) => ({ default: t.RapaNui })),
189
- RepublicOfMacedonia: () => import("./republic-of-macedonia.js").then((t) => ({ default: t.RepublicOfMacedonia })),
190
- RepublicOfTheCongo: () => import("./republic-of-the-congo.js").then((t) => ({ default: t.RepublicOfTheCongo })),
221
+ RepublicOfMacedonia: () => import("./republic-of-macedonia.js").then((t) => ({
222
+ default: t.RepublicOfMacedonia
223
+ })),
224
+ RepublicOfTheCongo: () => import("./republic-of-the-congo.js").then((t) => ({
225
+ default: t.RepublicOfTheCongo
226
+ })),
191
227
  Romania: () => import("./romania.js").then((t) => ({ default: t.Romania })),
192
228
  Rwanda: () => import("./rwanda.js").then((t) => ({ default: t.Rwanda })),
193
229
  SabaIsland: () => import("./saba-island.js").then((t) => ({ default: t.SabaIsland })),
194
- SahrawiArabDemocraticRepublic: () => import("./sahrawi-arab-democratic-republic.js").then((t) => ({ default: t.SahrawiArabDemocraticRepublic })),
230
+ SahrawiArabDemocraticRepublic: () => import("./sahrawi-arab-democratic-republic.js").then((t) => ({
231
+ default: t.SahrawiArabDemocraticRepublic
232
+ })),
195
233
  Samoa: () => import("./samoa.js").then((t) => ({ default: t.Samoa })),
196
234
  SanMarino: () => import("./san-marino.js").then((t) => ({ default: t.SanMarino })),
197
- SaoTomeAndPrince: () => import("./sao-tome-and-prince.js").then((t) => ({ default: t.SaoTomeAndPrince })),
235
+ SaoTomeAndPrince: () => import("./sao-tome-and-prince.js").then((t) => ({
236
+ default: t.SaoTomeAndPrince
237
+ })),
198
238
  Sardinia: () => import("./sardinia.js").then((t) => ({ default: t.Sardinia })),
199
239
  SaudiArabia: () => import("./saudi-arabia.js").then((t) => ({ default: t.SaudiArabia })),
200
240
  Scotland: () => import("./scotland.js").then((t) => ({ default: t.Scotland })),
@@ -217,7 +257,9 @@ const a = {
217
257
  SriLanka: () => import("./sri-lanka.js").then((t) => ({ default: t.SriLanka })),
218
258
  StBarts: () => import("./st-barts.js").then((t) => ({ default: t.StBarts })),
219
259
  StLucia: () => import("./st-lucia.js").then((t) => ({ default: t.StLucia })),
220
- StVincentAndTheGrenadines: () => import("./st-vincent-and-the-grenadines.js").then((t) => ({ default: t.StVincentAndTheGrenadines })),
260
+ StVincentAndTheGrenadines: () => import("./st-vincent-and-the-grenadines.js").then((t) => ({
261
+ default: t.StVincentAndTheGrenadines
262
+ })),
221
263
  Sudan: () => import("./sudan.js").then((t) => ({ default: t.Sudan })),
222
264
  Suriname: () => import("./suriname.js").then((t) => ({ default: t.Suriname })),
223
265
  Swaziland: () => import("./swaziland.js").then((t) => ({ default: t.Swaziland })),
@@ -233,15 +275,21 @@ const a = {
233
275
  Tokelau: () => import("./tokelau.js").then((t) => ({ default: t.Tokelau })),
234
276
  Tonga: () => import("./tonga.js").then((t) => ({ default: t.Tonga })),
235
277
  Transnistria: () => import("./transnistria.js").then((t) => ({ default: t.Transnistria })),
236
- TrinidadAndTobago: () => import("./trinidad-and-tobago.js").then((t) => ({ default: t.TrinidadAndTobago })),
278
+ TrinidadAndTobago: () => import("./trinidad-and-tobago.js").then((t) => ({
279
+ default: t.TrinidadAndTobago
280
+ })),
237
281
  Tunisia: () => import("./tunisia.js").then((t) => ({ default: t.Tunisia })),
238
282
  Turkey: () => import("./turkey.js").then((t) => ({ default: t.Turkey })),
239
283
  Turkmenistan: () => import("./turkmenistan.js").then((t) => ({ default: t.Turkmenistan })),
240
- TurksAndCaicos: () => import("./turks-and-caicos.js").then((t) => ({ default: t.TurksAndCaicos })),
284
+ TurksAndCaicos: () => import("./turks-and-caicos.js").then((t) => ({
285
+ default: t.TurksAndCaicos
286
+ })),
241
287
  Tuvalu: () => import("./tuvalu.js").then((t) => ({ default: t.Tuvalu })),
242
288
  Uganda: () => import("./uganda.js").then((t) => ({ default: t.Uganda })),
243
289
  Ukraine: () => import("./ukraine.js").then((t) => ({ default: t.Ukraine })),
244
- UnitedArabEmirates: () => import("./united-arab-emirates.js").then((t) => ({ default: t.UnitedArabEmirates })),
290
+ UnitedArabEmirates: () => import("./united-arab-emirates.js").then((t) => ({
291
+ default: t.UnitedArabEmirates
292
+ })),
245
293
  UnitedKingdom: () => import("./united-kingdom.js").then((t) => ({ default: t.UnitedKingdom })),
246
294
  UnitedNations: () => import("./united-nations.js").then((t) => ({ default: t.UnitedNations })),
247
295
  UnitedStates: () => import("./united-states.js").then((t) => ({ default: t.UnitedStates })),
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Flag icons
3
- * Auto-generated on 2026-02-06T10:08:43.835Z
3
+ * Auto-generated on 2026-02-13T14:22:55.666Z
4
4
  * Do not edit manually
5
5
  *
6
6
  * All icons are React SVG components with TypeScript support