-
Notifications
You must be signed in to change notification settings - Fork 306
Expand file tree
/
Copy pathindex.tsx
More file actions
1035 lines (1003 loc) · 58.2 KB
/
index.tsx
File metadata and controls
1035 lines (1003 loc) · 58.2 KB
1
2
3
4
5
6
7
8
9
10
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import React, { lazy, Suspense } from "react";
export { ReactComponent as AppSnapshotIcon } from "./v1/app-snapshot.svg";
export { ReactComponent as ArchiveIcon } from "./remix/archive-fill.svg";
export { ReactComponent as HookCompDropIcon } from "./v1/hook-comp-drop.svg";
export { ReactComponent as HookCompIcon } from "./v1/hook-comp.svg";
export { ReactComponent as JsGrayIcon } from "./v1/icon-Js-Gray.svg";
export { ReactComponent as JsColorsIcon } from "./v1/icon-Js-colors.svg";
export { ReactComponent as AdminIcon } from "./v1/icon-admin.svg";
export { ReactComponent as AlignVerticalCent } from "./v1/icon-align-vertical-center.svg";
export { ReactComponent as AppEditIcon } from "./v1/icon-app-edit.svg";
export { ReactComponent as AuditAppIcon } from "./v1/icon-audit-app.svg";
export { ReactComponent as AuditDbIcon } from "./v1/icon-audit-db.svg";
export { ReactComponent as TreeFoldIcon } from "./v1/icon-audit-fold.svg";
export { ReactComponent as AuditQueryIcon } from "./v1/icon-audit-query.svg";
export { ReactComponent as AuditUserIcon } from "./v1/icon-audit-user.svg";
export { ReactComponent as AuditFolderIcon } from "./v1/icon-audit-folder.svg";
export { ReactComponent as CaptchaIcon } from "./v1/icon-captcha.svg";
export { ReactComponent as CheckboxIcon } from "./v1/icon-checkbox.svg";
export { ReactComponent as CheckoutIcon } from "./v1/icon-checkout.svg";
export { ReactComponent as ClickLinkIcon } from "./v1/icon-clickLink.svg";
export { ReactComponent as CloseEyeIcon } from "./v1/icon-closeEye.svg";
export { ReactComponent as CodeEditorCloseIcon } from "./v1/icon-code-editor-close.svg";
export { ReactComponent as CodeEditorOpenIcon } from "./v1/icon-code-editor-open.svg";
export { ReactComponent as CodeEditorPinnedIcon} from "./remix/pushpin-2-fill.svg"
export { ReactComponent as CodeEditorUnPinnedIcon} from "./remix/pushpin-line.svg"
export { ReactComponent as ColorHexIcon } from "./v1/icon-colorHex.svg";
export { ReactComponent as ContainerDragIcon } from "./v1/icon-container-drag.svg";
export { ReactComponent as CopyIcon } from "./v1/icon-copy.svg";
export { ReactComponent as CreateModuleIcon } from "./v1/icon-create-module.svg";
export { ReactComponent as PrevIcon } from "./v1/icon-date-prev.svg";
export { ReactComponent as SuperPrevIcon } from "./v1/icon-date-super-prev.svg";
export { ReactComponent as DragWhiteIcon } from "./v1/icon-drag-white.svg";
export { ReactComponent as EmptyDataIcon } from "./v1/icon-empty-data.svg";
export { ReactComponent as FlokcloseIcon } from "./v1/icon-flokclose.svg";
export { ReactComponent as FoldedIcon } from "./v1/icon-folded.svg";
export { ReactComponent as GroupIcon } from "./v1/icon-group.svg";
export { ReactComponent as HelpIcon } from "./v1/icon-help.svg";
export { ReactComponent as LockIcon } from "./v1/icon-lock.svg";
export { ReactComponent as MembersIcon } from "./v1/icon-members.svg";
export { ReactComponent as MoreActionIcon } from "./v1/icon-more-action.svg";
export { ReactComponent as MultiselectTagIcon } from "./v1/icon-multiselect-tag.svg";
export { ReactComponent as MustFillStarIcon } from "./v1/icon-must-fill-star.svg";
export { ReactComponent as NofileIcon } from "./v1/icon-nofile.svg";
export { ReactComponent as OmitIcon } from "./v1/icon-omit.svg";
export { ReactComponent as OpenEyeIcon } from "./v1/icon-openEye.svg";
export { ReactComponent as PasswordIcon } from "./v1/icon-password.svg";
export { ReactComponent as RadioCheckedIcon } from "./v1/icon-radio-checked.svg";
export { ReactComponent as RequiredIcon } from "./v1/icon-required.svg";
export { ReactComponent as AttributeIcon } from "./v1/icon-right-attribute.svg";
export { ReactComponent as InsertIcon } from "./v1/icon-right-insert.svg";
export { ReactComponent as ShowBorderIcon } from "./v1/icon-show-border.svg";
export { ReactComponent as SpaceIcon } from "./v1/icon-space.svg";
export { ReactComponent as StarIcon } from "./v1/icon-star.svg";
export { ReactComponent as SuperUserIcon } from "./v1/icon-super-user.svg";
export { ReactComponent as SwitchCheckedIcon } from "./v1/icon-switch-checked.svg";
export { ReactComponent as TextEditIcon } from "./v1/icon-text-edit.svg";
export { ReactComponent as TriangleIcon } from "./v1/icon-triangle.svg";
export { ReactComponent as TypographyIcon } from "./v1/icon-typography.svg";
export { ReactComponent as UnfoldWhiteIcon } from "./v1/icon-unfold-white.svg";
export { ReactComponent as UnfoldIcon } from "./v1/icon-unfold.svg";
export { ReactComponent as WarningWhiteIcon } from "./v1/icon-warning-white.svg";
export { ReactComponent as WarningIcon } from "./v1/icon-warning.svg";
export { ReactComponent as WidthDragIcon } from "./v1/icon-widthDrag.svg";
export { ReactComponent as ManyCheckboxIcon } from "./v1/icon-many-checkbox.svg";
export { ReactComponent as Layout } from "./v1/icon-ShowLayout.svg";
export { ReactComponent as Left } from "./v1/icon-ShowLeft.svg";
export { ReactComponent as Middle } from "./v1/icon-ShowMiddle.svg";
export { ReactComponent as Right } from "./v1/icon-ShowRight.svg";
export { ReactComponent as DeployIcon } from "./v1/icon-rocket.svg";
export { ReactComponent as ExportIcon } from "./v1/icon-export.svg";
export { ReactComponent as BluePlusIcon } from "./v1/icon-blue-add.svg";
export { ReactComponent as PencilIcon } from "./v1/icon-pencil.svg";
export { ReactComponent as DragIcon } from "./v1/icon-drag.svg";
export { ReactComponent as PointIcon } from "./v1/icon-three-point.svg";
export { ReactComponent as AlignJustify } from "./v1/icon-align-justify.svg";
export { ReactComponent as AlignRight } from "./v1/icon-align-right.svg";
export { ReactComponent as AlignCenter } from "./v1/icon-align-center.svg";
export { ReactComponent as AlignLeft } from "./v1/icon-align-left.svg";
export { ReactComponent as AlignClose } from "./v1/icon-align-close.svg";
export { ReactComponent as AlignTop } from "./v1/icon-align-top.svg";
export { ReactComponent as AlignBottom } from "./v1/icon-align-bottom.svg";
export { ReactComponent as AddIcon } from "./v1/icon-add.svg";
export { ReactComponent as ImportAppIcon } from "./v1/icon-app-import.svg";
export { ReactComponent as ImportIcon } from "./v1/icon-import.svg";
export { ReactComponent as ImportIconV2 } from "./v1/icon-import-v2.svg";
export { ReactComponent as DatasourceIcon } from "./v1/icon-datasource.svg";
export { ReactComponent as QueryLibraryIcon } from "./remix/braces-line.svg";
export { ReactComponent as TransformerIcon } from "./v1/icon-transformer.svg";
export { ReactComponent as TempStateIcon } from "./v1/icon-temp-state.svg";
export { ReactComponent as IconDep } from "./v1/icon-style-dep.svg";
export { ReactComponent as IconRadius } from "./v1/icon-style-border-radius.svg";
export { ReactComponent as IconReset } from "./v1/icon-style-reset.svg";
export { ReactComponent as PackUpIcon } from "./v1/icon-Pack-up.svg";
export { ReactComponent as SearchIcon } from "./v1/icon-Search.svg";
export { ReactComponent as SearchOutlinedIcon } from "./v1/icon-SearchOutlined.svg";
export { ReactComponent as FilterIcon } from "./v1/icon-filter.svg";
export { ReactComponent as DownloadIcon } from "./v1/icon-download.svg";
export { ReactComponent as DownloadBoldIcon } from "./v1/icon-download-bold.svg";
export { ReactComponent as DownloadedIcon } from "./v1/icon-downloaded.svg";
export { ReactComponent as SettingIcon } from "./v1/icon-setting.svg";
export { ReactComponent as RefreshIcon } from "./v1/icon-refresh.svg";
export { ReactComponent as DeleteIcon } from "./v1/icon-recycle-bin.svg";
export { ReactComponent as DeleteInputIcon } from "./v1/icon-deleteinput.svg";
export { ReactComponent as UpgradeIcon } from "./v1/icon-upgrade.svg";
export { ReactComponent as QuestionIcon } from "./v1/icon-question.svg";
export { ReactComponent as CloseIcon } from "./v1/icon-close.svg";
export { ReactComponent as SuccessIcon } from "./v1/icon-success.svg";
export { ReactComponent as ErrorIcon } from "./v1/icon-err-warning.svg";
export { ReactComponent as DocIcon } from "./v1/icon-tutorial.svg";
export { ReactComponent as DocBoldIcon } from "./v1/icon-tutorial-bold.svg";
export { ReactComponent as LabIcon } from "./v1/icon-laboratory.svg";
export { ReactComponent as ArrowIcon } from "./v1/icon-arrow.svg";
export { ReactComponent as ArrowSolidIcon } from "./v1/icon-arrow-solid.svg";
// Home Section
export { ReactComponent as PlusIcon } from "./v1/icon-plus.svg";
export { ReactComponent as ApplicationDocIcon } from "./v2/app-m.svg";
export { ReactComponent as ModuleMenuIcon } from "./v2/module-m.svg";
export { ReactComponent as ModuleIcon } from "./v2/module-m.svg";
export { ReactComponent as ModuleDocIcon } from "./v2/module-m.svg";
export { ReactComponent as NavDocIcon } from "./v2/entry-page-m.svg";
export { ReactComponent as FolderIcon } from "./remix/folder-6-line.svg";
export { ReactComponent as AllTypesIcon } from "./v1/icon-application-all.svg";
export { ReactComponent as InviteUserIcon } from "./v1/icon-application-invite-user.svg";
export { ReactComponent as HomeEmptyIcon } from "./v1/icon-application-empty.svg";
export { ReactComponent as HomeListIcon } from "./v1/icon-application-list.svg";
export { ReactComponent as HomeCardIcon } from "./v1/icon-application-card.svg";
export { ReactComponent as APIDocsIcon } from "./remix/instance-line.svg";
export { ReactComponent as SubscriptionIcon } from "./remix/award-fill.svg";
export { ReactComponent as SupportIcon } from "./remix/user-heart-line.svg";
// export { ReactComponent as AllAppIcon } from "./v1/icon-all-app.svg";
// EE
export { ReactComponent as EnvironmentsIcon } from "./remix/git-branch-line.svg";
export { ReactComponent as UsageStatisticsIcon } from "./remix/line-chart-line.svg";
export { ReactComponent as AutitLogsIcon } from "./remix/user-community-line.svg";
export { ReactComponent as BrandingIcon } from "./remix/paint-brush-line.svg";
// Data Sources
export { ReactComponent as MysqlIcon } from "./v1/icon-query-MySQL.svg";
export { ReactComponent as MongoIcon } from "./v1/icon-query-MongoDB.svg";
export { ReactComponent as PostgresIcon } from "./v1/icon-query-postgres.svg";
export { ReactComponent as RedisIcon } from "./v1/icon-query-Redis.svg";
export { ReactComponent as MSSQLIcon } from "./v1/icon-query-mssql.svg";
export { ReactComponent as SMTPIcon } from "./v1/icon-query-SMTP.svg";
export { ReactComponent as OracleIcon } from "./v1/icon-query-OracleDB.svg";
export { ReactComponent as ClickHouseIcon } from "./v1/icon-query-ClickHouse.svg";
export { ReactComponent as GoogleSheetsIcon } from "./v1/icon-query-GoogleSheets.svg";
export { ReactComponent as GraphqlIcon } from "./v1/icon-query-Graphql.svg";
export { ReactComponent as AlasqlIcon } from "./remix/database-2-line.svg";
export { ReactComponent as StreamApiIcon } from "./remix/rfid-line.svg";
export { ReactComponent as SnowflakeIcon } from "./v1/icon-query-snowflake.svg";
export { ReactComponent as MariaDBIcon } from "./v1/icon-query-MariaDB.svg";
// Data Queries
export { ReactComponent as DataResponderIcon } from "./v1/icon-query-data-responder.svg";
export { ReactComponent as RestApiIcon } from "./v1/icon-query-API.svg";
export { ReactComponent as DeleteApiIcon } from "./v1/icon-query-delete.svg";
export { ReactComponent as GetApiIcon } from "./v1/icon-query-get.svg";
export { ReactComponent as PatchApiIcon } from "./v1/icon-query-patch.svg";
export { ReactComponent as PostApiIcon } from "./v1/icon-query-post.svg";
export { ReactComponent as PutApiIcon } from "./v1/icon-query-put.svg";
export { ReactComponent as OptionsApiIcon } from "./v1/icon-query-options.svg";
export { ReactComponent as HeadApiIcon } from "./v1/icon-query-head.svg";
export { ReactComponent as TraceApiIcon } from "./v1/icon-query-trace.svg";
export { ReactComponent as JSIcon } from "./v1/icon-query-JS.svg";
export { ReactComponent as LowcoderQueryIcon } from "./v1/icon-query-lowcoder.svg";
export { ReactComponent as EsIcon } from "./v1/icon-query-ElasticSearch.svg";
export { ReactComponent as ResetIcon } from "./v1/icon-style-reset.svg";
export { ReactComponent as EditIcon } from "./v1/icon-edit.svg";
export { ReactComponent as EditableIcon } from "./v1/icon-editable.svg";
export { ReactComponent as LeftStateIcon } from "./remix/node-tree.svg";
export {ReactComponent as StarSmileIcon} from "./remix/star-smile-line.svg";
export {ReactComponent as Timer2Icon} from "./remix/timer-2-line.svg";
export {ReactComponent as TimerFlashIcon} from "./remix/timer-flash-line.svg";
export {ReactComponent as RefreshLineIcon} from "./remix/refresh-line.svg";
export { ReactComponent as LeftSettingIcon } from "./remix/tools-fill.svg";
export { ReactComponent as LeftLayersIcon } from "./remix/stack-line.svg";
export { ReactComponent as LeftHelpIcon } from "./v1/icon-left-help.svg";
export { ReactComponent as LeftPreloadIcon } from "./v1/icon-left-preload.svg";
export { ReactComponent as LeftColorPaletteIcon } from "./remix/palette-line.svg";
export { ReactComponent as LeftJSSettingIcon } from "./remix/javascript-line.svg";
export { ReactComponent as HomeSettingsIcon } from "./v1/icon-home-settings.svg";
export { ReactComponent as HomeSettingsActiveIcon } from "./v1/icon-home-settings-active.svg";
export { ReactComponent as HelpGithubIcon } from "./v1/icon-help-github.svg";
export { ReactComponent as HelpDiscordIcon } from "./v1/icon-help-discord.svg";
export { ReactComponent as LeftOpen } from "./v1/icon-left-comp-open.svg";
export { ReactComponent as LeftClose } from "./v1/icon-left-comp-close.svg";
export { ReactComponent as MaterialUploadIcon } from "./v1/icon-material-upload.svg";
export { ReactComponent as UndoIcon } from "./v1/icon-undo.svg";
export { ReactComponent as ManualIcon } from "./v1/icon-manual.svg";
export { ReactComponent as WarnIcon } from "./v1/icon-warn.svg";
export { ReactComponent as SyncManualIcon } from "./v1/icon-sync-manual.svg";
export { ReactComponent as DangerIcon } from "./v1/icon-danger.svg";
export { ReactComponent as TableMinusIcon } from "./v1/icon-table-minus.svg";
export { ReactComponent as TablePlusIcon } from "./v1/icon-table-plus.svg";
export { ReactComponent as MobileAppIcon } from "./v1/icon-mobile-app.svg";
export { ReactComponent as MobileNavIcon } from "./v1/icon-navigation-mobile.svg";
export { ReactComponent as PcNavIcon } from "./v1/icon-navigation-pc.svg";
export { ReactComponent as UnLockIcon } from "./v1/icon-unlock.svg";
export { ReactComponent as CalendarDeleteIcon } from "./v1/icon-calendar-delete.svg";
export { ReactComponent as TableCheckedIcon } from "./v1/icon-table-checked.svg";
export { ReactComponent as TableUnCheckedIcon } from "./v1/icon-table-boolean-false.svg";
export { ReactComponent as FileFolderIcon } from "./v1/icon-editor-folder.svg";
export { ReactComponent as ExpandIcon } from "./v1/icon-expand.svg";
export { ReactComponent as CompressIcon } from "./v1/icon-compress.svg";
export { ReactComponent as TableCellsIcon } from "./v1/icon-table-cells.svg";
export { ReactComponent as TableColumnVisibilityIcon } from "./remix/layout-column-line.svg";
// Style Props
export { ReactComponent as WidthIcon } from "./v1/icon-width.svg";
export { ReactComponent as TextSizeIcon } from "./remix/font-size.svg";
export { ReactComponent as TextTransformationIcon } from "./remix/font-size-2.svg";
export { ReactComponent as FontFamilyIcon } from "./remix/font-sans-serif.svg";
export { ReactComponent as TextWeightIcon } from "./remix/bold.svg";
export { ReactComponent as TextDecorationIcon } from "./remix/underline.svg";
export { ReactComponent as TextStyleIcon } from "./remix/italic.svg";
export { ReactComponent as BorderWidthIcon } from "./remix/space.svg";
export { ReactComponent as BorderStyleIcon } from "./remix/separator.svg";
export { ReactComponent as RotationIcon } from "./remix/clockwise-line.svg";
export { ReactComponent as BorderRadiusIcon } from "./remix/rounded-corner.svg";
export { ReactComponent as ShadowIcon } from "./remix/shadow-line.svg";
export { ReactComponent as OpacityIcon } from "./remix/contrast-drop-2-line.svg";
export { ReactComponent as AnimationIcon } from "./remix/loader-line.svg";
export { ReactComponent as LineHeightIcon } from "./remix/line-height.svg";
export { ReactComponent as LeftInfoLine } from "./remix/information-line.svg";
export { ReactComponent as LeftInfoFill } from "./remix/information-fill.svg";
export { ReactComponent as LeftShow } from "./remix/eye-off-line.svg";
export { ReactComponent as LeftHide } from "./remix/eye-line.svg";
export { ReactComponent as LeftLock } from "./remix/lock-line.svg";
export { ReactComponent as LeftUnlock } from "./remix/lock-unlock-line.svg";
export { ReactComponent as UserGroupIcon } from "./remix/group-line.svg";
export { ReactComponent as UserIcon } from "./remix/user-line.svg";
export { ReactComponent as UserAddIcon } from "./remix/user-add-line.svg";
export { ReactComponent as UserDeleteIcon } from "./remix/user-unfollow-line.svg";
export { ReactComponent as UserShieldIcon } from "./remix/shield-user-line.svg";
export { ReactComponent as ThemeIcon } from "./remix/palette-line.svg";
export { ReactComponent as AppsIcon } from "./remix/apps-2-line.svg";
export { ReactComponent as WorkspacesIcon } from "./remix/hotel-line.svg";
export { ReactComponent as HomeIcon } from "./remix/home-3-line.svg";
export { ReactComponent as NewsIcon } from "./remix/megaphone-line.svg";
export { ReactComponent as HomeModuleIcon } from "./remix/focus-mode.svg";
export { ReactComponent as HomeQueryLibraryIcon } from "./remix/braces-line.svg";
export { ReactComponent as HomeDataSourceIcon } from "./remix/database-2-line.svg";
export { ReactComponent as RecyclerIcon } from "./remix/delete-bin-line.svg";
export { ReactComponent as MarketplaceIcon } from "./v1/icon-application-marketplace.svg";
export { ReactComponent as FavoritesIcon } from "./v1/icon-application-favorites.svg";
export { ReactComponent as HomeSettingIcon } from "./remix/settings-4-line.svg";
export { ReactComponent as EnterpriseIcon } from "./remix/shield-star-line.svg";
export { ReactComponent as VerticalIcon } from "./remix/vertical.svg";
export { ReactComponent as HorizontalIcon } from "./remix/horizontal.svg";
// Social Sharing
export { ReactComponent as TwitterIcon } from "./remix/twitter-x-line.svg";
export { ReactComponent as LinkedInIcon } from "./remix/linkedin-box-fill.svg";
export { ReactComponent as FacebookIcon } from "./remix/facebook-circle-fill.svg";
export { ReactComponent as MediumIcon } from "./remix/medium-fill.svg";
export { ReactComponent as RedditIcon } from "./remix/reddit-line.svg";
// components
// small
export { ReactComponent as LeftCommon } from "./v1/icon-left-comp-common.svg"; // generic
export { ReactComponent as AvatarCompIconSmall } from "./v2/avatar-s.svg";
export { ReactComponent as AvatarGroupCompIconSmall } from "./v2/avatargroup-s.svg";
export { ReactComponent as AudioCompIconSmall } from "./v2/audio-player-s.svg";
export { ReactComponent as AutoCompleteCompIconSmall } from "./v2/auto-complete-input-s.svg"; // new
export { ReactComponent as ButtonCompIconSmall } from "./v2/button-s.svg";
export { ReactComponent as IconButtonCompIconSmall } from "./v2/icon-button-s.svg"; // new
export { ReactComponent as CardCompIconSmall } from "./v2/card-layout-s.svg";
export { ReactComponent as CalendarCompIconSmall } from "./v2/calendar-s.svg";
export { ReactComponent as CascaderCompIconSmall } from "./v2/cascader-s.svg";
export { ReactComponent as CarouselCompIconSmall } from "./v2/image-carousel-s.svg"; // new
export { ReactComponent as ChartCompIconSmall } from "./v2/pie-chart-s.svg";
export { ReactComponent as CheckboxCompIconSmall } from "./v2/checkbox-s.svg";
export { ReactComponent as ColorPickerCompIconSmall } from "./v2/colorpicker-s.svg"; // new
export { ReactComponent as CollapsibleContainerCompIconSmall } from "./v2/collapsible-container-s.svg"; // new
export { ReactComponent as ColumnLayoutCompIconSmall } from "./v2/column-layout-s.svg"; // new
export { ReactComponent as CommentCompIconSmall } from "./v2/comment-s.svg";
export { ReactComponent as ContainerCompIconSmall } from "./v2/container-s.svg";
export { ReactComponent as CustomCompIconSmall } from "./v2/custom-code-s.svg"; // new
export { ReactComponent as DateCompIconSmall } from "./v2/date-select-s.svg";
export { ReactComponent as DateRangeCompIconSmall } from "./v2/date-range-select-s.svg"; // new
export { ReactComponent as DividerCompIconSmall } from "./v2/divider-s.svg";
export { ReactComponent as DrawerCompIconSmall } from "./v2/drawer-s.svg";
export { ReactComponent as DropdownCompIconSmall } from "./v2/dropdown-s.svg"; // new
export { ReactComponent as UploadCompIconSmall } from "./v2/file-upload-s.svg";
export { ReactComponent as FileViewerCompIconSmall } from "./v2/file-viewer-s.svg";
export { ReactComponent as FloatingButtonCompIconSmall } from "./v2/floating-button-s.svg"; // new
export { ReactComponent as FloatingTextCompIconSmall } from "./v2/floating-text-layout-s.svg"; // new
export { ReactComponent as FormCompIconSmall } from "./v2/form-s.svg";
export { ReactComponent as GridCompIconSmall } from "./v2/grid-view-s.svg"; // new
export { ReactComponent as IconCompIconSmall } from "./v2/icon-s.svg"; // new
export { ReactComponent as IFrameCompIconSmall } from "./v2/iframe-s.svg";
export { ReactComponent as ImageEditorCompIconSmall } from "./v2/image-editor-s.svg"; // new
export { ReactComponent as ImageCompIconSmall } from "./v2/image-s.svg";
export { ReactComponent as InputCompIconSmall } from "./v2/input-s.svg";
export { ReactComponent as JsonEditorCompIconSmall } from "./v2/json-editor-s.svg";
export { ReactComponent as JsonExplorerCompIconSmall } from "./v2/json-viewer-s.svg"; // new
export { ReactComponent as JsonFormCompIconSmall } from "./v2/json-schema-form-s.svg"; // new
export { ReactComponent as PageLayoutCompIconSmall } from "./v2/page-layout-s.svg"; // new
export { ReactComponent as LinkCompIconSmall } from "./v2/link-s.svg";
export { ReactComponent as ListViewCompIconSmall } from "./v2/list-view-s.svg";
export { ReactComponent as LottieAnimationCompIconSmall } from "./v2/lottie-animation-s.svg"; // new
export { ReactComponent as MentionCompIconSmall } from "./v2/mention-s.svg"; // new
export { ReactComponent as MermaidCompIconSmall } from "./v2/mermaid-chart-s.svg"; // new
export { ReactComponent as ModalCompIconSmall } from "./v2/modal-s.svg";
export { ReactComponent as ModuleIconSmall } from "./v2/module-s.svg";
export { ReactComponent as MultiSelectCompIconSmall } from "./v2/multiselect-s.svg"; // new
export { ReactComponent as NavComIconSmall } from "./v2/navigation-s.svg";
export { ReactComponent as NumberInputCompIconSmall } from "./v2/number-input-s.svg";
export { ReactComponent as PasswordCompIconSmall } from "./v2/password-s.svg";
export { ReactComponent as ProgressCompIconSmall } from "./v2/progress-s.svg";
export { ReactComponent as ProcessCircleCompIconSmall } from "./v2/progress-circle-s.svg"; // new
export { ReactComponent as QRCodeCompIconSmall } from "./v2/qr-code-display-s.svg";
export { ReactComponent as RadioCompIconSmall } from "./v2/radio-button-s.svg";
export { ReactComponent as RangeSliderCompIconSmall } from "./v2/range-slider-s.svg"; // new
export { ReactComponent as RatingCompIconSmall } from "./v2/rating-s.svg";
export { ReactComponent as ResponsiveLayoutCompIconSmall } from "./v2/resposive-layout-s.svg"; // new
export { ReactComponent as SplitLayoutCompIconSmall } from "./v2/split-layout-s.svg"; // new
export { ReactComponent as RichTextEditorCompIconSmall } from "./v2/rich-text-editor-s.svg"; // new
export { ReactComponent as ScannerCompIconSmall } from "./v2/scanner-s.svg"; // new
export { ReactComponent as ShapesCompIconSmall } from "./v2/shapes-s.svg"; // new
export { ReactComponent as SegmentedCompIconSmall } from "./v2/segmented-control-s.svg";
export { ReactComponent as SelectCompIconSmall } from "./v2/select-s.svg";
export { ReactComponent as SliderCompIconSmall } from "./v2/slider-s.svg";
// export { ReactComponent as StepsTextIconSmall } from "./v1/icon-steps-comp.svg"; // new
export { ReactComponent as SwitchCompIconSmall } from "./v2/switch-s.svg";
export { ReactComponent as TabbedContainerCompIconSmall } from "./v2/tabbed-container-s.svg"; // new
export { ReactComponent as TableCompIconSmall } from "./v2/table-s.svg";
export { ReactComponent as TextAreaCompIconSmall } from "./v2/text-area-input-s.svg"; // new
export { ReactComponent as TextCompIconSmall } from "./v2/text-display-s.svg";
export { ReactComponent as TimeCompIconSmall } from "./v2/time-select-s.svg";
export { ReactComponent as TimeLineCompIconSmall } from "./v2/timeline-s.svg"; // new
export { ReactComponent as TimeRangeCompIconSmall } from "./v2/time-range-select-s.svg"; // new
export { ReactComponent as ToggleButtonCompIconSmall } from "./v2/toggle-button-s.svg"; // new
export { ReactComponent as TourCompIconSmall } from "./v2/modal-s.svg"; // new
export { ReactComponent as TransferCompIconSmall } from "./v2/transfer-list-s.svg"; // new
export { ReactComponent as TreeDisplayCompIconSmall } from "./v2/tree-display-s.svg";
export { ReactComponent as TreeSelectCompIconSmall } from "./v2/tree-select-s.svg"; // new
export { ReactComponent as VideoCompIconSmall } from "./v2/video-player-s.svg";
export { ReactComponent as VideoMeetingRoomCompIconSmall } from "./v2/meeting-room-s.svg";
export { ReactComponent as VideoCameraStreamCompIconSmall } from "./v2/camera-stream-s.svg"; // new
export { ReactComponent as VideoScreenshareCompIconSmall } from "./v2/screen-share-stream-s.svg"; // new
export { ReactComponent as SignatureCompIconSmall } from "./v2/signature-s.svg";
export { ReactComponent as StepCompIconSmall } from "./v2/steps-s.svg";
export { ReactComponent as TagsCompIconSmall } from "./v2/tags-s.svg"
export { ReactComponent as CandlestickChartCompIconSmall } from "./v2/candlestick-chart-s.svg"; // new
export { ReactComponent as FunnelChartCompIconSmall } from "./v2/funnel-chart-s.svg"; // new
export { ReactComponent as GaugeChartCompIconSmall } from "./v2/gauge-chart-s.svg"; // new
export { ReactComponent as GraphChartCompIconSmall } from "./v2/graph-chart-s.svg"; // new
export { ReactComponent as HeatmapChartCompIconSmall } from "./v2/heatmap-chart-s.svg"; // new
export { ReactComponent as RadarChartCompIconSmall } from "./v2/radar-chart-s.svg"; // new
export { ReactComponent as SankeyChartCompIconSmall } from "./v2/sankey-chart-s.svg"; // new
export { ReactComponent as SunburstChartCompIconSmall } from "./v2/sunburst-chart-s.svg"; // new
export { ReactComponent as ThemeriverChartCompIconSmall } from "./v2/themeriver-chart-s.svg"; // new
export { ReactComponent as TreeChartCompIconSmall } from "./v2/tree-chart-s.svg"; // new
export { ReactComponent as TreemapChartCompIconSmall } from "./v2/treemap-chart-s.svg"; // new
export { ReactComponent as BPMNEditorCompIconSmall } from "./v2/bpmn-editor-s.svg"; // new
export { ReactComponent as GeoMapChartsCompIconSmall } from "./v2/geomap-charts-s.svg"; // new
export { ReactComponent as GeoMapLayersCompIconSmall } from "./v2/geomap-layers-s.svg"; // new
export { ReactComponent as HillchartCompIconSmall } from "./v2/hillchart-s.svg"; // new
export { ReactComponent as PivotTableCompIconSmall } from "./v2/pivot-table-s.svg"; // new
export { ReactComponent as TurnstileCaptchaCompIconSmall } from "./v2/turnstile-captcha-s.svg"; // new
export { ReactComponent as GanttCompIconSmall } from "./v2/gantt-chart-s.svg"; // new
export { ReactComponent as PieChartCompIconSmall } from "./v2/pie-chart-s.svg"; // new
export { ReactComponent as BarChartCompIconSmall } from "./v2/bar-chart-s.svg"; // new
export { ReactComponent as LineChartCompIconSmall } from "./v2/line-chart-s.svg"; // new
export { ReactComponent as ScatterChartCompIconSmall } from "./v2/scatter-chart-s.svg"; // new
// medium
export { ReactComponent as AudioCompIcon } from "./v2/audio-player-m.svg";
export { ReactComponent as AutoCompleteCompIcon } from "./v2/auto-complete-input-m.svg";
export { ReactComponent as AvatarCompIcon } from "./v2/avatar-m.svg";
export { ReactComponent as ButtonCompIcon } from "./v2/button-m.svg";
export { ReactComponent as AvatarGroupCompIcon } from "./v2/avatargroup-m.svg";
export { ReactComponent as IconButtonCompIcon } from "./v2/icon-button-m.svg";
export { ReactComponent as CalendarCompIcon } from "./v2/calendar-m.svg";
export { ReactComponent as CardCompIcon } from "./v2/card-layout-m.svg";
export { ReactComponent as CarouselCompIcon } from "./v2/image-carousel-m.svg";
export { ReactComponent as CascaderCompIcon } from "./v2/cascader-m.svg";
export { ReactComponent as ChartCompIcon } from "./v2/pie-chart-m.svg";
export { ReactComponent as CheckboxCompIcon } from "./v2/checkbox-m.svg";
export { ReactComponent as CollapsibleContainerCompIcon } from "./v2/collapsible-container-m.svg";
export { ReactComponent as ColumnLayoutCompIcon } from "./v2/column-layout-m.svg";
export { ReactComponent as CommentCompIcon } from "./v2/comment-m.svg";
export { ReactComponent as ColorPickerCompIcon } from "./v2/colorpicker-m.svg";
export { ReactComponent as ContainerCompIcon } from "./v2/container-m.svg";
export { ReactComponent as CustomCompIcon } from "./v2/custom-code-m.svg";
export { ReactComponent as DateCompIcon } from "./v2/date-select-m.svg";
export { ReactComponent as DateRangeCompIcon } from "./v2/date-range-select-m.svg";
export { ReactComponent as DividerCompIcon } from "./v2/divider-m.svg";
export { ReactComponent as DrawerCompIcon } from "./v2/drawer-m.svg";
export { ReactComponent as DropdownCompIcon } from "./v2/dropdown-m.svg";
export { ReactComponent as FileViewerCompIcon } from "./v2/file-viewer-m.svg";
export { ReactComponent as FloatingButtonCompIcon } from "./v2/floating-button-m.svg";
export { ReactComponent as FloatingTextCompIcon } from "./v2/floating-text-layout-m.svg";
export { ReactComponent as FormCompIcon } from "./v2/form-m.svg";
export { ReactComponent as GridCompIcon } from "./v2/grid-view-m.svg";
export { ReactComponent as IconCompIcon } from "./v2/icon-m.svg";
export { ReactComponent as IFrameCompIcon } from "./v2/iframe-m.svg";
export { ReactComponent as ImageEditorCompIcon } from "./v2/image-editor-m.svg";
export { ReactComponent as ImageCompIcon } from "./v2/image-m.svg";
export { ReactComponent as InputCompIcon } from "./v2/input-m.svg";
export { ReactComponent as JsonEditorCompIcon } from "./v2/json-editor-m.svg";
export { ReactComponent as JsonExplorerCompIcon } from "./v2/json-viewer-m.svg";
export { ReactComponent as JsonFormCompIcon } from "./v2/json-schema-form-m.svg";
export { ReactComponent as PageLayoutCompIcon } from "./v2/page-layout-m.svg";
export { ReactComponent as LinkCompIcon } from "./v2/link-m.svg";
export { ReactComponent as ListViewCompIcon } from "./v2/list-view-m.svg";
export { ReactComponent as LottieAnimationCompIcon } from "./v2/lottie-animation-m.svg";
export { ReactComponent as MentionCompIcon } from "./v2/mention-m.svg";
export { ReactComponent as MermaidCompIcon } from "./v2/mermaid-chart-m.svg";
export { ReactComponent as ModalCompIcon } from "./v2/modal-m.svg";
export { ReactComponent as MultiSelectCompIcon } from "./v2/multiselect-m.svg";
export { ReactComponent as NavComIcon } from "./v2/navigation-m.svg";
export { ReactComponent as NumberInputCompIcon } from "./v2/number-input-m.svg";
export { ReactComponent as PasswordCompIcon } from "./v2/password-m.svg";
export { ReactComponent as ProcessCircleCompIcon } from "./v2/progress-circle-m.svg";
export { ReactComponent as ProgressCompIcon } from "./v2/progress-m.svg";
export { ReactComponent as QRCodeCompIcon } from "./v2/qr-code-display-m.svg";
export { ReactComponent as RadioCompIcon } from "./v2/radio-button-m.svg";
export { ReactComponent as RangeSliderCompIcon } from "./v2/range-slider-m.svg";
export { ReactComponent as RatingCompIcon } from "./v2/rating-m.svg";
export { ReactComponent as ResponsiveLayoutCompIcon } from "./v2/resposive-layout-m.svg";
export { ReactComponent as SplitLayoutCompIcon } from "./v2/split-layout-m.svg";
export { ReactComponent as RichTextEditorCompIcon } from "./v2/rich-text-editor-m.svg";
export { ReactComponent as ScannerCompIcon } from "./v2/scanner-m.svg";
export { ReactComponent as ShapesCompIcon } from "./v2/shapes-m.svg";
export { ReactComponent as SegmentedCompIcon } from "./v2/segmented-control-m.svg";
export { ReactComponent as SelectCompIcon } from "./v2/select-m.svg";
export { ReactComponent as SliderCompIcon } from "./v2/slider-m.svg";
// export { ReactComponent as StepsTextIcon } from "./v1/icon-steps-comp.svg"; // to check
export { ReactComponent as SwitchCompIcon } from "./v2/switch-m.svg";
export { ReactComponent as TabbedContainerCompIcon } from "./v2/tabbed-container-m.svg";
export { ReactComponent as TableCompIcon } from "./v2/mighty-table-m.svg";
export { ReactComponent as TextAreaCompIcon } from "./v2/text-area-input-m.svg";
export { ReactComponent as TextCompIcon } from "./v2/text-display-m.svg";
export { ReactComponent as TimeCompIcon } from "./v2/time-select-m.svg";
export { ReactComponent as TimerCompIcon } from "./v2/timer-m.svg";
export { ReactComponent as TimeLineCompIcon } from "./v2/timeline-m.svg";
export { ReactComponent as TimeRangeCompIcon } from "./v2/time-range-select-m.svg";
export { ReactComponent as ToggleButtonCompIcon } from "./v2/toggle-button-m.svg";
export { ReactComponent as TourCompIcon } from "./v2/modal-m.svg";
export { ReactComponent as TransferCompIcon } from "./v2/transfer-list-m.svg";
export { ReactComponent as TreeDisplayCompIcon } from "./v2/tree-display-m.svg";
export { ReactComponent as TreeSelectCompIcon } from "./v2/tree-select-m.svg";
export { ReactComponent as UploadCompIcon } from "./v2/file-upload-m.svg";
export { ReactComponent as VideoCompIcon } from "./v2/video-player-m.svg";
export { ReactComponent as VideoMeetingRoomCompIcon } from "./v2/meeting-room-m.svg";
export { ReactComponent as VideoCameraStreamCompIcon } from "./v2/camera-stream-m.svg";
export { ReactComponent as VideoScreenshareCompIcon } from "./v2/screen-share-stream-m.svg";
export { ReactComponent as StepCompIcon } from "./v2/steps-m.svg";
export { ReactComponent as SignatureCompIcon } from "./v2/signature-m.svg";
export { ReactComponent as GanttCompIcon } from "./v2/gantt-chart-m.svg";
export { ReactComponent as KanbanCompIconSmall } from "./v2/kanban-s.svg";
export { ReactComponent as KanbanCompIcon } from "./v2/kanban-m.svg";
export { ReactComponent as TagsCompIcon } from "./v2/tags-l.svg";
export { ReactComponent as CandlestickChartCompIcon } from "./v2/candlestick-chart-m.svg";
export { ReactComponent as FunnelChartCompIcon } from "./v2/funnel-chart-m.svg";
export { ReactComponent as GaugeChartCompIcon } from "./v2/gauge-chart-m.svg";
export { ReactComponent as GraphChartCompIcon } from "./v2/graph-chart-m.svg";
export { ReactComponent as HeatmapChartCompIcon } from "./v2/heatmap-chart-m.svg";
export { ReactComponent as RadarChartCompIcon } from "./v2/radar-chart-m.svg";
export { ReactComponent as SankeyChartCompIcon } from "./v2/sankey-chart-m.svg";
export { ReactComponent as SunburstChartCompIcon } from "./v2/sunburst-chart-m.svg";
export { ReactComponent as ThemeriverChartCompIcon } from "./v2/themeriver-chart-m.svg";
export { ReactComponent as TreeChartCompIcon } from "./v2/tree-chart-m.svg";
export { ReactComponent as TreemapChartCompIcon } from "./v2/treemap-chart-m.svg";
export { ReactComponent as PieChartCompIcon } from "./v2/pie-chart-m.svg"; // new
export { ReactComponent as BarChartCompIcon } from "./v2/bar-chart-m.svg"; // new
export { ReactComponent as LineChartCompIcon } from "./v2/line-chart-m.svg"; // new
export { ReactComponent as ScatterChartCompIcon } from "./v2/scatter-chart-m.svg"; // new
export { ReactComponent as BPMNEditorCompIcon } from "./v2/bpmn-editor-m.svg";
export { ReactComponent as GeoMapChartsCompIcon } from "./v2/geomap-charts-m.svg";
export { ReactComponent as GeoMapLayersCompIcon } from "./v2/geomap-layers-m.svg";
export { ReactComponent as HillchartCompIcon } from "./v2/hillchart-m.svg";
export { ReactComponent as TurnstileCaptchaCompIcon } from "./v2/turnstile-captcha-m.svg";
export { ReactComponent as PivotTableCompIcon } from "./v2/pivot-table-m.svg";
// flags - lazy loaded
/* const ICON_MAP: Record<string, any> = {
"Flag_af": () => import("./flags/4x3/af.svg"),
"Flag_ax": () => import("./flags/4x3/ax.svg"),
"Flag_al": () => import("./flags/4x3/al.svg"),
"Flag_dz": () => import("./flags/4x3/dz.svg"),
"Flag_as": () => import("./flags/4x3/as.svg"),
"Flag_ad": () => import("./flags/4x3/ad.svg"),
"Flag_ao": () => import("./flags/4x3/ao.svg"),
"Flag_ai": () => import("./flags/4x3/ai.svg"),
"Flag_aq": () => import("./flags/4x3/aq.svg"),
"Flag_ag": () => import("./flags/4x3/ag.svg"),
"Flag_ar": () => import("./flags/4x3/ar.svg"),
"Flag_am": () => import("./flags/4x3/am.svg"),
"Flag_aw": () => import("./flags/4x3/aw.svg"),
"Flag_sh_ac": () => import("./flags/4x3/sh-ac.svg"),
"Flag_au": () => import("./flags/4x3/au.svg"),
"Flag_at": () => import("./flags/4x3/at.svg"),
"Flag_az": () => import("./flags/4x3/az.svg"),
"Flag_bs": () => import("./flags/4x3/bs.svg"),
"Flag_bh": () => import("./flags/4x3/bh.svg"),
"Flag_bd": () => import("./flags/4x3/bd.svg"),
"Flag_bb": () => import("./flags/4x3/bb.svg"),
"Flag_by": () => import("./flags/4x3/by.svg"),
"Flag_be": () => import("./flags/4x3/be.svg"),
"Flag_bz": () => import("./flags/4x3/bz.svg"),
"Flag_bj": () => import("./flags/4x3/bj.svg"),
"Flag_bm": () => import("./flags/4x3/bm.svg"),
"Flag_bt": () => import("./flags/4x3/bt.svg"),
"Flag_bo": () => import("./flags/4x3/bo.svg"),
"Flag_bq": () => import("./flags/4x3/bq.svg"),
"Flag_ba": () => import("./flags/4x3/ba.svg"),
"Flag_bw": () => import("./flags/4x3/bw.svg"),
"Flag_bv": () => import("./flags/4x3/bv.svg"),
"Flag_br": () => import("./flags/4x3/br.svg"),
"Flag_io": () => import("./flags/4x3/io.svg"),
"Flag_bn": () => import("./flags/4x3/bn.svg"),
"Flag_bg": () => import("./flags/4x3/bg.svg"),
"Flag_bf": () => import("./flags/4x3/bf.svg"),
"Flag_bi": () => import("./flags/4x3/bi.svg"),
"Flag_cv": () => import("./flags/4x3/cv.svg"),
"Flag_kh": () => import("./flags/4x3/kh.svg"),
"Flag_cm": () => import("./flags/4x3/cm.svg"),
"Flag_ca": () => import("./flags/4x3/ca.svg"),
"Flag_ic": () => import("./flags/4x3/ic.svg"),
"Flag_es_ct": () => import("./flags/4x3/es-ct.svg"),
"Flag_ky": () => import("./flags/4x3/ky.svg"),
"Flag_cf": () => import("./flags/4x3/cf.svg"),
"Flag_td": () => import("./flags/4x3/td.svg"),
"Flag_cl": () => import("./flags/4x3/cl.svg"),
"Flag_cn": () => import("./flags/4x3/cn.svg"),
"Flag_cx": () => import("./flags/4x3/cx.svg"),
"Flag_cc": () => import("./flags/4x3/cc.svg"),
"Flag_co": () => import("./flags/4x3/co.svg"),
"Flag_km": () => import("./flags/4x3/km.svg"),
"Flag_ck": () => import("./flags/4x3/ck.svg"),
"Flag_cr": () => import("./flags/4x3/cr.svg"),
"Flag_hr": () => import("./flags/4x3/hr.svg"),
"Flag_cu": () => import("./flags/4x3/cu.svg"),
"Flag_cw": () => import("./flags/4x3/cw.svg"),
"Flag_cy": () => import("./flags/4x3/cy.svg"),
"Flag_cz": () => import("./flags/4x3/cz.svg"),
"Flag_ci": () => import("./flags/4x3/ci.svg"),
"Flag_cd": () => import("./flags/4x3/cd.svg"),
"Flag_dk": () => import("./flags/4x3/dk.svg"),
"Flag_dj": () => import("./flags/4x3/dj.svg"),
"Flag_dm": () => import("./flags/4x3/dm.svg"),
"Flag_do": () => import("./flags/4x3/do.svg"),
"Flag_ec": () => import("./flags/4x3/ec.svg"),
"Flag_eg": () => import("./flags/4x3/eg.svg"),
"Flag_sv": () => import("./flags/4x3/sv.svg"),
"Flag_gq": () => import("./flags/4x3/gq.svg"),
"Flag_er": () => import("./flags/4x3/er.svg"),
"Flag_ee": () => import("./flags/4x3/ee.svg"),
"Flag_sz": () => import("./flags/4x3/sz.svg"),
"Flag_et": () => import("./flags/4x3/et.svg"),
"Flag_eu": () => import("./flags/4x3/eu.svg"),
"Flag_fk": () => import("./flags/4x3/fk.svg"),
"Flag_fo": () => import("./flags/4x3/fo.svg"),
"Flag_fm": () => import("./flags/4x3/fm.svg"),
"Flag_fj": () => import("./flags/4x3/fj.svg"),
"Flag_fi": () => import("./flags/4x3/fi.svg"),
"Flag_fr": () => import("./flags/4x3/fr.svg"),
"Flag_gf": () => import("./flags/4x3/gf.svg"),
"Flag_pf": () => import("./flags/4x3/pf.svg"),
"Flag_tf": () => import("./flags/4x3/tf.svg"),
"Flag_ga": () => import("./flags/4x3/ga.svg"),
"Flag_gm": () => import("./flags/4x3/gm.svg"),
"Flag_ge": () => import("./flags/4x3/ge.svg"),
"Flag_de": () => import("./flags/4x3/de.svg"),
"Flag_gh": () => import("./flags/4x3/gh.svg"),
"Flag_gi": () => import("./flags/4x3/gi.svg"),
"Flag_gr": () => import("./flags/4x3/gr.svg"),
"Flag_gl": () => import("./flags/4x3/gl.svg"),
"Flag_gd": () => import("./flags/4x3/gd.svg"),
"Flag_gp": () => import("./flags/4x3/gp.svg"),
"Flag_gu": () => import("./flags/4x3/gu.svg"),
"Flag_gt": () => import("./flags/4x3/gt.svg"),
"Flag_gg": () => import("./flags/4x3/gg.svg"),
"Flag_gn": () => import("./flags/4x3/gn.svg"),
"Flag_gw": () => import("./flags/4x3/gw.svg"),
"Flag_gy": () => import("./flags/4x3/gy.svg"),
"Flag_ht": () => import("./flags/4x3/ht.svg"),
"Flag_hm": () => import("./flags/4x3/hm.svg"),
"Flag_va": () => import("./flags/4x3/va.svg"),
"Flag_hn": () => import("./flags/4x3/hn.svg"),
"Flag_hk": () => import("./flags/4x3/hk.svg"),
"Flag_hu": () => import("./flags/4x3/hu.svg"),
"Flag_is": () => import("./flags/4x3/is.svg"),
"Flag_in": () => import("./flags/4x3/in.svg"),
"Flag_id": () => import("./flags/4x3/id.svg"),
"Flag_ir": () => import("./flags/4x3/ir.svg"),
"Flag_iq": () => import("./flags/4x3/iq.svg"),
"Flag_ie": () => import("./flags/4x3/ie.svg"),
"Flag_im": () => import("./flags/4x3/im.svg"),
"Flag_il": () => import("./flags/4x3/il.svg"),
"Flag_it": () => import("./flags/4x3/it.svg"),
"Flag_jm": () => import("./flags/4x3/jm.svg"),
"Flag_jp": () => import("./flags/4x3/jp.svg"),
"Flag_je": () => import("./flags/4x3/je.svg"),
"Flag_jo": () => import("./flags/4x3/jo.svg"),
"Flag_kz": () => import("./flags/4x3/kz.svg"),
"Flag_ke": () => import("./flags/4x3/ke.svg"),
"Flag_ki": () => import("./flags/4x3/ki.svg"),
"Flag_xk": () => import("./flags/4x3/xk.svg"),
"Flag_kw": () => import("./flags/4x3/kw.svg"),
"Flag_kg": () => import("./flags/4x3/kg.svg"),
"Flag_la": () => import("./flags/4x3/la.svg"),
"Flag_lv": () => import("./flags/4x3/lv.svg"),
"Flag_lb": () => import("./flags/4x3/lb.svg"),
"Flag_ls": () => import("./flags/4x3/ls.svg"),
"Flag_lr": () => import("./flags/4x3/lr.svg"),
"Flag_ly": () => import("./flags/4x3/ly.svg"),
"Flag_li": () => import("./flags/4x3/li.svg"),
"Flag_lt": () => import("./flags/4x3/lt.svg"),
"Flag_lu": () => import("./flags/4x3/lu.svg"),
"Flag_mo": () => import("./flags/4x3/mo.svg"),
"Flag_mg": () => import("./flags/4x3/mg.svg"),
"Flag_mw": () => import("./flags/4x3/mw.svg"),
"Flag_my": () => import("./flags/4x3/my.svg"),
"Flag_mv": () => import("./flags/4x3/mv.svg"),
"Flag_ml": () => import("./flags/4x3/ml.svg"),
"Flag_mt": () => import("./flags/4x3/mt.svg"),
"Flag_mh": () => import("./flags/4x3/mh.svg"),
"Flag_mq": () => import("./flags/4x3/mq.svg"),
"Flag_mr": () => import("./flags/4x3/mr.svg"),
"Flag_mu": () => import("./flags/4x3/mu.svg"),
"Flag_yt": () => import("./flags/4x3/yt.svg"),
"Flag_mx": () => import("./flags/4x3/mx.svg"),
"Flag_md": () => import("./flags/4x3/md.svg"),
"Flag_mc": () => import("./flags/4x3/mc.svg"),
"Flag_mn": () => import("./flags/4x3/mn.svg"),
"Flag_me": () => import("./flags/4x3/me.svg"),
"Flag_ms": () => import("./flags/4x3/ms.svg"),
"Flag_ma": () => import("./flags/4x3/ma.svg"),
"Flag_mz": () => import("./flags/4x3/mz.svg"),
"Flag_mm": () => import("./flags/4x3/mm.svg"),
"Flag_na": () => import("./flags/4x3/na.svg"),
"Flag_nr": () => import("./flags/4x3/nr.svg"),
"Flag_np": () => import("./flags/4x3/np.svg"),
"Flag_nl": () => import("./flags/4x3/nl.svg"),
"Flag_nc": () => import("./flags/4x3/nc.svg"),
"Flag_nz": () => import("./flags/4x3/nz.svg"),
"Flag_ni": () => import("./flags/4x3/ni.svg"),
"Flag_ne": () => import("./flags/4x3/ne.svg"),
"Flag_ng": () => import("./flags/4x3/ng.svg"),
"Flag_nu": () => import("./flags/4x3/nu.svg"),
"Flag_nf": () => import("./flags/4x3/nf.svg"),
"Flag_kp": () => import("./flags/4x3/kp.svg"),
"Flag_mk": () => import("./flags/4x3/mk.svg"),
"Flag_gb_nir": () => import("./flags/4x3/gb-nir.svg"),
"Flag_mp": () => import("./flags/4x3/mp.svg"),
"Flag_no": () => import("./flags/4x3/no.svg"),
"Flag_om": () => import("./flags/4x3/om.svg"),
"Flag_pk": () => import("./flags/4x3/pk.svg"),
"Flag_pw": () => import("./flags/4x3/pw.svg"),
"Flag_pa": () => import("./flags/4x3/pa.svg"),
"Flag_pg": () => import("./flags/4x3/pg.svg"),
"Flag_py": () => import("./flags/4x3/py.svg"),
"Flag_pe": () => import("./flags/4x3/pe.svg"),
"Flag_ph": () => import("./flags/4x3/ph.svg"),
"Flag_pn": () => import("./flags/4x3/pn.svg"),
"Flag_pl": () => import("./flags/4x3/pl.svg"),
"Flag_pt": () => import("./flags/4x3/pt.svg"),
"Flag_pr": () => import("./flags/4x3/pr.svg"),
"Flag_qa": () => import("./flags/4x3/qa.svg"),
"Flag_cg": () => import("./flags/4x3/cg.svg"),
"Flag_ro": () => import("./flags/4x3/ro.svg"),
"Flag_ru": () => import("./flags/4x3/ru.svg"),
"Flag_rw": () => import("./flags/4x3/rw.svg"),
"Flag_re": () => import("./flags/4x3/re.svg"),
"Flag_bl": () => import("./flags/4x3/bl.svg"),
"Flag_sh_hl": () => import("./flags/4x3/sh-hl.svg"),
"Flag_sh": () => import("./flags/4x3/sh.svg"),
"Flag_kn": () => import("./flags/4x3/kn.svg"),
"Flag_lc": () => import("./flags/4x3/lc.svg"),
"Flag_mf": () => import("./flags/4x3/mf.svg"),
"Flag_pm": () => import("./flags/4x3/pm.svg"),
"Flag_vc": () => import("./flags/4x3/vc.svg"),
"Flag_ws": () => import("./flags/4x3/ws.svg"),
"Flag_sm": () => import("./flags/4x3/sm.svg"),
"Flag_st": () => import("./flags/4x3/st.svg"),
"Flag_sa": () => import("./flags/4x3/sa.svg"),
"Flag_gb_sct": () => import("./flags/4x3/gb-sct.svg"),
"Flag_sn": () => import("./flags/4x3/sn.svg"),
"Flag_rs": () => import("./flags/4x3/rs.svg"),
"Flag_sc": () => import("./flags/4x3/sc.svg"),
"Flag_sl": () => import("./flags/4x3/sl.svg"),
"Flag_sg": () => import("./flags/4x3/sg.svg"),
"Flag_sx": () => import("./flags/4x3/sx.svg"),
"Flag_sk": () => import("./flags/4x3/sk.svg"),
"Flag_si": () => import("./flags/4x3/si.svg"),
"Flag_sb": () => import("./flags/4x3/sb.svg"),
"Flag_so": () => import("./flags/4x3/so.svg"),
"Flag_za": () => import("./flags/4x3/za.svg"),
"Flag_gs": () => import("./flags/4x3/gs.svg"),
"Flag_kr": () => import("./flags/4x3/kr.svg"),
"Flag_ss": () => import("./flags/4x3/ss.svg"),
"Flag_es": () => import("./flags/4x3/es.svg"),
"Flag_lk": () => import("./flags/4x3/lk.svg"),
"Flag_ps": () => import("./flags/4x3/ps.svg"),
"Flag_sd": () => import("./flags/4x3/sd.svg"),
"Flag_sr": () => import("./flags/4x3/sr.svg"),
"Flag_sj": () => import("./flags/4x3/sj.svg"),
"Flag_se": () => import("./flags/4x3/se.svg"),
"Flag_ch": () => import("./flags/4x3/ch.svg"),
"Flag_sy": () => import("./flags/4x3/sy.svg"),
"Flag_tw": () => import("./flags/4x3/tw.svg"),
"Flag_tj": () => import("./flags/4x3/tj.svg"),
"Flag_tz": () => import("./flags/4x3/tz.svg"),
"Flag_th": () => import("./flags/4x3/th.svg"),
"Flag_tl": () => import("./flags/4x3/tl.svg"),
"Flag_tg": () => import("./flags/4x3/tg.svg"),
"Flag_tk": () => import("./flags/4x3/tk.svg"),
"Flag_to": () => import("./flags/4x3/to.svg"),
"Flag_tt": () => import("./flags/4x3/tt.svg"),
"Flag_sh_ta": () => import("./flags/4x3/sh-ta.svg"),
"Flag_tn": () => import("./flags/4x3/tn.svg"),
"Flag_tm": () => import("./flags/4x3/tm.svg"),
"Flag_tc": () => import("./flags/4x3/tc.svg"),
"Flag_tv": () => import("./flags/4x3/tv.svg"),
"Flag_tr": () => import("./flags/4x3/tr.svg"),
"Flag_ug": () => import("./flags/4x3/ug.svg"),
"Flag_ua": () => import("./flags/4x3/ua.svg"),
"Flag_ae": () => import("./flags/4x3/ae.svg"),
"Flag_gb": () => import("./flags/4x3/gb.svg"),
"Flag_un": () => import("./flags/4x3/un.svg"),
"Flag_um": () => import("./flags/4x3/um.svg"),
"Flag_us": () => import("./flags/4x3/us.svg"),
"Flag_uy": () => import("./flags/4x3/uy.svg"),
"Flag_uz": () => import("./flags/4x3/uz.svg"),
"Flag_vu": () => import("./flags/4x3/vu.svg"),
"Flag_ve": () => import("./flags/4x3/ve.svg"),
"Flag_vn": () => import("./flags/4x3/vn.svg"),
"Flag_vg": () => import("./flags/4x3/vg.svg"),
"Flag_vi": () => import("./flags/4x3/vi.svg"),
"Flag_gb_wls": () => import("./flags/4x3/gb-wls.svg"),
"Flag_wf": () => import("./flags/4x3/wf.svg"),
"Flag_eh": () => import("./flags/4x3/eh.svg"),
"Flag_ye": () => import("./flags/4x3/ye.svg"),
"Flag_zm": () => import("./flags/4x3/zm.svg"),
"Flag_zw": () => import("./flags/4x3/zw.svg")
};
const lazyIcon = (name: string) => lazy(() => ICON_MAP[name]().then((mod: { ReactComponent: any; }) => ({ default: mod.ReactComponent })));
export const Flag_af = lazyIcon("af");
export const Flag_ax = lazyIcon("ax");
export const Flag_al = lazyIcon("al");
export const Flag_dz = lazyIcon("dz");
export const Flag_as = lazyIcon("as");
export const Flag_ad = lazyIcon("ad");
export const Flag_ao = lazyIcon("ao");
export const Flag_ai = lazyIcon("ai");
export const Flag_aq = lazyIcon("aq");
export const Flag_ag = lazyIcon("ag");
export const Flag_ar = lazyIcon("ar");
export const Flag_am = lazyIcon("am");
export const Flag_aw = lazyIcon("aw");
export const Flag_sh_ac = lazyIcon("sh-ac");
export const Flag_au = lazyIcon("au");
export const Flag_at = lazyIcon("at");
export const Flag_az = lazyIcon("az");
export const Flag_bs = lazyIcon("bs");
export const Flag_bh = lazyIcon("bh");
export const Flag_bd = lazyIcon("bd");
export const Flag_bb = lazyIcon("bb");
export const Flag_by = lazyIcon("by");
export const Flag_be = lazyIcon("be");
export const Flag_bz = lazyIcon("bz");
export const Flag_bj = lazyIcon("bj");
export const Flag_bm = lazyIcon("bm");
export const Flag_bt = lazyIcon("bt");
export const Flag_bo = lazyIcon("bo");
export const Flag_bq = lazyIcon("bq");
export const Flag_ba = lazyIcon("ba");
export const Flag_bw = lazyIcon("bw");
export const Flag_bv = lazyIcon("bv");
// export const Flag_br = lazyIcon("br");
export const Flag_io = lazyIcon("io");
export const Flag_bn = lazyIcon("bn");
export const Flag_bg = lazyIcon("bg");
export const Flag_bf = lazyIcon("bf");
export const Flag_bi = lazyIcon("bi");
export const Flag_cv = lazyIcon("cv");
export const Flag_kh = lazyIcon("kh");
export const Flag_cm = lazyIcon("cm");
export const Flag_ca = lazyIcon("ca");
export const Flag_ic = lazyIcon("ic");
export const Flag_es_ct = lazyIcon("es-ct");
export const Flag_ky = lazyIcon("ky");
export const Flag_cf = lazyIcon("cf");
export const Flag_td = lazyIcon("td");
export const Flag_cl = lazyIcon("cl");
// export const Flag_cn = lazyIcon("cn");
export const Flag_cx = lazyIcon("cx");
export const Flag_cc = lazyIcon("cc");
export const Flag_co = lazyIcon("co");
export const Flag_km = lazyIcon("km");
export const Flag_ck = lazyIcon("ck");
export const Flag_cr = lazyIcon("cr");
export const Flag_hr = lazyIcon("hr");
export const Flag_cu = lazyIcon("cu");
export const Flag_cw = lazyIcon("cw");
export const Flag_cy = lazyIcon("cy");
export const Flag_cz = lazyIcon("cz");
export const Flag_ci = lazyIcon("ci");
export const Flag_cd = lazyIcon("cd");
export const Flag_dk = lazyIcon("dk");
export const Flag_dj = lazyIcon("dj");
export const Flag_dm = lazyIcon("dm");
export const Flag_do = lazyIcon("do");
export const Flag_ec = lazyIcon("ec");
export const Flag_eg = lazyIcon("eg");
export const Flag_sv = lazyIcon("sv");
export const Flag_gq = lazyIcon("gq");
export const Flag_er = lazyIcon("er");
export const Flag_ee = lazyIcon("ee");
export const Flag_sz = lazyIcon("sz");
export const Flag_et = lazyIcon("et");
export const Flag_eu = lazyIcon("eu");
export const Flag_fk = lazyIcon("fk");
export const Flag_fo = lazyIcon("fo");
export const Flag_fm = lazyIcon("fm");
export const Flag_fj = lazyIcon("fj");
export const Flag_fi = lazyIcon("fi");
export const Flag_fr = lazyIcon("fr");
export const Flag_gf = lazyIcon("gf");
export const Flag_pf = lazyIcon("pf");
export const Flag_tf = lazyIcon("tf");
export const Flag_ga = lazyIcon("ga");
export const Flag_gm = lazyIcon("gm");
export const Flag_ge = lazyIcon("ge");
// export const Flag_de = lazyIcon("de");
export const Flag_gh = lazyIcon("gh");
export const Flag_gi = lazyIcon("gi");
export const Flag_gr = lazyIcon("gr");
export const Flag_gl = lazyIcon("gl");
export const Flag_gd = lazyIcon("gd");
export const Flag_gp = lazyIcon("gp");
export const Flag_gu = lazyIcon("gu");
export const Flag_gt = lazyIcon("gt");
export const Flag_gg = lazyIcon("gg");
export const Flag_gn = lazyIcon("gn");
export const Flag_gw = lazyIcon("gw");
export const Flag_gy = lazyIcon("gy");
export const Flag_ht = lazyIcon("ht");
export const Flag_hm = lazyIcon("hm");
export const Flag_va = lazyIcon("va");
export const Flag_hn = lazyIcon("hn");
export const Flag_hk = lazyIcon("hk");
export const Flag_hu = lazyIcon("hu");
export const Flag_is = lazyIcon("is");
export const Flag_in = lazyIcon("in");
export const Flag_id = lazyIcon("id");
export const Flag_ir = lazyIcon("ir");
export const Flag_iq = lazyIcon("iq");
export const Flag_ie = lazyIcon("ie");
export const Flag_im = lazyIcon("im");
export const Flag_il = lazyIcon("il");
// export const Flag_it = lazyIcon("it");
export const Flag_jm = lazyIcon("jm");
export const Flag_jp = lazyIcon("jp");
export const Flag_je = lazyIcon("je");
export const Flag_jo = lazyIcon("jo");
export const Flag_kz = lazyIcon("kz");
export const Flag_ke = lazyIcon("ke");
export const Flag_ki = lazyIcon("ki");
export const Flag_xk = lazyIcon("xk");
export const Flag_kw = lazyIcon("kw");
export const Flag_kg = lazyIcon("kg");
export const Flag_la = lazyIcon("la");
export const Flag_lv = lazyIcon("lv");
export const Flag_lb = lazyIcon("lb");
export const Flag_ls = lazyIcon("ls");
export const Flag_lr = lazyIcon("lr");
export const Flag_ly = lazyIcon("ly");
export const Flag_li = lazyIcon("li");
export const Flag_lt = lazyIcon("lt");
export const Flag_lu = lazyIcon("lu");
export const Flag_mo = lazyIcon("mo");
export const Flag_mg = lazyIcon("mg");
export const Flag_mw = lazyIcon("mw");
export const Flag_my = lazyIcon("my");
export const Flag_mv = lazyIcon("mv");
export const Flag_ml = lazyIcon("ml");
export const Flag_mt = lazyIcon("mt");
export const Flag_mh = lazyIcon("mh");
export const Flag_mq = lazyIcon("mq");
export const Flag_mr = lazyIcon("mr");
export const Flag_mu = lazyIcon("mu");
export const Flag_yt = lazyIcon("yt");
export const Flag_mx = lazyIcon("mx");
export const Flag_md = lazyIcon("md");
export const Flag_mc = lazyIcon("mc");
export const Flag_mn = lazyIcon("mn");
export const Flag_me = lazyIcon("me");
export const Flag_ms = lazyIcon("ms");
export const Flag_ma = lazyIcon("ma");
export const Flag_mz = lazyIcon("mz");
export const Flag_mm = lazyIcon("mm");
export const Flag_na = lazyIcon("na");
export const Flag_nr = lazyIcon("nr");
export const Flag_np = lazyIcon("np");
export const Flag_nl = lazyIcon("nl");
export const Flag_nc = lazyIcon("nc");
export const Flag_nz = lazyIcon("nz");
export const Flag_ni = lazyIcon("ni");
export const Flag_ne = lazyIcon("ne");
export const Flag_ng = lazyIcon("ng");
export const Flag_nu = lazyIcon("nu");
export const Flag_nf = lazyIcon("nf");
export const Flag_kp = lazyIcon("kp");
export const Flag_mk = lazyIcon("mk");
export const Flag_gb_nir = lazyIcon("gb-nir");
export const Flag_mp = lazyIcon("mp");
export const Flag_no = lazyIcon("no");
export const Flag_om = lazyIcon("om");
export const Flag_pk = lazyIcon("pk");
export const Flag_pw = lazyIcon("pw");
export const Flag_pa = lazyIcon("pa");
export const Flag_pg = lazyIcon("pg");
export const Flag_py = lazyIcon("py");
export const Flag_pe = lazyIcon("pe");
export const Flag_ph = lazyIcon("ph");
export const Flag_pn = lazyIcon("pn");
export const Flag_pl = lazyIcon("pl");
export const Flag_pt = lazyIcon("pt");
export const Flag_pr = lazyIcon("pr");
export const Flag_qa = lazyIcon("qa");
export const Flag_cg = lazyIcon("cg");
export const Flag_ro = lazyIcon("ro");
// export const Flag_ru = lazyIcon("ru");
export const Flag_rw = lazyIcon("rw");
export const Flag_re = lazyIcon("re");
export const Flag_bl = lazyIcon("bl");
export const Flag_sh_hl = lazyIcon("sh-hl");
export const Flag_sh = lazyIcon("sh");
export const Flag_kn = lazyIcon("kn");
export const Flag_lc = lazyIcon("lc");
export const Flag_mf = lazyIcon("mf");
export const Flag_pm = lazyIcon("pm");
export const Flag_vc = lazyIcon("vc");
export const Flag_ws = lazyIcon("ws");
export const Flag_sm = lazyIcon("sm");
export const Flag_st = lazyIcon("st");
export const Flag_sa = lazyIcon("sa");
export const Flag_gb_sct = lazyIcon("gb-sct");
export const Flag_sn = lazyIcon("sn");
export const Flag_rs = lazyIcon("rs");
export const Flag_sc = lazyIcon("sc");
export const Flag_sl = lazyIcon("sl");
export const Flag_sg = lazyIcon("sg");
export const Flag_sx = lazyIcon("sx");
export const Flag_sk = lazyIcon("sk");
export const Flag_si = lazyIcon("si");
export const Flag_sb = lazyIcon("sb");
export const Flag_so = lazyIcon("so");
export const Flag_za = lazyIcon("za");
export const Flag_gs = lazyIcon("gs");
export const Flag_kr = lazyIcon("kr");
export const Flag_ss = lazyIcon("ss");
// export const Flag_es = lazyIcon("es");
export const Flag_lk = lazyIcon("lk");
export const Flag_ps = lazyIcon("ps");
export const Flag_sd = lazyIcon("sd");
export const Flag_sr = lazyIcon("sr");
export const Flag_sj = lazyIcon("sj");
export const Flag_se = lazyIcon("se");
export const Flag_ch = lazyIcon("ch");
export const Flag_sy = lazyIcon("sy");
export const Flag_tw = lazyIcon("tw");
export const Flag_tj = lazyIcon("tj");
export const Flag_tz = lazyIcon("tz");
export const Flag_th = lazyIcon("th");
export const Flag_tl = lazyIcon("tl");
export const Flag_tg = lazyIcon("tg");
export const Flag_tk = lazyIcon("tk");
export const Flag_to = lazyIcon("to");
export const Flag_tt = lazyIcon("tt");
export const Flag_sh_ta = lazyIcon("sh-ta");
export const Flag_tn = lazyIcon("tn");