@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 +13 -1
- package/README.md +19 -44
- package/dist/custom/star-rating.cjs +1 -1
- package/dist/custom/star-rating.d.ts.map +1 -1
- package/dist/custom/star-rating.js +27 -24
- package/dist/dynamic.d.ts +1 -1
- package/dist/dynamic.d.ts.map +1 -1
- package/dist/flag/dynamic-imports.d.ts.map +1 -1
- package/dist/flag/dynamic-imports.js +72 -24
- package/dist/flag/index.d.ts +1 -1
- package/dist/icons/lucide-exports.cjs +1 -0
- package/dist/icons/lucide-exports.d.ts +1 -5269
- package/dist/icons/lucide-exports.d.ts.map +1 -1
- package/dist/icons/lucide-exports.js +3531 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +3 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2522 -767
- package/dist/social-media/dynamic-imports.d.ts.map +1 -1
- package/dist/social-media/dynamic-imports.js +243 -81
- package/dist/social-media/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/custom/star-rating.tsx +9 -4
- package/src/dynamic.ts +1 -4
- package/src/flag/dynamic-imports.ts +435 -257
- package/src/flag/index.ts +1 -1
- package/src/icons/lucide-exports.ts +1 -3514
- package/src/index.ts +7 -11
- package/src/social-media/dynamic-imports.ts +408 -124
- package/src/social-media/index.ts +1 -1
- package/dist/icons/icon.cjs +0 -1
- package/dist/icons/icon.d.ts +0 -47
- package/dist/icons/icon.d.ts.map +0 -1
- package/dist/icons/icon.js +0 -46
- package/src/icons/icon.tsx +0 -107
|
@@ -8,263 +8,441 @@ import type { ComponentType, SVGProps } from "react";
|
|
|
8
8
|
type IconModule = { default: ComponentType<SVGProps<SVGSVGElement>> };
|
|
9
9
|
|
|
10
10
|
export const flagIconImports: Record<string, () => Promise<IconModule>> = {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
11
|
+
Afghanistan: () =>
|
|
12
|
+
import("./afghanistan.js").then((m) => ({ default: m.Afghanistan })),
|
|
13
|
+
AlandIslands: () =>
|
|
14
|
+
import("./aland-islands.js").then((m) => ({ default: m.AlandIslands })),
|
|
15
|
+
Albania: () => import("./albania.js").then((m) => ({ default: m.Albania })),
|
|
16
|
+
Algeria: () => import("./algeria.js").then((m) => ({ default: m.Algeria })),
|
|
17
|
+
AmericanSamoa: () =>
|
|
18
|
+
import("./american-samoa.js").then((m) => ({ default: m.AmericanSamoa })),
|
|
19
|
+
Andorra: () => import("./andorra.js").then((m) => ({ default: m.Andorra })),
|
|
20
|
+
Angola: () => import("./angola.js").then((m) => ({ default: m.Angola })),
|
|
21
|
+
Anguilla: () =>
|
|
22
|
+
import("./anguilla.js").then((m) => ({ default: m.Anguilla })),
|
|
23
|
+
AntiguaAndBarbuda: () =>
|
|
24
|
+
import("./antigua-and-barbuda.js").then((m) => ({
|
|
25
|
+
default: m.AntiguaAndBarbuda,
|
|
26
|
+
})),
|
|
27
|
+
Argentina: () =>
|
|
28
|
+
import("./argentina.js").then((m) => ({ default: m.Argentina })),
|
|
29
|
+
Armenia: () => import("./armenia.js").then((m) => ({ default: m.Armenia })),
|
|
30
|
+
Aruba: () => import("./aruba.js").then((m) => ({ default: m.Aruba })),
|
|
31
|
+
Australia: () =>
|
|
32
|
+
import("./australia.js").then((m) => ({ default: m.Australia })),
|
|
33
|
+
Austria: () => import("./austria.js").then((m) => ({ default: m.Austria })),
|
|
34
|
+
Azerbaijan: () =>
|
|
35
|
+
import("./azerbaijan.js").then((m) => ({ default: m.Azerbaijan })),
|
|
36
|
+
AzoresIslands: () =>
|
|
37
|
+
import("./azores-islands.js").then((m) => ({ default: m.AzoresIslands })),
|
|
38
|
+
Bahamas: () => import("./bahamas.js").then((m) => ({ default: m.Bahamas })),
|
|
39
|
+
Bahrain: () => import("./bahrain.js").then((m) => ({ default: m.Bahrain })),
|
|
40
|
+
BalearicIslands: () =>
|
|
41
|
+
import("./balearic-islands.js").then((m) => ({
|
|
42
|
+
default: m.BalearicIslands,
|
|
43
|
+
})),
|
|
44
|
+
Bangladesh: () =>
|
|
45
|
+
import("./bangladesh.js").then((m) => ({ default: m.Bangladesh })),
|
|
46
|
+
Barbados: () =>
|
|
47
|
+
import("./barbados.js").then((m) => ({ default: m.Barbados })),
|
|
48
|
+
BasqueCountry: () =>
|
|
49
|
+
import("./basque-country.js").then((m) => ({ default: m.BasqueCountry })),
|
|
50
|
+
Belgium: () => import("./belgium.js").then((m) => ({ default: m.Belgium })),
|
|
51
|
+
Belize: () => import("./belize.js").then((m) => ({ default: m.Belize })),
|
|
52
|
+
Benin: () => import("./benin.js").then((m) => ({ default: m.Benin })),
|
|
53
|
+
Bermuda: () => import("./bermuda.js").then((m) => ({ default: m.Bermuda })),
|
|
54
|
+
Bhutan: () => import("./bhutan.js").then((m) => ({ default: m.Bhutan })),
|
|
55
|
+
Bolivia: () => import("./bolivia.js").then((m) => ({ default: m.Bolivia })),
|
|
56
|
+
Bonaire: () => import("./bonaire.js").then((m) => ({ default: m.Bonaire })),
|
|
57
|
+
BosniaAndHerzegovina: () =>
|
|
58
|
+
import("./bosnia-and-herzegovina.js").then((m) => ({
|
|
59
|
+
default: m.BosniaAndHerzegovina,
|
|
60
|
+
})),
|
|
61
|
+
Botswana: () =>
|
|
62
|
+
import("./botswana.js").then((m) => ({ default: m.Botswana })),
|
|
63
|
+
Brazil: () => import("./brazil.js").then((m) => ({ default: m.Brazil })),
|
|
64
|
+
BritishColumbia: () =>
|
|
65
|
+
import("./british-columbia.js").then((m) => ({
|
|
66
|
+
default: m.BritishColumbia,
|
|
67
|
+
})),
|
|
68
|
+
BritishIndianOceanTerritory: () =>
|
|
69
|
+
import("./british-indian-ocean-territory.js").then((m) => ({
|
|
70
|
+
default: m.BritishIndianOceanTerritory,
|
|
71
|
+
})),
|
|
72
|
+
BritishVirginIslands: () =>
|
|
73
|
+
import("./british-virgin-islands.js").then((m) => ({
|
|
74
|
+
default: m.BritishVirginIslands,
|
|
75
|
+
})),
|
|
76
|
+
Brunei: () => import("./brunei.js").then((m) => ({ default: m.Brunei })),
|
|
77
|
+
Bulgaria: () =>
|
|
78
|
+
import("./bulgaria.js").then((m) => ({ default: m.Bulgaria })),
|
|
79
|
+
BurkinaFaso: () =>
|
|
80
|
+
import("./burkina-faso.js").then((m) => ({ default: m.BurkinaFaso })),
|
|
81
|
+
Burundi: () => import("./burundi.js").then((m) => ({ default: m.Burundi })),
|
|
82
|
+
Cambodia: () =>
|
|
83
|
+
import("./cambodia.js").then((m) => ({ default: m.Cambodia })),
|
|
84
|
+
Cameroon: () =>
|
|
85
|
+
import("./cameroon.js").then((m) => ({ default: m.Cameroon })),
|
|
86
|
+
Canada: () => import("./canada.js").then((m) => ({ default: m.Canada })),
|
|
87
|
+
CanaryIslands: () =>
|
|
88
|
+
import("./canary-islands.js").then((m) => ({ default: m.CanaryIslands })),
|
|
89
|
+
CapeVerde: () =>
|
|
90
|
+
import("./cape-verde.js").then((m) => ({ default: m.CapeVerde })),
|
|
91
|
+
CaymanIslands: () =>
|
|
92
|
+
import("./cayman-islands.js").then((m) => ({ default: m.CaymanIslands })),
|
|
93
|
+
CentralAfricanRepublic: () =>
|
|
94
|
+
import("./central-african-republic.js").then((m) => ({
|
|
95
|
+
default: m.CentralAfricanRepublic,
|
|
96
|
+
})),
|
|
97
|
+
Ceuta: () => import("./ceuta.js").then((m) => ({ default: m.Ceuta })),
|
|
98
|
+
Chad: () => import("./chad.js").then((m) => ({ default: m.Chad })),
|
|
99
|
+
Chile: () => import("./chile.js").then((m) => ({ default: m.Chile })),
|
|
100
|
+
China: () => import("./china.js").then((m) => ({ default: m.China })),
|
|
101
|
+
CocosIsland: () =>
|
|
102
|
+
import("./cocos-island.js").then((m) => ({ default: m.CocosIsland })),
|
|
103
|
+
Colombia: () =>
|
|
104
|
+
import("./colombia.js").then((m) => ({ default: m.Colombia })),
|
|
105
|
+
Comoros: () => import("./comoros.js").then((m) => ({ default: m.Comoros })),
|
|
106
|
+
CookIslands: () =>
|
|
107
|
+
import("./cook-islands.js").then((m) => ({ default: m.CookIslands })),
|
|
108
|
+
Corsica: () => import("./corsica.js").then((m) => ({ default: m.Corsica })),
|
|
109
|
+
CostaRica: () =>
|
|
110
|
+
import("./costa-rica.js").then((m) => ({ default: m.CostaRica })),
|
|
111
|
+
Croatia: () => import("./croatia.js").then((m) => ({ default: m.Croatia })),
|
|
112
|
+
Cuba: () => import("./cuba.js").then((m) => ({ default: m.Cuba })),
|
|
113
|
+
Curacao: () => import("./curacao.js").then((m) => ({ default: m.Curacao })),
|
|
114
|
+
Cyprus: () => import("./cyprus.js").then((m) => ({ default: m.Cyprus })),
|
|
115
|
+
CzechRepublic: () =>
|
|
116
|
+
import("./czech-republic.js").then((m) => ({ default: m.CzechRepublic })),
|
|
117
|
+
DemocraticRepublicOfCongo: () =>
|
|
118
|
+
import("./democratic-republic-of-congo.js").then((m) => ({
|
|
119
|
+
default: m.DemocraticRepublicOfCongo,
|
|
120
|
+
})),
|
|
121
|
+
Denmark: () => import("./denmark.js").then((m) => ({ default: m.Denmark })),
|
|
122
|
+
Djibouti: () =>
|
|
123
|
+
import("./djibouti.js").then((m) => ({ default: m.Djibouti })),
|
|
124
|
+
Dominica: () =>
|
|
125
|
+
import("./dominica.js").then((m) => ({ default: m.Dominica })),
|
|
126
|
+
DominicanRepublic: () =>
|
|
127
|
+
import("./dominican-republic.js").then((m) => ({
|
|
128
|
+
default: m.DominicanRepublic,
|
|
129
|
+
})),
|
|
130
|
+
EastTimor: () =>
|
|
131
|
+
import("./east-timor.js").then((m) => ({ default: m.EastTimor })),
|
|
132
|
+
Ecuador: () => import("./ecuador.js").then((m) => ({ default: m.Ecuador })),
|
|
133
|
+
Egypt: () => import("./egypt.js").then((m) => ({ default: m.Egypt })),
|
|
134
|
+
ElSalvador: () =>
|
|
135
|
+
import("./el-salvador.js").then((m) => ({ default: m.ElSalvador })),
|
|
136
|
+
England: () => import("./england.js").then((m) => ({ default: m.England })),
|
|
137
|
+
EquatorialGuinea: () =>
|
|
138
|
+
import("./equatorial-guinea.js").then((m) => ({
|
|
139
|
+
default: m.EquatorialGuinea,
|
|
140
|
+
})),
|
|
141
|
+
Eritrea: () => import("./eritrea.js").then((m) => ({ default: m.Eritrea })),
|
|
142
|
+
Estonia: () => import("./estonia.js").then((m) => ({ default: m.Estonia })),
|
|
143
|
+
Ethiopia: () =>
|
|
144
|
+
import("./ethiopia.js").then((m) => ({ default: m.Ethiopia })),
|
|
145
|
+
EuropeanUnion: () =>
|
|
146
|
+
import("./european-union.js").then((m) => ({ default: m.EuropeanUnion })),
|
|
147
|
+
FalklandIslands: () =>
|
|
148
|
+
import("./falkland-islands.js").then((m) => ({
|
|
149
|
+
default: m.FalklandIslands,
|
|
150
|
+
})),
|
|
151
|
+
FaroeIslands: () =>
|
|
152
|
+
import("./faroe-islands.js").then((m) => ({ default: m.FaroeIslands })),
|
|
153
|
+
Fiji: () => import("./fiji.js").then((m) => ({ default: m.Fiji })),
|
|
154
|
+
Finland: () => import("./finland.js").then((m) => ({ default: m.Finland })),
|
|
155
|
+
France: () => import("./france.js").then((m) => ({ default: m.France })),
|
|
156
|
+
FrenchPolynesia: () =>
|
|
157
|
+
import("./french-polynesia.js").then((m) => ({
|
|
158
|
+
default: m.FrenchPolynesia,
|
|
159
|
+
})),
|
|
160
|
+
Gabon: () => import("./gabon.js").then((m) => ({ default: m.Gabon })),
|
|
161
|
+
GalapagosIslands: () =>
|
|
162
|
+
import("./galapagos-islands.js").then((m) => ({
|
|
163
|
+
default: m.GalapagosIslands,
|
|
164
|
+
})),
|
|
165
|
+
Gambia: () => import("./gambia.js").then((m) => ({ default: m.Gambia })),
|
|
166
|
+
Georgia: () => import("./georgia.js").then((m) => ({ default: m.Georgia })),
|
|
167
|
+
Germany: () => import("./germany.js").then((m) => ({ default: m.Germany })),
|
|
168
|
+
Ghana: () => import("./ghana.js").then((m) => ({ default: m.Ghana })),
|
|
169
|
+
Gibraltar: () =>
|
|
170
|
+
import("./gibraltar.js").then((m) => ({ default: m.Gibraltar })),
|
|
171
|
+
Greece: () => import("./greece.js").then((m) => ({ default: m.Greece })),
|
|
172
|
+
Greenland: () =>
|
|
173
|
+
import("./greenland.js").then((m) => ({ default: m.Greenland })),
|
|
174
|
+
Grenada: () => import("./grenada.js").then((m) => ({ default: m.Grenada })),
|
|
175
|
+
Guam: () => import("./guam.js").then((m) => ({ default: m.Guam })),
|
|
176
|
+
Guatemala: () =>
|
|
177
|
+
import("./guatemala.js").then((m) => ({ default: m.Guatemala })),
|
|
178
|
+
Guernsey: () =>
|
|
179
|
+
import("./guernsey.js").then((m) => ({ default: m.Guernsey })),
|
|
180
|
+
GuineaBissau: () =>
|
|
181
|
+
import("./guinea-bissau.js").then((m) => ({ default: m.GuineaBissau })),
|
|
182
|
+
Guinea: () => import("./guinea.js").then((m) => ({ default: m.Guinea })),
|
|
183
|
+
Guyana: () => import("./guyana.js").then((m) => ({ default: m.Guyana })),
|
|
184
|
+
Haiti: () => import("./haiti.js").then((m) => ({ default: m.Haiti })),
|
|
185
|
+
Hawaii: () => import("./hawaii.js").then((m) => ({ default: m.Hawaii })),
|
|
186
|
+
Honduras: () =>
|
|
187
|
+
import("./honduras.js").then((m) => ({ default: m.Honduras })),
|
|
188
|
+
HongKong: () =>
|
|
189
|
+
import("./hong-kong.js").then((m) => ({ default: m.HongKong })),
|
|
190
|
+
Hungary: () => import("./hungary.js").then((m) => ({ default: m.Hungary })),
|
|
191
|
+
Iceland: () => import("./iceland.js").then((m) => ({ default: m.Iceland })),
|
|
192
|
+
India: () => import("./india.js").then((m) => ({ default: m.India })),
|
|
193
|
+
Indonesia: () =>
|
|
194
|
+
import("./indonesia.js").then((m) => ({ default: m.Indonesia })),
|
|
195
|
+
Iran: () => import("./iran.js").then((m) => ({ default: m.Iran })),
|
|
196
|
+
Iraq: () => import("./iraq.js").then((m) => ({ default: m.Iraq })),
|
|
197
|
+
Ireland: () => import("./ireland.js").then((m) => ({ default: m.Ireland })),
|
|
198
|
+
IsleOfMan: () =>
|
|
199
|
+
import("./isle-of-man.js").then((m) => ({ default: m.IsleOfMan })),
|
|
200
|
+
Israel: () => import("./israel.js").then((m) => ({ default: m.Israel })),
|
|
201
|
+
Italy: () => import("./italy.js").then((m) => ({ default: m.Italy })),
|
|
202
|
+
IvoryCoast: () =>
|
|
203
|
+
import("./ivory-coast.js").then((m) => ({ default: m.IvoryCoast })),
|
|
204
|
+
Jamaica: () => import("./jamaica.js").then((m) => ({ default: m.Jamaica })),
|
|
205
|
+
Japan: () => import("./japan.js").then((m) => ({ default: m.Japan })),
|
|
206
|
+
Jersey: () => import("./jersey.js").then((m) => ({ default: m.Jersey })),
|
|
207
|
+
Jordan: () => import("./jordan.js").then((m) => ({ default: m.Jordan })),
|
|
208
|
+
Kazakhstan: () =>
|
|
209
|
+
import("./kazakhstan.js").then((m) => ({ default: m.Kazakhstan })),
|
|
210
|
+
Kenya: () => import("./kenya.js").then((m) => ({ default: m.Kenya })),
|
|
211
|
+
Kiribati: () =>
|
|
212
|
+
import("./kiribati.js").then((m) => ({ default: m.Kiribati })),
|
|
213
|
+
Kosovo: () => import("./kosovo.js").then((m) => ({ default: m.Kosovo })),
|
|
214
|
+
Kuwait: () => import("./kuwait.js").then((m) => ({ default: m.Kuwait })),
|
|
215
|
+
Kyrgyzstan: () =>
|
|
216
|
+
import("./kyrgyzstan.js").then((m) => ({ default: m.Kyrgyzstan })),
|
|
217
|
+
Laos: () => import("./laos.js").then((m) => ({ default: m.Laos })),
|
|
218
|
+
Latvia: () => import("./latvia.js").then((m) => ({ default: m.Latvia })),
|
|
219
|
+
Lebanon: () => import("./lebanon.js").then((m) => ({ default: m.Lebanon })),
|
|
220
|
+
Lesotho: () => import("./lesotho.js").then((m) => ({ default: m.Lesotho })),
|
|
221
|
+
Liberia: () => import("./liberia.js").then((m) => ({ default: m.Liberia })),
|
|
222
|
+
Libya: () => import("./libya.js").then((m) => ({ default: m.Libya })),
|
|
223
|
+
Liechtenstein: () =>
|
|
224
|
+
import("./liechtenstein.js").then((m) => ({ default: m.Liechtenstein })),
|
|
225
|
+
Lithuania: () =>
|
|
226
|
+
import("./lithuania.js").then((m) => ({ default: m.Lithuania })),
|
|
227
|
+
Luxembourg: () =>
|
|
228
|
+
import("./luxembourg.js").then((m) => ({ default: m.Luxembourg })),
|
|
229
|
+
Macao: () => import("./macao.js").then((m) => ({ default: m.Macao })),
|
|
230
|
+
Madagascar: () =>
|
|
231
|
+
import("./madagascar.js").then((m) => ({ default: m.Madagascar })),
|
|
232
|
+
Madeira: () => import("./madeira.js").then((m) => ({ default: m.Madeira })),
|
|
233
|
+
Malawi: () => import("./malawi.js").then((m) => ({ default: m.Malawi })),
|
|
234
|
+
Malaysia: () =>
|
|
235
|
+
import("./malaysia.js").then((m) => ({ default: m.Malaysia })),
|
|
236
|
+
Maldives: () =>
|
|
237
|
+
import("./maldives.js").then((m) => ({ default: m.Maldives })),
|
|
238
|
+
Mali: () => import("./mali.js").then((m) => ({ default: m.Mali })),
|
|
239
|
+
Malta: () => import("./malta.js").then((m) => ({ default: m.Malta })),
|
|
240
|
+
MarshallIsland: () =>
|
|
241
|
+
import("./marshall-island.js").then((m) => ({ default: m.MarshallIsland })),
|
|
242
|
+
Martinique: () =>
|
|
243
|
+
import("./martinique.js").then((m) => ({ default: m.Martinique })),
|
|
244
|
+
Mauritania: () =>
|
|
245
|
+
import("./mauritania.js").then((m) => ({ default: m.Mauritania })),
|
|
246
|
+
Mauritius: () =>
|
|
247
|
+
import("./mauritius.js").then((m) => ({ default: m.Mauritius })),
|
|
248
|
+
Melilla: () => import("./melilla.js").then((m) => ({ default: m.Melilla })),
|
|
249
|
+
Mexico: () => import("./mexico.js").then((m) => ({ default: m.Mexico })),
|
|
250
|
+
Micronesia: () =>
|
|
251
|
+
import("./micronesia.js").then((m) => ({ default: m.Micronesia })),
|
|
252
|
+
Moldova: () => import("./moldova.js").then((m) => ({ default: m.Moldova })),
|
|
253
|
+
Monaco: () => import("./monaco.js").then((m) => ({ default: m.Monaco })),
|
|
254
|
+
Mongolia: () =>
|
|
255
|
+
import("./mongolia.js").then((m) => ({ default: m.Mongolia })),
|
|
256
|
+
Montenegro: () =>
|
|
257
|
+
import("./montenegro.js").then((m) => ({ default: m.Montenegro })),
|
|
258
|
+
Montserrat: () =>
|
|
259
|
+
import("./montserrat.js").then((m) => ({ default: m.Montserrat })),
|
|
260
|
+
Morocco: () => import("./morocco.js").then((m) => ({ default: m.Morocco })),
|
|
261
|
+
Mozambique: () =>
|
|
262
|
+
import("./mozambique.js").then((m) => ({ default: m.Mozambique })),
|
|
263
|
+
Myanmar: () => import("./myanmar.js").then((m) => ({ default: m.Myanmar })),
|
|
264
|
+
Namibia: () => import("./namibia.js").then((m) => ({ default: m.Namibia })),
|
|
265
|
+
Nato: () => import("./nato.js").then((m) => ({ default: m.Nato })),
|
|
266
|
+
Nauru: () => import("./nauru.js").then((m) => ({ default: m.Nauru })),
|
|
267
|
+
Nepal: () => import("./nepal.js").then((m) => ({ default: m.Nepal })),
|
|
268
|
+
Netherlands: () =>
|
|
269
|
+
import("./netherlands.js").then((m) => ({ default: m.Netherlands })),
|
|
270
|
+
NewZealand: () =>
|
|
271
|
+
import("./new-zealand.js").then((m) => ({ default: m.NewZealand })),
|
|
272
|
+
Nicaragua: () =>
|
|
273
|
+
import("./nicaragua.js").then((m) => ({ default: m.Nicaragua })),
|
|
274
|
+
Niger: () => import("./niger.js").then((m) => ({ default: m.Niger })),
|
|
275
|
+
Nigeria: () => import("./nigeria.js").then((m) => ({ default: m.Nigeria })),
|
|
276
|
+
Niue: () => import("./niue.js").then((m) => ({ default: m.Niue })),
|
|
277
|
+
NorfolkIsland: () =>
|
|
278
|
+
import("./norfolk-island.js").then((m) => ({ default: m.NorfolkIsland })),
|
|
279
|
+
NorthKorea: () =>
|
|
280
|
+
import("./north-korea.js").then((m) => ({ default: m.NorthKorea })),
|
|
281
|
+
NorthernCyprus: () =>
|
|
282
|
+
import("./northern-cyprus.js").then((m) => ({ default: m.NorthernCyprus })),
|
|
283
|
+
NorthernMarianasIslands: () =>
|
|
284
|
+
import("./northern-marianas-islands.js").then((m) => ({
|
|
285
|
+
default: m.NorthernMarianasIslands,
|
|
286
|
+
})),
|
|
287
|
+
Norway: () => import("./norway.js").then((m) => ({ default: m.Norway })),
|
|
288
|
+
Oman: () => import("./oman.js").then((m) => ({ default: m.Oman })),
|
|
289
|
+
OrkneyIslands: () =>
|
|
290
|
+
import("./orkney-islands.js").then((m) => ({ default: m.OrkneyIslands })),
|
|
291
|
+
Ossetia: () => import("./ossetia.js").then((m) => ({ default: m.Ossetia })),
|
|
292
|
+
Pakistan: () =>
|
|
293
|
+
import("./pakistan.js").then((m) => ({ default: m.Pakistan })),
|
|
294
|
+
Palau: () => import("./palau.js").then((m) => ({ default: m.Palau })),
|
|
295
|
+
Palestine: () =>
|
|
296
|
+
import("./palestine.js").then((m) => ({ default: m.Palestine })),
|
|
297
|
+
Panama: () => import("./panama.js").then((m) => ({ default: m.Panama })),
|
|
298
|
+
PapuaNewGuinea: () =>
|
|
299
|
+
import("./papua-new-guinea.js").then((m) => ({
|
|
300
|
+
default: m.PapuaNewGuinea,
|
|
301
|
+
})),
|
|
302
|
+
Paraguay: () =>
|
|
303
|
+
import("./paraguay.js").then((m) => ({ default: m.Paraguay })),
|
|
304
|
+
Peru: () => import("./peru.js").then((m) => ({ default: m.Peru })),
|
|
305
|
+
Philippines: () =>
|
|
306
|
+
import("./philippines.js").then((m) => ({ default: m.Philippines })),
|
|
307
|
+
PitcairnIslands: () =>
|
|
308
|
+
import("./pitcairn-islands.js").then((m) => ({
|
|
309
|
+
default: m.PitcairnIslands,
|
|
310
|
+
})),
|
|
311
|
+
Poland: () => import("./poland.js").then((m) => ({ default: m.Poland })),
|
|
312
|
+
Portugal: () =>
|
|
313
|
+
import("./portugal.js").then((m) => ({ default: m.Portugal })),
|
|
314
|
+
PuertoRico: () =>
|
|
315
|
+
import("./puerto-rico.js").then((m) => ({ default: m.PuertoRico })),
|
|
316
|
+
Qatar: () => import("./qatar.js").then((m) => ({ default: m.Qatar })),
|
|
317
|
+
RapaNui: () => import("./rapa-nui.js").then((m) => ({ default: m.RapaNui })),
|
|
318
|
+
RepublicOfMacedonia: () =>
|
|
319
|
+
import("./republic-of-macedonia.js").then((m) => ({
|
|
320
|
+
default: m.RepublicOfMacedonia,
|
|
321
|
+
})),
|
|
322
|
+
RepublicOfTheCongo: () =>
|
|
323
|
+
import("./republic-of-the-congo.js").then((m) => ({
|
|
324
|
+
default: m.RepublicOfTheCongo,
|
|
325
|
+
})),
|
|
326
|
+
Romania: () => import("./romania.js").then((m) => ({ default: m.Romania })),
|
|
327
|
+
Rwanda: () => import("./rwanda.js").then((m) => ({ default: m.Rwanda })),
|
|
328
|
+
SabaIsland: () =>
|
|
329
|
+
import("./saba-island.js").then((m) => ({ default: m.SabaIsland })),
|
|
330
|
+
SahrawiArabDemocraticRepublic: () =>
|
|
331
|
+
import("./sahrawi-arab-democratic-republic.js").then((m) => ({
|
|
332
|
+
default: m.SahrawiArabDemocraticRepublic,
|
|
333
|
+
})),
|
|
334
|
+
Samoa: () => import("./samoa.js").then((m) => ({ default: m.Samoa })),
|
|
335
|
+
SanMarino: () =>
|
|
336
|
+
import("./san-marino.js").then((m) => ({ default: m.SanMarino })),
|
|
337
|
+
SaoTomeAndPrince: () =>
|
|
338
|
+
import("./sao-tome-and-prince.js").then((m) => ({
|
|
339
|
+
default: m.SaoTomeAndPrince,
|
|
340
|
+
})),
|
|
341
|
+
Sardinia: () =>
|
|
342
|
+
import("./sardinia.js").then((m) => ({ default: m.Sardinia })),
|
|
343
|
+
SaudiArabia: () =>
|
|
344
|
+
import("./saudi-arabia.js").then((m) => ({ default: m.SaudiArabia })),
|
|
345
|
+
Scotland: () =>
|
|
346
|
+
import("./scotland.js").then((m) => ({ default: m.Scotland })),
|
|
347
|
+
Senegal: () => import("./senegal.js").then((m) => ({ default: m.Senegal })),
|
|
348
|
+
Serbia: () => import("./serbia.js").then((m) => ({ default: m.Serbia })),
|
|
349
|
+
Seychelles: () =>
|
|
350
|
+
import("./seychelles.js").then((m) => ({ default: m.Seychelles })),
|
|
351
|
+
SierraLeone: () =>
|
|
352
|
+
import("./sierra-leone.js").then((m) => ({ default: m.SierraLeone })),
|
|
353
|
+
Singapore: () =>
|
|
354
|
+
import("./singapore.js").then((m) => ({ default: m.Singapore })),
|
|
355
|
+
SintEustatius: () =>
|
|
356
|
+
import("./sint-eustatius.js").then((m) => ({ default: m.SintEustatius })),
|
|
357
|
+
SintMaarten: () =>
|
|
358
|
+
import("./sint-maarten.js").then((m) => ({ default: m.SintMaarten })),
|
|
359
|
+
Slovakia: () =>
|
|
360
|
+
import("./slovakia.js").then((m) => ({ default: m.Slovakia })),
|
|
361
|
+
Slovenia: () =>
|
|
362
|
+
import("./slovenia.js").then((m) => ({ default: m.Slovenia })),
|
|
363
|
+
SolomonIslands: () =>
|
|
364
|
+
import("./solomon-islands.js").then((m) => ({ default: m.SolomonIslands })),
|
|
365
|
+
Somalia: () => import("./somalia.js").then((m) => ({ default: m.Somalia })),
|
|
366
|
+
Somaliland: () =>
|
|
367
|
+
import("./somaliland.js").then((m) => ({ default: m.Somaliland })),
|
|
368
|
+
SouthAfrica: () =>
|
|
369
|
+
import("./south-africa.js").then((m) => ({ default: m.SouthAfrica })),
|
|
370
|
+
SouthKorea: () =>
|
|
371
|
+
import("./south-korea.js").then((m) => ({ default: m.SouthKorea })),
|
|
372
|
+
SouthSudan: () =>
|
|
373
|
+
import("./south-sudan.js").then((m) => ({ default: m.SouthSudan })),
|
|
374
|
+
Spain: () => import("./spain.js").then((m) => ({ default: m.Spain })),
|
|
375
|
+
SriLanka: () =>
|
|
376
|
+
import("./sri-lanka.js").then((m) => ({ default: m.SriLanka })),
|
|
377
|
+
StBarts: () => import("./st-barts.js").then((m) => ({ default: m.StBarts })),
|
|
378
|
+
StLucia: () => import("./st-lucia.js").then((m) => ({ default: m.StLucia })),
|
|
379
|
+
StVincentAndTheGrenadines: () =>
|
|
380
|
+
import("./st-vincent-and-the-grenadines.js").then((m) => ({
|
|
381
|
+
default: m.StVincentAndTheGrenadines,
|
|
382
|
+
})),
|
|
383
|
+
Sudan: () => import("./sudan.js").then((m) => ({ default: m.Sudan })),
|
|
384
|
+
Suriname: () =>
|
|
385
|
+
import("./suriname.js").then((m) => ({ default: m.Suriname })),
|
|
386
|
+
Swaziland: () =>
|
|
387
|
+
import("./swaziland.js").then((m) => ({ default: m.Swaziland })),
|
|
388
|
+
Sweden: () => import("./sweden.js").then((m) => ({ default: m.Sweden })),
|
|
389
|
+
Switzerland: () =>
|
|
390
|
+
import("./switzerland.js").then((m) => ({ default: m.Switzerland })),
|
|
391
|
+
Syria: () => import("./syria.js").then((m) => ({ default: m.Syria })),
|
|
392
|
+
Taiwan: () => import("./taiwan.js").then((m) => ({ default: m.Taiwan })),
|
|
393
|
+
Tajikistan: () =>
|
|
394
|
+
import("./tajikistan.js").then((m) => ({ default: m.Tajikistan })),
|
|
395
|
+
Tanzania: () =>
|
|
396
|
+
import("./tanzania.js").then((m) => ({ default: m.Tanzania })),
|
|
397
|
+
Thailand: () =>
|
|
398
|
+
import("./thailand.js").then((m) => ({ default: m.Thailand })),
|
|
399
|
+
Tibet: () => import("./tibet.js").then((m) => ({ default: m.Tibet })),
|
|
400
|
+
Togo: () => import("./togo.js").then((m) => ({ default: m.Togo })),
|
|
401
|
+
Tokelau: () => import("./tokelau.js").then((m) => ({ default: m.Tokelau })),
|
|
402
|
+
Tonga: () => import("./tonga.js").then((m) => ({ default: m.Tonga })),
|
|
403
|
+
Transnistria: () =>
|
|
404
|
+
import("./transnistria.js").then((m) => ({ default: m.Transnistria })),
|
|
405
|
+
TrinidadAndTobago: () =>
|
|
406
|
+
import("./trinidad-and-tobago.js").then((m) => ({
|
|
407
|
+
default: m.TrinidadAndTobago,
|
|
408
|
+
})),
|
|
409
|
+
Tunisia: () => import("./tunisia.js").then((m) => ({ default: m.Tunisia })),
|
|
410
|
+
Turkey: () => import("./turkey.js").then((m) => ({ default: m.Turkey })),
|
|
411
|
+
Turkmenistan: () =>
|
|
412
|
+
import("./turkmenistan.js").then((m) => ({ default: m.Turkmenistan })),
|
|
413
|
+
TurksAndCaicos: () =>
|
|
414
|
+
import("./turks-and-caicos.js").then((m) => ({
|
|
415
|
+
default: m.TurksAndCaicos,
|
|
416
|
+
})),
|
|
417
|
+
Tuvalu: () => import("./tuvalu.js").then((m) => ({ default: m.Tuvalu })),
|
|
418
|
+
Uganda: () => import("./uganda.js").then((m) => ({ default: m.Uganda })),
|
|
419
|
+
Ukraine: () => import("./ukraine.js").then((m) => ({ default: m.Ukraine })),
|
|
420
|
+
UnitedArabEmirates: () =>
|
|
421
|
+
import("./united-arab-emirates.js").then((m) => ({
|
|
422
|
+
default: m.UnitedArabEmirates,
|
|
423
|
+
})),
|
|
424
|
+
UnitedKingdom: () =>
|
|
425
|
+
import("./united-kingdom.js").then((m) => ({ default: m.UnitedKingdom })),
|
|
426
|
+
UnitedNations: () =>
|
|
427
|
+
import("./united-nations.js").then((m) => ({ default: m.UnitedNations })),
|
|
428
|
+
UnitedStates: () =>
|
|
429
|
+
import("./united-states.js").then((m) => ({ default: m.UnitedStates })),
|
|
430
|
+
Uruguay: () => import("./uruguay.js").then((m) => ({ default: m.Uruguay })),
|
|
431
|
+
UzbekistaN: () =>
|
|
432
|
+
import("./uzbekista-n.js").then((m) => ({ default: m.UzbekistaN })),
|
|
433
|
+
Vanuatu: () => import("./vanuatu.js").then((m) => ({ default: m.Vanuatu })),
|
|
434
|
+
VaticanCity: () =>
|
|
435
|
+
import("./vatican-city.js").then((m) => ({ default: m.VaticanCity })),
|
|
436
|
+
Venezuela: () =>
|
|
437
|
+
import("./venezuela.js").then((m) => ({ default: m.Venezuela })),
|
|
438
|
+
Vietnam: () => import("./vietnam.js").then((m) => ({ default: m.Vietnam })),
|
|
439
|
+
VirginIslands: () =>
|
|
440
|
+
import("./virgin-islands.js").then((m) => ({ default: m.VirginIslands })),
|
|
441
|
+
Wales: () => import("./wales.js").then((m) => ({ default: m.Wales })),
|
|
442
|
+
Yemen: () => import("./yemen.js").then((m) => ({ default: m.Yemen })),
|
|
443
|
+
Zambia: () => import("./zambia.js").then((m) => ({ default: m.Zambia })),
|
|
444
|
+
Zimbabwe: () =>
|
|
445
|
+
import("./zimbabwe.js").then((m) => ({ default: m.Zimbabwe })),
|
|
268
446
|
};
|
|
269
447
|
|
|
270
448
|
export type FlagIconName = keyof typeof flagIconImports;
|