@zonos/amino 3.4.51

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.
Files changed (1565) hide show
  1. package/FlagIndex-d4385066.js +1 -0
  2. package/_tslib-fe391a2e.js +1 -0
  3. package/all.d.ts +748 -0
  4. package/amino.css +167 -0
  5. package/animations/DropdownAnimation.d.ts +2 -0
  6. package/animations/DropdownAnimation.js +1 -0
  7. package/components/alert-dialog/AlertContext.d.ts +8 -0
  8. package/components/alert-dialog/AlertContext.js +1 -0
  9. package/components/alert-dialog/AlertDialog.d.ts +13 -0
  10. package/components/alert-dialog/AlertDialog.js +1 -0
  11. package/components/alert-dialog/useAlert.d.ts +1 -0
  12. package/components/alert-dialog/useAlert.js +1 -0
  13. package/components/avatar/AvatarBase.d.ts +24 -0
  14. package/components/avatar/AvatarBase.js +1 -0
  15. package/components/avatar/ImageAvatar.d.ts +6 -0
  16. package/components/avatar/ImageAvatar.js +1 -0
  17. package/components/avatar/UserAvatar.d.ts +4 -0
  18. package/components/avatar/UserAvatar.js +1 -0
  19. package/components/backdrop/Backdrop.d.ts +1 -0
  20. package/components/backdrop/Backdrop.js +1 -0
  21. package/components/badge/Badge.d.ts +20 -0
  22. package/components/badge/Badge.js +1 -0
  23. package/components/banner/Banner.d.ts +12 -0
  24. package/components/banner/Banner.js +1 -0
  25. package/components/button/Button.d.ts +42 -0
  26. package/components/button/Button.js +1 -0
  27. package/components/button/MenuButton.d.ts +8 -0
  28. package/components/button/MenuButton.js +1 -0
  29. package/components/button/RippleGroup.d.ts +20 -0
  30. package/components/button/RippleGroup.js +1 -0
  31. package/components/button/_Ripple.d.ts +14 -0
  32. package/components/button/_Ripple.js +1 -0
  33. package/components/button/useRipple.d.ts +17 -0
  34. package/components/button/useRipple.js +1 -0
  35. package/components/card/Card.d.ts +12 -0
  36. package/components/card/Card.js +1 -0
  37. package/components/checkbox/Checkbox.d.ts +12 -0
  38. package/components/checkbox/Checkbox.js +1 -0
  39. package/components/collapse/Collapse.d.ts +16 -0
  40. package/components/collapse/Collapse.js +1 -0
  41. package/components/confirm-dialog/ConfirmContext.d.ts +8 -0
  42. package/components/confirm-dialog/ConfirmContext.js +1 -0
  43. package/components/confirm-dialog/ConfirmDialog.d.ts +15 -0
  44. package/components/confirm-dialog/ConfirmDialog.js +1 -0
  45. package/components/confirm-dialog/useConfirm.d.ts +1 -0
  46. package/components/confirm-dialog/useConfirm.js +1 -0
  47. package/components/connection-map/ConnectionMap.d.ts +12 -0
  48. package/components/connection-map/ConnectionMap.js +1 -0
  49. package/components/cover-sheet/CoverSheet.d.ts +12 -0
  50. package/components/cover-sheet/CoverSheet.js +1 -0
  51. package/components/cover-sheet/CoverSheetActions.d.ts +11 -0
  52. package/components/cover-sheet/CoverSheetActions.js +1 -0
  53. package/components/currency/Currency.d.ts +8 -0
  54. package/components/currency/Currency.js +1 -0
  55. package/components/currency/DualCurrency.d.ts +17 -0
  56. package/components/currency/DualCurrency.js +1 -0
  57. package/components/danger-zone/DangerZone.d.ts +2 -0
  58. package/components/danger-zone/DangerZone.js +1 -0
  59. package/components/dark-mode-wrapper/DarkModeWrapper.d.ts +5 -0
  60. package/components/dark-mode-wrapper/DarkModeWrapper.js +1 -0
  61. package/components/dialog/Dialog.d.ts +24 -0
  62. package/components/dialog/Dialog.js +1 -0
  63. package/components/dialog/_BaseDialog.d.ts +14 -0
  64. package/components/dialog/_BaseDialog.js +1 -0
  65. package/components/divider/Divider.d.ts +7 -0
  66. package/components/divider/Divider.js +1 -0
  67. package/components/drop-zone/DropZone.d.ts +35 -0
  68. package/components/drop-zone/DropZone.js +1 -0
  69. package/components/file-upload/FileUpload.d.ts +31 -0
  70. package/components/file-upload/FileUpload.js +1 -0
  71. package/components/graph-explorer/GraphiqlExplorer.d.ts +26 -0
  72. package/components/graph-explorer/GraphiqlExplorer.js +1 -0
  73. package/components/graph-explorer/_Graphiql.js +1 -0
  74. package/components/graph-explorer/_GraphiqlContextWrapper.d.ts +10 -0
  75. package/components/graph-explorer/_GraphiqlContextWrapper.js +1 -0
  76. package/components/help-text/HelpText.d.ts +12 -0
  77. package/components/help-text/HelpText.js +1 -0
  78. package/components/input/Input.d.ts +19 -0
  79. package/components/input/Input.js +1 -0
  80. package/components/input/SearchInput.d.ts +22 -0
  81. package/components/input/SearchInput.js +1 -0
  82. package/components/input/input-type/_DateInput.d.ts +3 -0
  83. package/components/input/input-type/_DateInput.js +1 -0
  84. package/components/input/input-type/_FloatLabelInput.d.ts +67 -0
  85. package/components/input/input-type/_FloatLabelInput.js +1 -0
  86. package/components/input/input-type/_NumberInput.d.ts +3 -0
  87. package/components/input/input-type/_NumberInput.js +1 -0
  88. package/components/input/input-type/_PasswordInput.d.ts +3 -0
  89. package/components/input/input-type/_PasswordInput.js +1 -0
  90. package/components/input/input-type/_TimeInput.d.ts +3 -0
  91. package/components/input/input-type/_TimeInput.js +1 -0
  92. package/components/layout/Layout.d.ts +16 -0
  93. package/components/layout/Layout.js +1 -0
  94. package/components/layout/NavigationGroup.d.ts +19 -0
  95. package/components/layout/NavigationGroup.js +1 -0
  96. package/components/lightbox/LightBox.d.ts +23 -0
  97. package/components/lightbox/LightBox.js +1 -0
  98. package/components/list/CollapsibleList.d.ts +12 -0
  99. package/components/list/CollapsibleList.js +1 -0
  100. package/components/list/List.d.ts +8 -0
  101. package/components/list/List.js +1 -0
  102. package/components/list-item/ListItem.d.ts +17 -0
  103. package/components/list-item/ListItem.js +1 -0
  104. package/components/menu/Menu.d.ts +1 -0
  105. package/components/menu/Menu.js +1 -0
  106. package/components/menu/MenuItem.d.ts +9 -0
  107. package/components/menu/MenuItem.js +1 -0
  108. package/components/pivot-table/ActionPivotTable.d.ts +64 -0
  109. package/components/pivot-table/ActionPivotTable.js +1 -0
  110. package/components/pivot-table/PivotTable.d.ts +30 -0
  111. package/components/pivot-table/PivotTable.js +1 -0
  112. package/components/radio/Radio.d.ts +8 -0
  113. package/components/radio/Radio.js +1 -0
  114. package/components/radio/RadioGroup.d.ts +12 -0
  115. package/components/radio/RadioGroup.js +1 -0
  116. package/components/rest-state/RestState.d.ts +9 -0
  117. package/components/rest-state/RestState.js +1 -0
  118. package/components/rich-checkbox/RichCheckbox.d.ts +14 -0
  119. package/components/rich-checkbox/RichCheckbox.js +1 -0
  120. package/components/rich-radio/RichRadio.d.ts +25 -0
  121. package/components/rich-radio/RichRadio.js +1 -0
  122. package/components/rounded-icon/RoundedIcon.d.ts +14 -0
  123. package/components/rounded-icon/RoundedIcon.js +1 -0
  124. package/components/section/HSection.d.ts +18 -0
  125. package/components/section/HSection.js +1 -0
  126. package/components/section/VSection.d.ts +9 -0
  127. package/components/section/VSection.js +1 -0
  128. package/components/section/_SectionHeader.d.ts +7 -0
  129. package/components/section/_SectionHeader.js +1 -0
  130. package/components/section/_SectionInnerWrapper.d.ts +7 -0
  131. package/components/section/_SectionInnerWrapper.js +1 -0
  132. package/components/section/_SectionSubheader.d.ts +7 -0
  133. package/components/section/_SectionSubheader.js +1 -0
  134. package/components/select/CountryMultiSelect.d.ts +17 -0
  135. package/components/select/CountryMultiSelect.js +1 -0
  136. package/components/select/CountryPhoneSelect.d.ts +18 -0
  137. package/components/select/CountryPhoneSelect.js +1 -0
  138. package/components/select/CountrySelect.d.ts +15 -0
  139. package/components/select/CountrySelect.js +1 -0
  140. package/components/select/MultiSelect.d.ts +26 -0
  141. package/components/select/MultiSelect.js +1 -0
  142. package/components/select/Select.d.ts +28 -0
  143. package/components/select/Select.js +1 -0
  144. package/components/select/_StyledReactSelect.d.ts +20 -0
  145. package/components/select/_StyledReactSelect.js +1 -0
  146. package/components/skeleton/Skeleton.d.ts +15 -0
  147. package/components/skeleton/Skeleton.js +1 -0
  148. package/components/slide-over/SlideOver.d.ts +13 -0
  149. package/components/slide-over/SlideOver.js +1 -0
  150. package/components/slider/Slider.d.ts +20 -0
  151. package/components/slider/Slider.js +1 -0
  152. package/components/sortable-list/SortableList.d.ts +10 -0
  153. package/components/sortable-list/SortableList.js +1 -0
  154. package/components/sortable-list/SortableListDeps.d.ts +2 -0
  155. package/components/sortable-list/SortableListDeps.js +1 -0
  156. package/components/sortable-list/SortableListItem.d.ts +9 -0
  157. package/components/sortable-list/SortableListItem.js +1 -0
  158. package/components/spinner/Spinner.d.ts +9 -0
  159. package/components/spinner/Spinner.js +1 -0
  160. package/components/stack/GridSpacing.d.ts +2 -0
  161. package/components/stack/GridSpacing.js +1 -0
  162. package/components/stack/HStack.d.ts +9 -0
  163. package/components/stack/HStack.js +1 -0
  164. package/components/stack/Stack.d.ts +12 -0
  165. package/components/stack/Stack.js +1 -0
  166. package/components/stack/VStack.d.ts +9 -0
  167. package/components/stack/VStack.js +1 -0
  168. package/components/styles/ColorPalette.d.ts +2 -0
  169. package/components/styles/ColorPalette.js +1 -0
  170. package/components/styles/Shadow.d.ts +2 -0
  171. package/components/styles/Shadow.js +1 -0
  172. package/components/surface/Surface.d.ts +10 -0
  173. package/components/surface/Surface.js +1 -0
  174. package/components/switch/Switch.d.ts +11 -0
  175. package/components/switch/Switch.js +1 -0
  176. package/components/table/Table.d.ts +7 -0
  177. package/components/table/Table.js +1 -0
  178. package/components/table/TableBody.d.ts +6 -0
  179. package/components/table/TableBody.js +1 -0
  180. package/components/table/TableCell.d.ts +14 -0
  181. package/components/table/TableCell.js +1 -0
  182. package/components/table/TableFooter.d.ts +6 -0
  183. package/components/table/TableFooter.js +1 -0
  184. package/components/table/TableHead.d.ts +6 -0
  185. package/components/table/TableHead.js +1 -0
  186. package/components/table/TableRow.d.ts +9 -0
  187. package/components/table/TableRow.js +1 -0
  188. package/components/table/TableRowCollapse.d.ts +13 -0
  189. package/components/table/TableRowCollapse.js +1 -0
  190. package/components/tabs/Tabs.d.ts +19 -0
  191. package/components/tabs/Tabs.js +1 -0
  192. package/components/tag/Tag.d.ts +9 -0
  193. package/components/tag/Tag.js +1 -0
  194. package/components/text/LegacyText.d.ts +10 -0
  195. package/components/text/LegacyText.js +1 -0
  196. package/components/text/Text.d.ts +104 -0
  197. package/components/text/Text.js +1 -0
  198. package/components/text-avatar/TextAvatar.d.ts +5 -0
  199. package/components/text-avatar/TextAvatar.js +1 -0
  200. package/components/textarea/Textarea.d.ts +11 -0
  201. package/components/textarea/Textarea.js +1 -0
  202. package/components/thumbnail/Thumbnail.d.ts +21 -0
  203. package/components/thumbnail/Thumbnail.js +1 -0
  204. package/components/toast/Toast.d.ts +10 -0
  205. package/components/toast/Toast.js +1 -0
  206. package/components/toast/ToastContext.d.ts +10 -0
  207. package/components/toast/ToastContext.js +1 -0
  208. package/components/tooltip/Tooltip.d.ts +13 -0
  209. package/components/tooltip/Tooltip.js +1 -0
  210. package/graphiql.css +2390 -0
  211. package/icons/ArrowDownDuotoneIcon.d.ts +3 -0
  212. package/icons/ArrowDownDuotoneIcon.js +1 -0
  213. package/icons/ArrowDownIcon.d.ts +3 -0
  214. package/icons/ArrowDownIcon.js +1 -0
  215. package/icons/ArrowDownWhiteIcon.d.ts +3 -0
  216. package/icons/ArrowDownWhiteIcon.js +1 -0
  217. package/icons/ArrowLeftDuotoneIcon.d.ts +3 -0
  218. package/icons/ArrowLeftDuotoneIcon.js +1 -0
  219. package/icons/ArrowLeftIcon.d.ts +3 -0
  220. package/icons/ArrowLeftIcon.js +1 -0
  221. package/icons/ArrowLeftWhiteIcon.d.ts +3 -0
  222. package/icons/ArrowLeftWhiteIcon.js +1 -0
  223. package/icons/ArrowRightDuotoneIcon.d.ts +3 -0
  224. package/icons/ArrowRightDuotoneIcon.js +1 -0
  225. package/icons/ArrowRightIcon.d.ts +3 -0
  226. package/icons/ArrowRightIcon.js +1 -0
  227. package/icons/ArrowRightWhiteIcon.d.ts +3 -0
  228. package/icons/ArrowRightWhiteIcon.js +1 -0
  229. package/icons/ArrowSwapDuotoneIcon.d.ts +6 -0
  230. package/icons/ArrowSwapDuotoneIcon.js +1 -0
  231. package/icons/ArrowSwapIcon.d.ts +3 -0
  232. package/icons/ArrowSwapIcon.js +1 -0
  233. package/icons/ArrowSwapWhiteIcon.d.ts +3 -0
  234. package/icons/ArrowSwapWhiteIcon.js +1 -0
  235. package/icons/ArrowUpDuotoneIcon.d.ts +3 -0
  236. package/icons/ArrowUpDuotoneIcon.js +1 -0
  237. package/icons/ArrowUpIcon.d.ts +3 -0
  238. package/icons/ArrowUpIcon.js +1 -0
  239. package/icons/ArrowUpWhiteIcon.d.ts +3 -0
  240. package/icons/ArrowUpWhiteIcon.js +1 -0
  241. package/icons/BagDuotoneIcon.d.ts +6 -0
  242. package/icons/BagDuotoneIcon.js +1 -0
  243. package/icons/BagIcon.d.ts +3 -0
  244. package/icons/BagIcon.js +1 -0
  245. package/icons/BagWhiteIcon.d.ts +3 -0
  246. package/icons/BagWhiteIcon.js +1 -0
  247. package/icons/BankDuotoneIcon.d.ts +6 -0
  248. package/icons/BankDuotoneIcon.js +1 -0
  249. package/icons/BankIcon.d.ts +3 -0
  250. package/icons/BankIcon.js +1 -0
  251. package/icons/BankWhiteIcon.d.ts +3 -0
  252. package/icons/BankWhiteIcon.js +1 -0
  253. package/icons/BellDuotoneIcon.d.ts +6 -0
  254. package/icons/BellDuotoneIcon.js +1 -0
  255. package/icons/BellIcon.d.ts +3 -0
  256. package/icons/BellIcon.js +1 -0
  257. package/icons/BellOffDuotoneIcon.d.ts +6 -0
  258. package/icons/BellOffDuotoneIcon.js +1 -0
  259. package/icons/BellOffIcon.d.ts +3 -0
  260. package/icons/BellOffIcon.js +1 -0
  261. package/icons/BellOffWhiteIcon.d.ts +3 -0
  262. package/icons/BellOffWhiteIcon.js +1 -0
  263. package/icons/BellWhiteIcon.d.ts +3 -0
  264. package/icons/BellWhiteIcon.js +1 -0
  265. package/icons/BookDuotoneIcon.d.ts +6 -0
  266. package/icons/BookDuotoneIcon.js +1 -0
  267. package/icons/BookIcon.d.ts +3 -0
  268. package/icons/BookIcon.js +1 -0
  269. package/icons/BookWhiteIcon.d.ts +3 -0
  270. package/icons/BookWhiteIcon.js +1 -0
  271. package/icons/BookmarkAddDuotoneIcon.d.ts +6 -0
  272. package/icons/BookmarkAddDuotoneIcon.js +1 -0
  273. package/icons/BookmarkAddIcon.d.ts +3 -0
  274. package/icons/BookmarkAddIcon.js +1 -0
  275. package/icons/BookmarkAddWhiteIcon.d.ts +3 -0
  276. package/icons/BookmarkAddWhiteIcon.js +1 -0
  277. package/icons/BookmarkCheckDuotoneIcon.d.ts +6 -0
  278. package/icons/BookmarkCheckDuotoneIcon.js +1 -0
  279. package/icons/BookmarkCheckIcon.d.ts +3 -0
  280. package/icons/BookmarkCheckIcon.js +1 -0
  281. package/icons/BookmarkCheckWhiteIcon.d.ts +3 -0
  282. package/icons/BookmarkCheckWhiteIcon.js +1 -0
  283. package/icons/BookmarkDuotoneIcon.d.ts +3 -0
  284. package/icons/BookmarkDuotoneIcon.js +1 -0
  285. package/icons/BookmarkIcon.d.ts +3 -0
  286. package/icons/BookmarkIcon.js +1 -0
  287. package/icons/BookmarkOffDuotoneIcon.d.ts +6 -0
  288. package/icons/BookmarkOffDuotoneIcon.js +1 -0
  289. package/icons/BookmarkOffIcon.d.ts +3 -0
  290. package/icons/BookmarkOffIcon.js +1 -0
  291. package/icons/BookmarkOffWhiteIcon.d.ts +3 -0
  292. package/icons/BookmarkOffWhiteIcon.js +1 -0
  293. package/icons/BookmarkRemoveDuotoneIcon.d.ts +6 -0
  294. package/icons/BookmarkRemoveDuotoneIcon.js +1 -0
  295. package/icons/BookmarkRemoveIcon.d.ts +3 -0
  296. package/icons/BookmarkRemoveIcon.js +1 -0
  297. package/icons/BookmarkRemoveWhiteIcon.d.ts +3 -0
  298. package/icons/BookmarkRemoveWhiteIcon.js +1 -0
  299. package/icons/BookmarkSubtractDuotoneIcon.d.ts +6 -0
  300. package/icons/BookmarkSubtractDuotoneIcon.js +1 -0
  301. package/icons/BookmarkSubtractIcon.d.ts +3 -0
  302. package/icons/BookmarkSubtractIcon.js +1 -0
  303. package/icons/BookmarkSubtractWhiteIcon.d.ts +3 -0
  304. package/icons/BookmarkSubtractWhiteIcon.js +1 -0
  305. package/icons/BookmarkWhiteIcon.d.ts +3 -0
  306. package/icons/BookmarkWhiteIcon.js +1 -0
  307. package/icons/BoxesDuotoneIcon.d.ts +6 -0
  308. package/icons/BoxesDuotoneIcon.js +1 -0
  309. package/icons/BoxesIcon.d.ts +3 -0
  310. package/icons/BoxesIcon.js +1 -0
  311. package/icons/BoxesWhiteIcon.d.ts +3 -0
  312. package/icons/BoxesWhiteIcon.js +1 -0
  313. package/icons/BufferDuotoneIcon.d.ts +6 -0
  314. package/icons/BufferDuotoneIcon.js +1 -0
  315. package/icons/BufferIcon.d.ts +3 -0
  316. package/icons/BufferIcon.js +1 -0
  317. package/icons/BufferWhiteIcon.d.ts +3 -0
  318. package/icons/BufferWhiteIcon.js +1 -0
  319. package/icons/CalculatorDuotoneIcon.d.ts +6 -0
  320. package/icons/CalculatorDuotoneIcon.js +1 -0
  321. package/icons/CalculatorIcon.d.ts +3 -0
  322. package/icons/CalculatorIcon.js +1 -0
  323. package/icons/CalculatorWhiteIcon.d.ts +3 -0
  324. package/icons/CalculatorWhiteIcon.js +1 -0
  325. package/icons/CalendarDuotoneIcon.d.ts +6 -0
  326. package/icons/CalendarDuotoneIcon.js +1 -0
  327. package/icons/CalendarIcon.d.ts +3 -0
  328. package/icons/CalendarIcon.js +1 -0
  329. package/icons/CalendarWhiteIcon.d.ts +3 -0
  330. package/icons/CalendarWhiteIcon.js +1 -0
  331. package/icons/CardDuotoneIcon.d.ts +6 -0
  332. package/icons/CardDuotoneIcon.js +1 -0
  333. package/icons/CardIcon.d.ts +3 -0
  334. package/icons/CardIcon.js +1 -0
  335. package/icons/CardWhiteIcon.d.ts +3 -0
  336. package/icons/CardWhiteIcon.js +1 -0
  337. package/icons/CaretDownDuotoneIcon.d.ts +3 -0
  338. package/icons/CaretDownDuotoneIcon.js +1 -0
  339. package/icons/CaretDownIcon.d.ts +3 -0
  340. package/icons/CaretDownIcon.js +1 -0
  341. package/icons/CaretDownWhiteIcon.d.ts +3 -0
  342. package/icons/CaretDownWhiteIcon.js +1 -0
  343. package/icons/CaretLeftDuotoneIcon.d.ts +3 -0
  344. package/icons/CaretLeftDuotoneIcon.js +1 -0
  345. package/icons/CaretLeftIcon.d.ts +3 -0
  346. package/icons/CaretLeftIcon.js +1 -0
  347. package/icons/CaretLeftWhiteIcon.d.ts +3 -0
  348. package/icons/CaretLeftWhiteIcon.js +1 -0
  349. package/icons/CaretRightDuotoneIcon.d.ts +3 -0
  350. package/icons/CaretRightDuotoneIcon.js +1 -0
  351. package/icons/CaretRightIcon.d.ts +3 -0
  352. package/icons/CaretRightIcon.js +1 -0
  353. package/icons/CaretRightWhiteIcon.d.ts +3 -0
  354. package/icons/CaretRightWhiteIcon.js +1 -0
  355. package/icons/CaretUpDuotoneIcon.d.ts +3 -0
  356. package/icons/CaretUpDuotoneIcon.js +1 -0
  357. package/icons/CaretUpIcon.d.ts +3 -0
  358. package/icons/CaretUpIcon.js +1 -0
  359. package/icons/CaretUpWhiteIcon.d.ts +3 -0
  360. package/icons/CaretUpWhiteIcon.js +1 -0
  361. package/icons/CartDuotoneIcon.d.ts +6 -0
  362. package/icons/CartDuotoneIcon.js +1 -0
  363. package/icons/CartIcon.d.ts +3 -0
  364. package/icons/CartIcon.js +1 -0
  365. package/icons/CartWhiteIcon.d.ts +3 -0
  366. package/icons/CartWhiteIcon.js +1 -0
  367. package/icons/ChartDuotoneIcon.d.ts +6 -0
  368. package/icons/ChartDuotoneIcon.js +1 -0
  369. package/icons/ChartIcon.d.ts +3 -0
  370. package/icons/ChartIcon.js +1 -0
  371. package/icons/ChartWhiteIcon.d.ts +3 -0
  372. package/icons/ChartWhiteIcon.js +1 -0
  373. package/icons/CheckCircleDuotoneIcon.d.ts +6 -0
  374. package/icons/CheckCircleDuotoneIcon.js +1 -0
  375. package/icons/CheckCircleIcon.d.ts +3 -0
  376. package/icons/CheckCircleIcon.js +1 -0
  377. package/icons/CheckCircleWhiteIcon.d.ts +3 -0
  378. package/icons/CheckCircleWhiteIcon.js +1 -0
  379. package/icons/CheckmarkDuotoneIcon.d.ts +3 -0
  380. package/icons/CheckmarkDuotoneIcon.js +1 -0
  381. package/icons/CheckmarkIcon.d.ts +3 -0
  382. package/icons/CheckmarkIcon.js +1 -0
  383. package/icons/CheckmarkWhiteIcon.d.ts +3 -0
  384. package/icons/CheckmarkWhiteIcon.js +1 -0
  385. package/icons/CheckoutDuotoneIcon.d.ts +6 -0
  386. package/icons/CheckoutDuotoneIcon.js +1 -0
  387. package/icons/CheckoutIcon.d.ts +3 -0
  388. package/icons/CheckoutIcon.js +1 -0
  389. package/icons/CheckoutWhiteIcon.d.ts +3 -0
  390. package/icons/CheckoutWhiteIcon.js +1 -0
  391. package/icons/ChevronDownCircleDuotoneIcon.d.ts +6 -0
  392. package/icons/ChevronDownCircleDuotoneIcon.js +1 -0
  393. package/icons/ChevronDownCircleIcon.d.ts +3 -0
  394. package/icons/ChevronDownCircleIcon.js +1 -0
  395. package/icons/ChevronDownCircleWhiteIcon.d.ts +3 -0
  396. package/icons/ChevronDownCircleWhiteIcon.js +1 -0
  397. package/icons/ChevronDownDuotoneIcon.d.ts +3 -0
  398. package/icons/ChevronDownDuotoneIcon.js +1 -0
  399. package/icons/ChevronDownIcon.d.ts +3 -0
  400. package/icons/ChevronDownIcon.js +1 -0
  401. package/icons/ChevronDownWhiteIcon.d.ts +3 -0
  402. package/icons/ChevronDownWhiteIcon.js +1 -0
  403. package/icons/ChevronLeftCircleDuotoneIcon.d.ts +6 -0
  404. package/icons/ChevronLeftCircleDuotoneIcon.js +1 -0
  405. package/icons/ChevronLeftCircleIcon.d.ts +3 -0
  406. package/icons/ChevronLeftCircleIcon.js +1 -0
  407. package/icons/ChevronLeftCircleWhiteIcon.d.ts +3 -0
  408. package/icons/ChevronLeftCircleWhiteIcon.js +1 -0
  409. package/icons/ChevronLeftDuotoneIcon.d.ts +3 -0
  410. package/icons/ChevronLeftDuotoneIcon.js +1 -0
  411. package/icons/ChevronLeftIcon.d.ts +3 -0
  412. package/icons/ChevronLeftIcon.js +1 -0
  413. package/icons/ChevronLeftWhiteIcon.d.ts +3 -0
  414. package/icons/ChevronLeftWhiteIcon.js +1 -0
  415. package/icons/ChevronRightCircleDuotoneIcon.d.ts +6 -0
  416. package/icons/ChevronRightCircleDuotoneIcon.js +1 -0
  417. package/icons/ChevronRightCircleIcon.d.ts +3 -0
  418. package/icons/ChevronRightCircleIcon.js +1 -0
  419. package/icons/ChevronRightCircleWhiteIcon.d.ts +3 -0
  420. package/icons/ChevronRightCircleWhiteIcon.js +1 -0
  421. package/icons/ChevronRightDuotoneIcon.d.ts +3 -0
  422. package/icons/ChevronRightDuotoneIcon.js +1 -0
  423. package/icons/ChevronRightIcon.d.ts +3 -0
  424. package/icons/ChevronRightIcon.js +1 -0
  425. package/icons/ChevronRightWhiteIcon.d.ts +3 -0
  426. package/icons/ChevronRightWhiteIcon.js +1 -0
  427. package/icons/ChevronUpCircleDuotoneIcon.d.ts +6 -0
  428. package/icons/ChevronUpCircleDuotoneIcon.js +1 -0
  429. package/icons/ChevronUpCircleIcon.d.ts +3 -0
  430. package/icons/ChevronUpCircleIcon.js +1 -0
  431. package/icons/ChevronUpCircleWhiteIcon.d.ts +3 -0
  432. package/icons/ChevronUpCircleWhiteIcon.js +1 -0
  433. package/icons/ChevronUpDuotoneIcon.d.ts +3 -0
  434. package/icons/ChevronUpDuotoneIcon.js +1 -0
  435. package/icons/ChevronUpIcon.d.ts +3 -0
  436. package/icons/ChevronUpIcon.js +1 -0
  437. package/icons/ChevronUpWhiteIcon.d.ts +3 -0
  438. package/icons/ChevronUpWhiteIcon.js +1 -0
  439. package/icons/CircleDuotoneIcon.d.ts +3 -0
  440. package/icons/CircleDuotoneIcon.js +1 -0
  441. package/icons/CircleIcon.d.ts +3 -0
  442. package/icons/CircleIcon.js +1 -0
  443. package/icons/CircleWhiteIcon.d.ts +3 -0
  444. package/icons/CircleWhiteIcon.js +1 -0
  445. package/icons/ClassifyDuotoneIcon.d.ts +6 -0
  446. package/icons/ClassifyDuotoneIcon.js +1 -0
  447. package/icons/ClassifyIcon.d.ts +3 -0
  448. package/icons/ClassifyIcon.js +1 -0
  449. package/icons/ClassifyWhiteIcon.d.ts +3 -0
  450. package/icons/ClassifyWhiteIcon.js +1 -0
  451. package/icons/ClearDuotoneIcon.d.ts +6 -0
  452. package/icons/ClearDuotoneIcon.js +1 -0
  453. package/icons/ClearIcon.d.ts +3 -0
  454. package/icons/ClearIcon.js +1 -0
  455. package/icons/ClearWhiteIcon.d.ts +3 -0
  456. package/icons/ClearWhiteIcon.js +1 -0
  457. package/icons/ClockDuotoneIcon.d.ts +6 -0
  458. package/icons/ClockDuotoneIcon.js +1 -0
  459. package/icons/ClockIcon.d.ts +3 -0
  460. package/icons/ClockIcon.js +1 -0
  461. package/icons/ClockWhiteIcon.d.ts +3 -0
  462. package/icons/ClockWhiteIcon.js +1 -0
  463. package/icons/CodeCircleDuotoneIcon.d.ts +6 -0
  464. package/icons/CodeCircleDuotoneIcon.js +1 -0
  465. package/icons/CodeCircleIcon.d.ts +3 -0
  466. package/icons/CodeCircleIcon.js +1 -0
  467. package/icons/CodeCircleWhiteIcon.d.ts +3 -0
  468. package/icons/CodeCircleWhiteIcon.js +1 -0
  469. package/icons/CodeDuotoneIcon.d.ts +6 -0
  470. package/icons/CodeDuotoneIcon.js +1 -0
  471. package/icons/CodeIcon.d.ts +3 -0
  472. package/icons/CodeIcon.js +1 -0
  473. package/icons/CodeWhiteIcon.d.ts +3 -0
  474. package/icons/CodeWhiteIcon.js +1 -0
  475. package/icons/CoinsDuotoneIcon.d.ts +6 -0
  476. package/icons/CoinsDuotoneIcon.js +1 -0
  477. package/icons/CoinsIcon.d.ts +3 -0
  478. package/icons/CoinsIcon.js +1 -0
  479. package/icons/CoinsWhiteIcon.d.ts +3 -0
  480. package/icons/CoinsWhiteIcon.js +1 -0
  481. package/icons/CommentDuotoneIcon.d.ts +6 -0
  482. package/icons/CommentDuotoneIcon.js +1 -0
  483. package/icons/CommentIcon.d.ts +3 -0
  484. package/icons/CommentIcon.js +1 -0
  485. package/icons/CommentWhiteIcon.d.ts +3 -0
  486. package/icons/CommentWhiteIcon.js +1 -0
  487. package/icons/CopyDuotoneIcon.d.ts +6 -0
  488. package/icons/CopyDuotoneIcon.js +1 -0
  489. package/icons/CopyIcon.d.ts +3 -0
  490. package/icons/CopyIcon.js +1 -0
  491. package/icons/CopyWhiteIcon.d.ts +3 -0
  492. package/icons/CopyWhiteIcon.js +1 -0
  493. package/icons/CubeDuotoneIcon.d.ts +6 -0
  494. package/icons/CubeDuotoneIcon.js +1 -0
  495. package/icons/CubeIcon.d.ts +3 -0
  496. package/icons/CubeIcon.js +1 -0
  497. package/icons/CubeWhiteIcon.d.ts +3 -0
  498. package/icons/CubeWhiteIcon.js +1 -0
  499. package/icons/DashboardDuotoneIcon.d.ts +6 -0
  500. package/icons/DashboardDuotoneIcon.js +1 -0
  501. package/icons/DashboardIcon.d.ts +3 -0
  502. package/icons/DashboardIcon.js +1 -0
  503. package/icons/DashboardWhiteIcon.d.ts +3 -0
  504. package/icons/DashboardWhiteIcon.js +1 -0
  505. package/icons/DiamondDuotoneIcon.d.ts +3 -0
  506. package/icons/DiamondDuotoneIcon.js +1 -0
  507. package/icons/DiamondIcon.d.ts +3 -0
  508. package/icons/DiamondIcon.js +1 -0
  509. package/icons/DiamondWhiteIcon.d.ts +3 -0
  510. package/icons/DiamondWhiteIcon.js +1 -0
  511. package/icons/DislikeDuotoneIcon.d.ts +6 -0
  512. package/icons/DislikeDuotoneIcon.js +1 -0
  513. package/icons/DislikeIcon.d.ts +3 -0
  514. package/icons/DislikeIcon.js +1 -0
  515. package/icons/DislikeWhiteIcon.d.ts +3 -0
  516. package/icons/DislikeWhiteIcon.js +1 -0
  517. package/icons/DocsDuotoneIcon.d.ts +6 -0
  518. package/icons/DocsDuotoneIcon.js +1 -0
  519. package/icons/DocsIcon.d.ts +3 -0
  520. package/icons/DocsIcon.js +1 -0
  521. package/icons/DocsWhiteIcon.d.ts +3 -0
  522. package/icons/DocsWhiteIcon.js +1 -0
  523. package/icons/DollarDuotoneIcon.d.ts +6 -0
  524. package/icons/DollarDuotoneIcon.js +1 -0
  525. package/icons/DollarIcon.d.ts +3 -0
  526. package/icons/DollarIcon.js +1 -0
  527. package/icons/DollarWhiteIcon.d.ts +3 -0
  528. package/icons/DollarWhiteIcon.js +1 -0
  529. package/icons/DoubleChevronDuotoneIcon.d.ts +6 -0
  530. package/icons/DoubleChevronDuotoneIcon.js +1 -0
  531. package/icons/DoubleChevronIcon.d.ts +3 -0
  532. package/icons/DoubleChevronIcon.js +1 -0
  533. package/icons/DoubleChevronWhiteIcon.d.ts +3 -0
  534. package/icons/DoubleChevronWhiteIcon.js +1 -0
  535. package/icons/DragDuotoneIcon.d.ts +6 -0
  536. package/icons/DragDuotoneIcon.js +1 -0
  537. package/icons/DragIcon.d.ts +3 -0
  538. package/icons/DragIcon.js +1 -0
  539. package/icons/DragWhiteIcon.d.ts +3 -0
  540. package/icons/DragWhiteIcon.js +1 -0
  541. package/icons/EditDuotoneIcon.d.ts +6 -0
  542. package/icons/EditDuotoneIcon.js +1 -0
  543. package/icons/EditIcon.d.ts +3 -0
  544. package/icons/EditIcon.js +1 -0
  545. package/icons/EditWhiteIcon.d.ts +3 -0
  546. package/icons/EditWhiteIcon.js +1 -0
  547. package/icons/ExclamationMarkDuotoneIcon.d.ts +6 -0
  548. package/icons/ExclamationMarkDuotoneIcon.js +1 -0
  549. package/icons/ExclamationMarkIcon.d.ts +3 -0
  550. package/icons/ExclamationMarkIcon.js +1 -0
  551. package/icons/ExclamationMarkWhiteIcon.d.ts +3 -0
  552. package/icons/ExclamationMarkWhiteIcon.js +1 -0
  553. package/icons/ExportDuotoneIcon.d.ts +6 -0
  554. package/icons/ExportDuotoneIcon.js +1 -0
  555. package/icons/ExportIcon.d.ts +3 -0
  556. package/icons/ExportIcon.js +1 -0
  557. package/icons/ExportWhiteIcon.d.ts +3 -0
  558. package/icons/ExportWhiteIcon.js +1 -0
  559. package/icons/ExternalDuotoneIcon.d.ts +6 -0
  560. package/icons/ExternalDuotoneIcon.js +1 -0
  561. package/icons/ExternalIcon.d.ts +3 -0
  562. package/icons/ExternalIcon.js +1 -0
  563. package/icons/ExternalWhiteIcon.d.ts +3 -0
  564. package/icons/ExternalWhiteIcon.js +1 -0
  565. package/icons/EyeDuotoneIcon.d.ts +6 -0
  566. package/icons/EyeDuotoneIcon.js +1 -0
  567. package/icons/EyeIcon.d.ts +3 -0
  568. package/icons/EyeIcon.js +1 -0
  569. package/icons/EyeOffDuotoneIcon.d.ts +6 -0
  570. package/icons/EyeOffDuotoneIcon.js +1 -0
  571. package/icons/EyeOffIcon.d.ts +3 -0
  572. package/icons/EyeOffIcon.js +1 -0
  573. package/icons/EyeOffWhiteIcon.d.ts +3 -0
  574. package/icons/EyeOffWhiteIcon.js +1 -0
  575. package/icons/EyeWhiteIcon.d.ts +3 -0
  576. package/icons/EyeWhiteIcon.js +1 -0
  577. package/icons/FileDuotoneIcon.d.ts +6 -0
  578. package/icons/FileDuotoneIcon.js +1 -0
  579. package/icons/FileIcon.d.ts +3 -0
  580. package/icons/FileIcon.js +1 -0
  581. package/icons/FileUploadDuotoneIcon.d.ts +6 -0
  582. package/icons/FileUploadDuotoneIcon.js +1 -0
  583. package/icons/FileUploadIcon.d.ts +3 -0
  584. package/icons/FileUploadIcon.js +1 -0
  585. package/icons/FileUploadWhiteIcon.d.ts +3 -0
  586. package/icons/FileUploadWhiteIcon.js +1 -0
  587. package/icons/FileWhiteIcon.d.ts +3 -0
  588. package/icons/FileWhiteIcon.js +1 -0
  589. package/icons/FilterDuotoneIcon.d.ts +3 -0
  590. package/icons/FilterDuotoneIcon.js +1 -0
  591. package/icons/FilterIcon.d.ts +3 -0
  592. package/icons/FilterIcon.js +1 -0
  593. package/icons/FilterWhiteIcon.d.ts +3 -0
  594. package/icons/FilterWhiteIcon.js +1 -0
  595. package/icons/FolderListDuotoneIcon.d.ts +6 -0
  596. package/icons/FolderListDuotoneIcon.js +1 -0
  597. package/icons/FolderListIcon.d.ts +3 -0
  598. package/icons/FolderListIcon.js +1 -0
  599. package/icons/FolderListWhiteIcon.d.ts +3 -0
  600. package/icons/FolderListWhiteIcon.js +1 -0
  601. package/icons/FolderUploadDuotoneIcon.d.ts +6 -0
  602. package/icons/FolderUploadDuotoneIcon.js +1 -0
  603. package/icons/FolderUploadIcon.d.ts +3 -0
  604. package/icons/FolderUploadIcon.js +1 -0
  605. package/icons/FolderUploadWhiteIcon.d.ts +3 -0
  606. package/icons/FolderUploadWhiteIcon.js +1 -0
  607. package/icons/GridDuotoneIcon.d.ts +6 -0
  608. package/icons/GridDuotoneIcon.js +1 -0
  609. package/icons/GridIcon.d.ts +3 -0
  610. package/icons/GridIcon.js +1 -0
  611. package/icons/GridWhiteIcon.d.ts +3 -0
  612. package/icons/GridWhiteIcon.js +1 -0
  613. package/icons/HelloDuotoneIcon.d.ts +6 -0
  614. package/icons/HelloDuotoneIcon.js +1 -0
  615. package/icons/HelloIcon.d.ts +3 -0
  616. package/icons/HelloIcon.js +1 -0
  617. package/icons/HelloWhiteIcon.d.ts +3 -0
  618. package/icons/HelloWhiteIcon.js +1 -0
  619. package/icons/HelpDuotoneIcon.d.ts +6 -0
  620. package/icons/HelpDuotoneIcon.js +1 -0
  621. package/icons/HelpIcon.d.ts +3 -0
  622. package/icons/HelpIcon.js +1 -0
  623. package/icons/HelpWhiteIcon.d.ts +3 -0
  624. package/icons/HelpWhiteIcon.js +1 -0
  625. package/icons/HexagonDuotoneIcon.d.ts +3 -0
  626. package/icons/HexagonDuotoneIcon.js +1 -0
  627. package/icons/HexagonIcon.d.ts +3 -0
  628. package/icons/HexagonIcon.js +1 -0
  629. package/icons/HexagonWhiteIcon.d.ts +3 -0
  630. package/icons/HexagonWhiteIcon.js +1 -0
  631. package/icons/HomeDuotoneIcon.d.ts +6 -0
  632. package/icons/HomeDuotoneIcon.js +1 -0
  633. package/icons/HomeIcon.d.ts +3 -0
  634. package/icons/HomeIcon.js +1 -0
  635. package/icons/HomeWhiteIcon.d.ts +3 -0
  636. package/icons/HomeWhiteIcon.js +1 -0
  637. package/icons/IconIndex.d.ts +394 -0
  638. package/icons/IconIndex.js +1 -0
  639. package/icons/ImageDuotoneIcon.d.ts +6 -0
  640. package/icons/ImageDuotoneIcon.js +1 -0
  641. package/icons/ImageIcon.d.ts +3 -0
  642. package/icons/ImageIcon.js +1 -0
  643. package/icons/ImageWhiteIcon.d.ts +3 -0
  644. package/icons/ImageWhiteIcon.js +1 -0
  645. package/icons/ImportDuotoneIcon.d.ts +6 -0
  646. package/icons/ImportDuotoneIcon.js +1 -0
  647. package/icons/ImportIcon.d.ts +3 -0
  648. package/icons/ImportIcon.js +1 -0
  649. package/icons/ImportWhiteIcon.d.ts +3 -0
  650. package/icons/ImportWhiteIcon.js +1 -0
  651. package/icons/InfoDuotoneIcon.d.ts +6 -0
  652. package/icons/InfoDuotoneIcon.js +1 -0
  653. package/icons/InfoIcon.d.ts +3 -0
  654. package/icons/InfoIcon.js +1 -0
  655. package/icons/InfoWhiteIcon.d.ts +3 -0
  656. package/icons/InfoWhiteIcon.js +1 -0
  657. package/icons/IntegrationDuotoneIcon.d.ts +6 -0
  658. package/icons/IntegrationDuotoneIcon.js +1 -0
  659. package/icons/IntegrationIcon.d.ts +3 -0
  660. package/icons/IntegrationIcon.js +1 -0
  661. package/icons/IntegrationWhiteIcon.d.ts +3 -0
  662. package/icons/IntegrationWhiteIcon.js +1 -0
  663. package/icons/LandedCostDuotoneIcon.d.ts +6 -0
  664. package/icons/LandedCostDuotoneIcon.js +1 -0
  665. package/icons/LandedCostIcon.d.ts +3 -0
  666. package/icons/LandedCostIcon.js +1 -0
  667. package/icons/LandedCostWhiteIcon.d.ts +3 -0
  668. package/icons/LandedCostWhiteIcon.js +1 -0
  669. package/icons/LaptopDuotoneIcon.d.ts +6 -0
  670. package/icons/LaptopDuotoneIcon.js +1 -0
  671. package/icons/LaptopIcon.d.ts +3 -0
  672. package/icons/LaptopIcon.js +1 -0
  673. package/icons/LaptopWhiteIcon.d.ts +3 -0
  674. package/icons/LaptopWhiteIcon.js +1 -0
  675. package/icons/LightDuotoneIcon.d.ts +6 -0
  676. package/icons/LightDuotoneIcon.js +1 -0
  677. package/icons/LightIcon.d.ts +3 -0
  678. package/icons/LightIcon.js +1 -0
  679. package/icons/LightWhiteIcon.d.ts +3 -0
  680. package/icons/LightWhiteIcon.js +1 -0
  681. package/icons/LikeDuotoneIcon.d.ts +6 -0
  682. package/icons/LikeDuotoneIcon.js +1 -0
  683. package/icons/LikeIcon.d.ts +3 -0
  684. package/icons/LikeIcon.js +1 -0
  685. package/icons/LikeWhiteIcon.d.ts +3 -0
  686. package/icons/LikeWhiteIcon.js +1 -0
  687. package/icons/LineDownDuotoneIcon.d.ts +6 -0
  688. package/icons/LineDownDuotoneIcon.js +1 -0
  689. package/icons/LineDownIcon.d.ts +3 -0
  690. package/icons/LineDownIcon.js +1 -0
  691. package/icons/LineDownWhiteIcon.d.ts +3 -0
  692. package/icons/LineDownWhiteIcon.js +1 -0
  693. package/icons/LineUpDuotoneIcon.d.ts +6 -0
  694. package/icons/LineUpDuotoneIcon.js +1 -0
  695. package/icons/LineUpIcon.d.ts +3 -0
  696. package/icons/LineUpIcon.js +1 -0
  697. package/icons/LineUpWhiteIcon.d.ts +3 -0
  698. package/icons/LineUpWhiteIcon.js +1 -0
  699. package/icons/LinkDuotoneIcon.d.ts +6 -0
  700. package/icons/LinkDuotoneIcon.js +1 -0
  701. package/icons/LinkIcon.d.ts +3 -0
  702. package/icons/LinkIcon.js +1 -0
  703. package/icons/LinkWhiteIcon.d.ts +3 -0
  704. package/icons/LinkWhiteIcon.js +1 -0
  705. package/icons/LocationDuotoneIcon.d.ts +6 -0
  706. package/icons/LocationDuotoneIcon.js +1 -0
  707. package/icons/LocationIcon.d.ts +3 -0
  708. package/icons/LocationIcon.js +1 -0
  709. package/icons/LocationWhiteIcon.d.ts +3 -0
  710. package/icons/LocationWhiteIcon.js +1 -0
  711. package/icons/LockDuotoneIcon.d.ts +6 -0
  712. package/icons/LockDuotoneIcon.js +1 -0
  713. package/icons/LockIcon.d.ts +3 -0
  714. package/icons/LockIcon.js +1 -0
  715. package/icons/LockWhiteIcon.d.ts +3 -0
  716. package/icons/LockWhiteIcon.js +1 -0
  717. package/icons/LoginDuotoneIcon.d.ts +6 -0
  718. package/icons/LoginDuotoneIcon.js +1 -0
  719. package/icons/LoginIcon.d.ts +3 -0
  720. package/icons/LoginIcon.js +1 -0
  721. package/icons/LoginWhiteIcon.d.ts +3 -0
  722. package/icons/LoginWhiteIcon.js +1 -0
  723. package/icons/LogoutDuotoneIcon.d.ts +6 -0
  724. package/icons/LogoutDuotoneIcon.js +1 -0
  725. package/icons/LogoutIcon.d.ts +3 -0
  726. package/icons/LogoutIcon.js +1 -0
  727. package/icons/LogoutWhiteIcon.d.ts +3 -0
  728. package/icons/LogoutWhiteIcon.js +1 -0
  729. package/icons/MailDuotoneIcon.d.ts +6 -0
  730. package/icons/MailDuotoneIcon.js +1 -0
  731. package/icons/MailIcon.d.ts +3 -0
  732. package/icons/MailIcon.js +1 -0
  733. package/icons/MailWhiteIcon.d.ts +3 -0
  734. package/icons/MailWhiteIcon.js +1 -0
  735. package/icons/MenuDuotoneIcon.d.ts +6 -0
  736. package/icons/MenuDuotoneIcon.js +1 -0
  737. package/icons/MenuIcon.d.ts +3 -0
  738. package/icons/MenuIcon.js +1 -0
  739. package/icons/MenuWhiteIcon.d.ts +3 -0
  740. package/icons/MenuWhiteIcon.js +1 -0
  741. package/icons/MinusCircleDuotoneIcon.d.ts +6 -0
  742. package/icons/MinusCircleDuotoneIcon.js +1 -0
  743. package/icons/MinusCircleIcon.d.ts +3 -0
  744. package/icons/MinusCircleIcon.js +1 -0
  745. package/icons/MinusCircleWhiteIcon.d.ts +3 -0
  746. package/icons/MinusCircleWhiteIcon.js +1 -0
  747. package/icons/MinusDuotoneIcon.d.ts +3 -0
  748. package/icons/MinusDuotoneIcon.js +1 -0
  749. package/icons/MinusIcon.d.ts +3 -0
  750. package/icons/MinusIcon.js +1 -0
  751. package/icons/MinusWhiteIcon.d.ts +3 -0
  752. package/icons/MinusWhiteIcon.js +1 -0
  753. package/icons/MobileDuotoneIcon.d.ts +6 -0
  754. package/icons/MobileDuotoneIcon.js +1 -0
  755. package/icons/MobileIcon.d.ts +3 -0
  756. package/icons/MobileIcon.js +1 -0
  757. package/icons/MobileWhiteIcon.d.ts +3 -0
  758. package/icons/MobileWhiteIcon.js +1 -0
  759. package/icons/MoneyDuotoneIcon.d.ts +6 -0
  760. package/icons/MoneyDuotoneIcon.js +1 -0
  761. package/icons/MoneyIcon.d.ts +3 -0
  762. package/icons/MoneyIcon.js +1 -0
  763. package/icons/MoneyWhiteIcon.d.ts +3 -0
  764. package/icons/MoneyWhiteIcon.js +1 -0
  765. package/icons/MonitorDuotoneIcon.d.ts +6 -0
  766. package/icons/MonitorDuotoneIcon.js +1 -0
  767. package/icons/MonitorIcon.d.ts +3 -0
  768. package/icons/MonitorIcon.js +1 -0
  769. package/icons/MonitorWhiteIcon.d.ts +3 -0
  770. package/icons/MonitorWhiteIcon.js +1 -0
  771. package/icons/NightDuotoneIcon.d.ts +3 -0
  772. package/icons/NightDuotoneIcon.js +1 -0
  773. package/icons/NightIcon.d.ts +3 -0
  774. package/icons/NightIcon.js +1 -0
  775. package/icons/NightWhiteIcon.d.ts +3 -0
  776. package/icons/NightWhiteIcon.js +1 -0
  777. package/icons/PauseCircleDuotoneIcon.d.ts +6 -0
  778. package/icons/PauseCircleDuotoneIcon.js +1 -0
  779. package/icons/PauseCircleIcon.d.ts +3 -0
  780. package/icons/PauseCircleIcon.js +1 -0
  781. package/icons/PauseCircleWhiteIcon.d.ts +3 -0
  782. package/icons/PauseCircleWhiteIcon.js +1 -0
  783. package/icons/PercentBadgeDuotoneIcon.d.ts +6 -0
  784. package/icons/PercentBadgeDuotoneIcon.js +1 -0
  785. package/icons/PercentBadgeIcon.d.ts +3 -0
  786. package/icons/PercentBadgeIcon.js +1 -0
  787. package/icons/PercentBadgeWhiteIcon.d.ts +3 -0
  788. package/icons/PercentBadgeWhiteIcon.js +1 -0
  789. package/icons/PercentDuotoneIcon.d.ts +6 -0
  790. package/icons/PercentDuotoneIcon.js +1 -0
  791. package/icons/PercentIcon.d.ts +3 -0
  792. package/icons/PercentIcon.js +1 -0
  793. package/icons/PercentWhiteIcon.d.ts +3 -0
  794. package/icons/PercentWhiteIcon.js +1 -0
  795. package/icons/PlayCircleDuotoneIcon.d.ts +6 -0
  796. package/icons/PlayCircleDuotoneIcon.js +1 -0
  797. package/icons/PlayCircleIcon.d.ts +3 -0
  798. package/icons/PlayCircleIcon.js +1 -0
  799. package/icons/PlayCircleWhiteIcon.d.ts +3 -0
  800. package/icons/PlayCircleWhiteIcon.js +1 -0
  801. package/icons/PlayDuotoneIcon.d.ts +3 -0
  802. package/icons/PlayDuotoneIcon.js +1 -0
  803. package/icons/PlayIcon.d.ts +3 -0
  804. package/icons/PlayIcon.js +1 -0
  805. package/icons/PlayWhiteIcon.d.ts +3 -0
  806. package/icons/PlayWhiteIcon.js +1 -0
  807. package/icons/PlusCircleDuotoneIcon.d.ts +6 -0
  808. package/icons/PlusCircleDuotoneIcon.js +1 -0
  809. package/icons/PlusCircleIcon.d.ts +3 -0
  810. package/icons/PlusCircleIcon.js +1 -0
  811. package/icons/PlusCircleWhiteIcon.d.ts +3 -0
  812. package/icons/PlusCircleWhiteIcon.js +1 -0
  813. package/icons/PlusDuotoneIcon.d.ts +3 -0
  814. package/icons/PlusDuotoneIcon.js +1 -0
  815. package/icons/PlusIcon.d.ts +3 -0
  816. package/icons/PlusIcon.js +1 -0
  817. package/icons/PlusWhiteIcon.d.ts +3 -0
  818. package/icons/PlusWhiteIcon.js +1 -0
  819. package/icons/PrinterDuotoneIcon.d.ts +6 -0
  820. package/icons/PrinterDuotoneIcon.js +1 -0
  821. package/icons/PrinterIcon.d.ts +3 -0
  822. package/icons/PrinterIcon.js +1 -0
  823. package/icons/PrinterWhiteIcon.d.ts +3 -0
  824. package/icons/PrinterWhiteIcon.js +1 -0
  825. package/icons/RateDuotoneIcon.d.ts +6 -0
  826. package/icons/RateDuotoneIcon.js +1 -0
  827. package/icons/RateIcon.d.ts +3 -0
  828. package/icons/RateIcon.js +1 -0
  829. package/icons/RateWhiteIcon.d.ts +3 -0
  830. package/icons/RateWhiteIcon.js +1 -0
  831. package/icons/ReceiptDuotoneIcon.d.ts +6 -0
  832. package/icons/ReceiptDuotoneIcon.js +1 -0
  833. package/icons/ReceiptIcon.d.ts +3 -0
  834. package/icons/ReceiptIcon.js +1 -0
  835. package/icons/ReceiptWhiteIcon.d.ts +3 -0
  836. package/icons/ReceiptWhiteIcon.js +1 -0
  837. package/icons/RefreshDuotoneIcon.d.ts +6 -0
  838. package/icons/RefreshDuotoneIcon.js +1 -0
  839. package/icons/RefreshIcon.d.ts +3 -0
  840. package/icons/RefreshIcon.js +1 -0
  841. package/icons/RefreshWhiteIcon.d.ts +3 -0
  842. package/icons/RefreshWhiteIcon.js +1 -0
  843. package/icons/RemoveCircleDuotoneIcon.d.ts +6 -0
  844. package/icons/RemoveCircleDuotoneIcon.js +1 -0
  845. package/icons/RemoveCircleIcon.d.ts +3 -0
  846. package/icons/RemoveCircleIcon.js +1 -0
  847. package/icons/RemoveCircleWhiteIcon.d.ts +3 -0
  848. package/icons/RemoveCircleWhiteIcon.js +1 -0
  849. package/icons/RemoveDuotoneIcon.d.ts +3 -0
  850. package/icons/RemoveDuotoneIcon.js +1 -0
  851. package/icons/RemoveIcon.d.ts +3 -0
  852. package/icons/RemoveIcon.js +1 -0
  853. package/icons/RemoveWhiteIcon.d.ts +3 -0
  854. package/icons/RemoveWhiteIcon.js +1 -0
  855. package/icons/RestrictDuotoneIcon.d.ts +6 -0
  856. package/icons/RestrictDuotoneIcon.js +1 -0
  857. package/icons/RestrictIcon.d.ts +3 -0
  858. package/icons/RestrictIcon.js +1 -0
  859. package/icons/RestrictWhiteIcon.d.ts +3 -0
  860. package/icons/RestrictWhiteIcon.js +1 -0
  861. package/icons/RocketDuotoneIcon.d.ts +6 -0
  862. package/icons/RocketDuotoneIcon.js +1 -0
  863. package/icons/RocketIcon.d.ts +3 -0
  864. package/icons/RocketIcon.js +1 -0
  865. package/icons/RocketWhiteIcon.d.ts +3 -0
  866. package/icons/RocketWhiteIcon.js +1 -0
  867. package/icons/ScanDuotoneIcon.d.ts +6 -0
  868. package/icons/ScanDuotoneIcon.js +1 -0
  869. package/icons/ScanIcon.d.ts +3 -0
  870. package/icons/ScanIcon.js +1 -0
  871. package/icons/ScanWhiteIcon.d.ts +3 -0
  872. package/icons/ScanWhiteIcon.js +1 -0
  873. package/icons/ScreenDuotoneIcon.d.ts +6 -0
  874. package/icons/ScreenDuotoneIcon.js +1 -0
  875. package/icons/ScreenIcon.d.ts +3 -0
  876. package/icons/ScreenIcon.js +1 -0
  877. package/icons/ScreenWhiteIcon.d.ts +3 -0
  878. package/icons/ScreenWhiteIcon.js +1 -0
  879. package/icons/SearchDuotoneIcon.d.ts +3 -0
  880. package/icons/SearchDuotoneIcon.js +1 -0
  881. package/icons/SearchIcon.d.ts +3 -0
  882. package/icons/SearchIcon.js +1 -0
  883. package/icons/SearchWhiteIcon.d.ts +3 -0
  884. package/icons/SearchWhiteIcon.js +1 -0
  885. package/icons/SendDuotoneIcon.d.ts +6 -0
  886. package/icons/SendDuotoneIcon.js +1 -0
  887. package/icons/SendIcon.d.ts +3 -0
  888. package/icons/SendIcon.js +1 -0
  889. package/icons/SendWhiteIcon.d.ts +3 -0
  890. package/icons/SendWhiteIcon.js +1 -0
  891. package/icons/SettingsDuotoneIcon.d.ts +6 -0
  892. package/icons/SettingsDuotoneIcon.js +1 -0
  893. package/icons/SettingsIcon.d.ts +3 -0
  894. package/icons/SettingsIcon.js +1 -0
  895. package/icons/SettingsWhiteIcon.d.ts +3 -0
  896. package/icons/SettingsWhiteIcon.js +1 -0
  897. package/icons/ShoppingListDuotoneIcon.d.ts +6 -0
  898. package/icons/ShoppingListDuotoneIcon.js +1 -0
  899. package/icons/ShoppingListIcon.d.ts +3 -0
  900. package/icons/ShoppingListIcon.js +1 -0
  901. package/icons/ShoppingListWhiteIcon.d.ts +3 -0
  902. package/icons/ShoppingListWhiteIcon.js +1 -0
  903. package/icons/ShoppingTagDuotoneIcon.d.ts +6 -0
  904. package/icons/ShoppingTagDuotoneIcon.js +1 -0
  905. package/icons/ShoppingTagIcon.d.ts +6 -0
  906. package/icons/ShoppingTagIcon.js +1 -0
  907. package/icons/ShoppingTagWhiteIcon.d.ts +3 -0
  908. package/icons/ShoppingTagWhiteIcon.js +1 -0
  909. package/icons/SquareDuotoneIcon.d.ts +3 -0
  910. package/icons/SquareDuotoneIcon.js +1 -0
  911. package/icons/SquareIcon.d.ts +3 -0
  912. package/icons/SquareIcon.js +1 -0
  913. package/icons/SquareWhiteIcon.d.ts +3 -0
  914. package/icons/SquareWhiteIcon.js +1 -0
  915. package/icons/StarDuotoneIcon.d.ts +3 -0
  916. package/icons/StarDuotoneIcon.js +1 -0
  917. package/icons/StarIcon.d.ts +3 -0
  918. package/icons/StarIcon.js +1 -0
  919. package/icons/StarOffDuotoneIcon.d.ts +6 -0
  920. package/icons/StarOffDuotoneIcon.js +1 -0
  921. package/icons/StarOffIcon.d.ts +3 -0
  922. package/icons/StarOffIcon.js +1 -0
  923. package/icons/StarOffWhiteIcon.d.ts +3 -0
  924. package/icons/StarOffWhiteIcon.js +1 -0
  925. package/icons/StarWhiteIcon.d.ts +3 -0
  926. package/icons/StarWhiteIcon.js +1 -0
  927. package/icons/StarsDuotoneIcon.d.ts +6 -0
  928. package/icons/StarsDuotoneIcon.js +1 -0
  929. package/icons/StarsIcon.d.ts +3 -0
  930. package/icons/StarsIcon.js +1 -0
  931. package/icons/StarsWhiteIcon.d.ts +3 -0
  932. package/icons/StarsWhiteIcon.js +1 -0
  933. package/icons/SunnyDuotoneIcon.d.ts +6 -0
  934. package/icons/SunnyDuotoneIcon.js +1 -0
  935. package/icons/SunnyIcon.d.ts +3 -0
  936. package/icons/SunnyIcon.js +1 -0
  937. package/icons/SunnyWhiteIcon.d.ts +3 -0
  938. package/icons/SunnyWhiteIcon.js +1 -0
  939. package/icons/TagDuotoneIcon.d.ts +6 -0
  940. package/icons/TagDuotoneIcon.js +1 -0
  941. package/icons/TagIcon.d.ts +6 -0
  942. package/icons/TagIcon.js +1 -0
  943. package/icons/TagWhiteIcon.d.ts +3 -0
  944. package/icons/TagWhiteIcon.js +1 -0
  945. package/icons/ThreeDotDuotoneIcon.d.ts +3 -0
  946. package/icons/ThreeDotDuotoneIcon.js +1 -0
  947. package/icons/ThreeDotIcon.d.ts +3 -0
  948. package/icons/ThreeDotIcon.js +1 -0
  949. package/icons/ThreeDotWhiteIcon.d.ts +3 -0
  950. package/icons/ThreeDotWhiteIcon.js +1 -0
  951. package/icons/TotalLandedCostDuotoneIcon.d.ts +3 -0
  952. package/icons/TotalLandedCostDuotoneIcon.js +1 -0
  953. package/icons/TotalLandedCostIcon.d.ts +3 -0
  954. package/icons/TotalLandedCostIcon.js +1 -0
  955. package/icons/TotalLandedCostWhiteIcon.d.ts +3 -0
  956. package/icons/TotalLandedCostWhiteIcon.js +1 -0
  957. package/icons/TrashCanDuotoneIcon.d.ts +6 -0
  958. package/icons/TrashCanDuotoneIcon.js +1 -0
  959. package/icons/TrashCanIcon.d.ts +3 -0
  960. package/icons/TrashCanIcon.js +1 -0
  961. package/icons/TrashCanWhiteIcon.d.ts +3 -0
  962. package/icons/TrashCanWhiteIcon.js +1 -0
  963. package/icons/TriangleDuotoneIcon.d.ts +3 -0
  964. package/icons/TriangleDuotoneIcon.js +1 -0
  965. package/icons/TriangleIcon.d.ts +3 -0
  966. package/icons/TriangleIcon.js +1 -0
  967. package/icons/TriangleWhiteIcon.d.ts +3 -0
  968. package/icons/TriangleWhiteIcon.js +1 -0
  969. package/icons/TruckDuotoneIcon.d.ts +6 -0
  970. package/icons/TruckDuotoneIcon.js +1 -0
  971. package/icons/TruckIcon.d.ts +3 -0
  972. package/icons/TruckIcon.js +1 -0
  973. package/icons/TruckWhiteIcon.d.ts +3 -0
  974. package/icons/TruckWhiteIcon.js +1 -0
  975. package/icons/UserDuotoneIcon.d.ts +6 -0
  976. package/icons/UserDuotoneIcon.js +1 -0
  977. package/icons/UserIcon.d.ts +3 -0
  978. package/icons/UserIcon.js +1 -0
  979. package/icons/UserWhiteIcon.d.ts +3 -0
  980. package/icons/UserWhiteIcon.js +1 -0
  981. package/icons/UtahDuotoneIcon.d.ts +3 -0
  982. package/icons/UtahDuotoneIcon.js +1 -0
  983. package/icons/UtahIcon.d.ts +3 -0
  984. package/icons/UtahIcon.js +1 -0
  985. package/icons/UtahWhiteIcon.d.ts +3 -0
  986. package/icons/UtahWhiteIcon.js +1 -0
  987. package/icons/WarningDuotoneIcon.d.ts +6 -0
  988. package/icons/WarningDuotoneIcon.js +1 -0
  989. package/icons/WarningIcon.d.ts +3 -0
  990. package/icons/WarningIcon.js +1 -0
  991. package/icons/WarningWhiteIcon.d.ts +3 -0
  992. package/icons/WarningWhiteIcon.js +1 -0
  993. package/icons/custom/AvatarIcon.d.ts +3 -0
  994. package/icons/custom/AvatarIcon.js +1 -0
  995. package/icons/custom/ZonosIcon.d.ts +3 -0
  996. package/icons/custom/ZonosIcon.js +1 -0
  997. package/icons/flag-icon/FlagIcon.d.ts +14 -0
  998. package/icons/flag-icon/FlagIcon.js +1 -0
  999. package/icons/flag-icon/_FlagIconBase.d.ts +9 -0
  1000. package/icons/flag-icon/_FlagIconBase.js +1 -0
  1001. package/icons/flag-icon/useStableUniqueId.d.ts +1 -0
  1002. package/icons/flag-icon/useStableUniqueId.js +1 -0
  1003. package/icons/flags/AD.d.ts +7 -0
  1004. package/icons/flags/AD.js +1 -0
  1005. package/icons/flags/AE.d.ts +7 -0
  1006. package/icons/flags/AE.js +1 -0
  1007. package/icons/flags/AF.d.ts +7 -0
  1008. package/icons/flags/AF.js +1 -0
  1009. package/icons/flags/AG.d.ts +7 -0
  1010. package/icons/flags/AG.js +1 -0
  1011. package/icons/flags/AI.d.ts +7 -0
  1012. package/icons/flags/AI.js +1 -0
  1013. package/icons/flags/AL.d.ts +7 -0
  1014. package/icons/flags/AL.js +1 -0
  1015. package/icons/flags/AM.d.ts +7 -0
  1016. package/icons/flags/AM.js +1 -0
  1017. package/icons/flags/AO.d.ts +7 -0
  1018. package/icons/flags/AO.js +1 -0
  1019. package/icons/flags/AR.d.ts +7 -0
  1020. package/icons/flags/AR.js +1 -0
  1021. package/icons/flags/AS.d.ts +7 -0
  1022. package/icons/flags/AS.js +1 -0
  1023. package/icons/flags/AT.d.ts +7 -0
  1024. package/icons/flags/AT.js +1 -0
  1025. package/icons/flags/AU.d.ts +7 -0
  1026. package/icons/flags/AU.js +1 -0
  1027. package/icons/flags/AW.d.ts +7 -0
  1028. package/icons/flags/AW.js +1 -0
  1029. package/icons/flags/AX.d.ts +7 -0
  1030. package/icons/flags/AX.js +1 -0
  1031. package/icons/flags/AZ.d.ts +7 -0
  1032. package/icons/flags/AZ.js +1 -0
  1033. package/icons/flags/BA.d.ts +7 -0
  1034. package/icons/flags/BA.js +1 -0
  1035. package/icons/flags/BB.d.ts +7 -0
  1036. package/icons/flags/BB.js +1 -0
  1037. package/icons/flags/BD.d.ts +7 -0
  1038. package/icons/flags/BD.js +1 -0
  1039. package/icons/flags/BE.d.ts +7 -0
  1040. package/icons/flags/BE.js +1 -0
  1041. package/icons/flags/BF.d.ts +7 -0
  1042. package/icons/flags/BF.js +1 -0
  1043. package/icons/flags/BG.d.ts +7 -0
  1044. package/icons/flags/BG.js +1 -0
  1045. package/icons/flags/BH.d.ts +7 -0
  1046. package/icons/flags/BH.js +1 -0
  1047. package/icons/flags/BI.d.ts +7 -0
  1048. package/icons/flags/BI.js +1 -0
  1049. package/icons/flags/BJ.d.ts +7 -0
  1050. package/icons/flags/BJ.js +1 -0
  1051. package/icons/flags/BL.d.ts +7 -0
  1052. package/icons/flags/BL.js +1 -0
  1053. package/icons/flags/BM.d.ts +7 -0
  1054. package/icons/flags/BM.js +1 -0
  1055. package/icons/flags/BN.d.ts +7 -0
  1056. package/icons/flags/BN.js +1 -0
  1057. package/icons/flags/BO.d.ts +7 -0
  1058. package/icons/flags/BO.js +1 -0
  1059. package/icons/flags/BQ.d.ts +7 -0
  1060. package/icons/flags/BQ.js +1 -0
  1061. package/icons/flags/BR.d.ts +7 -0
  1062. package/icons/flags/BR.js +1 -0
  1063. package/icons/flags/BS.d.ts +7 -0
  1064. package/icons/flags/BS.js +1 -0
  1065. package/icons/flags/BT.d.ts +7 -0
  1066. package/icons/flags/BT.js +1 -0
  1067. package/icons/flags/BW.d.ts +7 -0
  1068. package/icons/flags/BW.js +1 -0
  1069. package/icons/flags/BY.d.ts +7 -0
  1070. package/icons/flags/BY.js +1 -0
  1071. package/icons/flags/BZ.d.ts +7 -0
  1072. package/icons/flags/BZ.js +1 -0
  1073. package/icons/flags/CA.d.ts +7 -0
  1074. package/icons/flags/CA.js +1 -0
  1075. package/icons/flags/CD.d.ts +7 -0
  1076. package/icons/flags/CD.js +1 -0
  1077. package/icons/flags/CF.d.ts +7 -0
  1078. package/icons/flags/CF.js +1 -0
  1079. package/icons/flags/CG.d.ts +7 -0
  1080. package/icons/flags/CG.js +1 -0
  1081. package/icons/flags/CH.d.ts +7 -0
  1082. package/icons/flags/CH.js +1 -0
  1083. package/icons/flags/CI.d.ts +7 -0
  1084. package/icons/flags/CI.js +1 -0
  1085. package/icons/flags/CK.d.ts +7 -0
  1086. package/icons/flags/CK.js +1 -0
  1087. package/icons/flags/CL.d.ts +7 -0
  1088. package/icons/flags/CL.js +1 -0
  1089. package/icons/flags/CM.d.ts +7 -0
  1090. package/icons/flags/CM.js +1 -0
  1091. package/icons/flags/CN.d.ts +7 -0
  1092. package/icons/flags/CN.js +1 -0
  1093. package/icons/flags/CO.d.ts +7 -0
  1094. package/icons/flags/CO.js +1 -0
  1095. package/icons/flags/CR.d.ts +7 -0
  1096. package/icons/flags/CR.js +1 -0
  1097. package/icons/flags/CU.d.ts +7 -0
  1098. package/icons/flags/CU.js +1 -0
  1099. package/icons/flags/CV.d.ts +7 -0
  1100. package/icons/flags/CV.js +1 -0
  1101. package/icons/flags/CW.d.ts +7 -0
  1102. package/icons/flags/CW.js +1 -0
  1103. package/icons/flags/CY.d.ts +7 -0
  1104. package/icons/flags/CY.js +1 -0
  1105. package/icons/flags/CZ.d.ts +7 -0
  1106. package/icons/flags/CZ.js +1 -0
  1107. package/icons/flags/DE.d.ts +7 -0
  1108. package/icons/flags/DE.js +1 -0
  1109. package/icons/flags/DJ.d.ts +7 -0
  1110. package/icons/flags/DJ.js +1 -0
  1111. package/icons/flags/DK.d.ts +7 -0
  1112. package/icons/flags/DK.js +1 -0
  1113. package/icons/flags/DM.d.ts +7 -0
  1114. package/icons/flags/DM.js +1 -0
  1115. package/icons/flags/DO.d.ts +7 -0
  1116. package/icons/flags/DO.js +1 -0
  1117. package/icons/flags/DZ.d.ts +7 -0
  1118. package/icons/flags/DZ.js +1 -0
  1119. package/icons/flags/Default.d.ts +7 -0
  1120. package/icons/flags/Default.js +1 -0
  1121. package/icons/flags/EC.d.ts +7 -0
  1122. package/icons/flags/EC.js +1 -0
  1123. package/icons/flags/EE.d.ts +7 -0
  1124. package/icons/flags/EE.js +1 -0
  1125. package/icons/flags/EG.d.ts +7 -0
  1126. package/icons/flags/EG.js +1 -0
  1127. package/icons/flags/EH.d.ts +7 -0
  1128. package/icons/flags/EH.js +1 -0
  1129. package/icons/flags/ER.d.ts +7 -0
  1130. package/icons/flags/ER.js +1 -0
  1131. package/icons/flags/ES.d.ts +7 -0
  1132. package/icons/flags/ES.js +1 -0
  1133. package/icons/flags/ET.d.ts +7 -0
  1134. package/icons/flags/ET.js +1 -0
  1135. package/icons/flags/FI.d.ts +7 -0
  1136. package/icons/flags/FI.js +1 -0
  1137. package/icons/flags/FJ.d.ts +7 -0
  1138. package/icons/flags/FJ.js +1 -0
  1139. package/icons/flags/FK.d.ts +7 -0
  1140. package/icons/flags/FK.js +1 -0
  1141. package/icons/flags/FM.d.ts +7 -0
  1142. package/icons/flags/FM.js +1 -0
  1143. package/icons/flags/FO.d.ts +7 -0
  1144. package/icons/flags/FO.js +1 -0
  1145. package/icons/flags/FR.d.ts +7 -0
  1146. package/icons/flags/FR.js +1 -0
  1147. package/icons/flags/FlagIndex.d.ts +245 -0
  1148. package/icons/flags/FlagIndex.js +1 -0
  1149. package/icons/flags/GA.d.ts +7 -0
  1150. package/icons/flags/GA.js +1 -0
  1151. package/icons/flags/GB.d.ts +7 -0
  1152. package/icons/flags/GB.js +1 -0
  1153. package/icons/flags/GD.d.ts +7 -0
  1154. package/icons/flags/GD.js +1 -0
  1155. package/icons/flags/GE.d.ts +7 -0
  1156. package/icons/flags/GE.js +1 -0
  1157. package/icons/flags/GF.d.ts +7 -0
  1158. package/icons/flags/GF.js +1 -0
  1159. package/icons/flags/GG.d.ts +7 -0
  1160. package/icons/flags/GG.js +1 -0
  1161. package/icons/flags/GH.d.ts +7 -0
  1162. package/icons/flags/GH.js +1 -0
  1163. package/icons/flags/GI.d.ts +7 -0
  1164. package/icons/flags/GI.js +1 -0
  1165. package/icons/flags/GL.d.ts +7 -0
  1166. package/icons/flags/GL.js +1 -0
  1167. package/icons/flags/GM.d.ts +7 -0
  1168. package/icons/flags/GM.js +1 -0
  1169. package/icons/flags/GN.d.ts +7 -0
  1170. package/icons/flags/GN.js +1 -0
  1171. package/icons/flags/GP.d.ts +7 -0
  1172. package/icons/flags/GP.js +1 -0
  1173. package/icons/flags/GQ.d.ts +7 -0
  1174. package/icons/flags/GQ.js +1 -0
  1175. package/icons/flags/GR.d.ts +7 -0
  1176. package/icons/flags/GR.js +1 -0
  1177. package/icons/flags/GT.d.ts +7 -0
  1178. package/icons/flags/GT.js +1 -0
  1179. package/icons/flags/GU.d.ts +7 -0
  1180. package/icons/flags/GU.js +1 -0
  1181. package/icons/flags/GW.d.ts +7 -0
  1182. package/icons/flags/GW.js +1 -0
  1183. package/icons/flags/GY.d.ts +7 -0
  1184. package/icons/flags/GY.js +1 -0
  1185. package/icons/flags/HK.d.ts +7 -0
  1186. package/icons/flags/HK.js +1 -0
  1187. package/icons/flags/HM.d.ts +7 -0
  1188. package/icons/flags/HM.js +1 -0
  1189. package/icons/flags/HN.d.ts +7 -0
  1190. package/icons/flags/HN.js +1 -0
  1191. package/icons/flags/HR.d.ts +7 -0
  1192. package/icons/flags/HR.js +1 -0
  1193. package/icons/flags/HT.d.ts +7 -0
  1194. package/icons/flags/HT.js +1 -0
  1195. package/icons/flags/HU.d.ts +7 -0
  1196. package/icons/flags/HU.js +1 -0
  1197. package/icons/flags/IC.d.ts +7 -0
  1198. package/icons/flags/IC.js +1 -0
  1199. package/icons/flags/ID.d.ts +7 -0
  1200. package/icons/flags/ID.js +1 -0
  1201. package/icons/flags/IE.d.ts +7 -0
  1202. package/icons/flags/IE.js +1 -0
  1203. package/icons/flags/IL.d.ts +7 -0
  1204. package/icons/flags/IL.js +1 -0
  1205. package/icons/flags/IM.d.ts +7 -0
  1206. package/icons/flags/IM.js +1 -0
  1207. package/icons/flags/IN.d.ts +7 -0
  1208. package/icons/flags/IN.js +1 -0
  1209. package/icons/flags/IQ.d.ts +7 -0
  1210. package/icons/flags/IQ.js +1 -0
  1211. package/icons/flags/IR.d.ts +7 -0
  1212. package/icons/flags/IR.js +1 -0
  1213. package/icons/flags/IS.d.ts +7 -0
  1214. package/icons/flags/IS.js +1 -0
  1215. package/icons/flags/IT.d.ts +7 -0
  1216. package/icons/flags/IT.js +1 -0
  1217. package/icons/flags/JE.d.ts +7 -0
  1218. package/icons/flags/JE.js +1 -0
  1219. package/icons/flags/JM.d.ts +7 -0
  1220. package/icons/flags/JM.js +1 -0
  1221. package/icons/flags/JO.d.ts +7 -0
  1222. package/icons/flags/JO.js +1 -0
  1223. package/icons/flags/JP.d.ts +7 -0
  1224. package/icons/flags/JP.js +1 -0
  1225. package/icons/flags/KE.d.ts +7 -0
  1226. package/icons/flags/KE.js +1 -0
  1227. package/icons/flags/KG.d.ts +7 -0
  1228. package/icons/flags/KG.js +1 -0
  1229. package/icons/flags/KH.d.ts +7 -0
  1230. package/icons/flags/KH.js +1 -0
  1231. package/icons/flags/KI.d.ts +7 -0
  1232. package/icons/flags/KI.js +1 -0
  1233. package/icons/flags/KM.d.ts +7 -0
  1234. package/icons/flags/KM.js +1 -0
  1235. package/icons/flags/KN.d.ts +7 -0
  1236. package/icons/flags/KN.js +1 -0
  1237. package/icons/flags/KP.d.ts +7 -0
  1238. package/icons/flags/KP.js +1 -0
  1239. package/icons/flags/KR.d.ts +7 -0
  1240. package/icons/flags/KR.js +1 -0
  1241. package/icons/flags/KW.d.ts +7 -0
  1242. package/icons/flags/KW.js +1 -0
  1243. package/icons/flags/KY.d.ts +7 -0
  1244. package/icons/flags/KY.js +1 -0
  1245. package/icons/flags/KZ.d.ts +7 -0
  1246. package/icons/flags/KZ.js +1 -0
  1247. package/icons/flags/LA.d.ts +7 -0
  1248. package/icons/flags/LA.js +1 -0
  1249. package/icons/flags/LB.d.ts +7 -0
  1250. package/icons/flags/LB.js +1 -0
  1251. package/icons/flags/LC.d.ts +7 -0
  1252. package/icons/flags/LC.js +1 -0
  1253. package/icons/flags/LI.d.ts +7 -0
  1254. package/icons/flags/LI.js +1 -0
  1255. package/icons/flags/LK.d.ts +7 -0
  1256. package/icons/flags/LK.js +1 -0
  1257. package/icons/flags/LR.d.ts +7 -0
  1258. package/icons/flags/LR.js +1 -0
  1259. package/icons/flags/LS.d.ts +7 -0
  1260. package/icons/flags/LS.js +1 -0
  1261. package/icons/flags/LT.d.ts +7 -0
  1262. package/icons/flags/LT.js +1 -0
  1263. package/icons/flags/LU.d.ts +7 -0
  1264. package/icons/flags/LU.js +1 -0
  1265. package/icons/flags/LV.d.ts +7 -0
  1266. package/icons/flags/LV.js +1 -0
  1267. package/icons/flags/LY.d.ts +7 -0
  1268. package/icons/flags/LY.js +1 -0
  1269. package/icons/flags/MA.d.ts +7 -0
  1270. package/icons/flags/MA.js +1 -0
  1271. package/icons/flags/MC.d.ts +7 -0
  1272. package/icons/flags/MC.js +1 -0
  1273. package/icons/flags/MD.d.ts +7 -0
  1274. package/icons/flags/MD.js +1 -0
  1275. package/icons/flags/ME.d.ts +7 -0
  1276. package/icons/flags/ME.js +1 -0
  1277. package/icons/flags/MF.d.ts +7 -0
  1278. package/icons/flags/MF.js +1 -0
  1279. package/icons/flags/MG.d.ts +7 -0
  1280. package/icons/flags/MG.js +1 -0
  1281. package/icons/flags/MH.d.ts +7 -0
  1282. package/icons/flags/MH.js +1 -0
  1283. package/icons/flags/MK.d.ts +7 -0
  1284. package/icons/flags/MK.js +1 -0
  1285. package/icons/flags/ML.d.ts +7 -0
  1286. package/icons/flags/ML.js +1 -0
  1287. package/icons/flags/MM.d.ts +7 -0
  1288. package/icons/flags/MM.js +1 -0
  1289. package/icons/flags/MN.d.ts +7 -0
  1290. package/icons/flags/MN.js +1 -0
  1291. package/icons/flags/MO.d.ts +7 -0
  1292. package/icons/flags/MO.js +1 -0
  1293. package/icons/flags/MP.d.ts +7 -0
  1294. package/icons/flags/MP.js +1 -0
  1295. package/icons/flags/MQ.d.ts +7 -0
  1296. package/icons/flags/MQ.js +1 -0
  1297. package/icons/flags/MR.d.ts +7 -0
  1298. package/icons/flags/MR.js +1 -0
  1299. package/icons/flags/MS.d.ts +7 -0
  1300. package/icons/flags/MS.js +1 -0
  1301. package/icons/flags/MT.d.ts +7 -0
  1302. package/icons/flags/MT.js +1 -0
  1303. package/icons/flags/MU.d.ts +7 -0
  1304. package/icons/flags/MU.js +1 -0
  1305. package/icons/flags/MV.d.ts +7 -0
  1306. package/icons/flags/MV.js +1 -0
  1307. package/icons/flags/MW.d.ts +7 -0
  1308. package/icons/flags/MW.js +1 -0
  1309. package/icons/flags/MX.d.ts +7 -0
  1310. package/icons/flags/MX.js +1 -0
  1311. package/icons/flags/MY.d.ts +7 -0
  1312. package/icons/flags/MY.js +1 -0
  1313. package/icons/flags/MZ.d.ts +7 -0
  1314. package/icons/flags/MZ.js +1 -0
  1315. package/icons/flags/NA.d.ts +7 -0
  1316. package/icons/flags/NA.js +1 -0
  1317. package/icons/flags/NC.d.ts +7 -0
  1318. package/icons/flags/NC.js +1 -0
  1319. package/icons/flags/NE.d.ts +7 -0
  1320. package/icons/flags/NE.js +1 -0
  1321. package/icons/flags/NF.d.ts +7 -0
  1322. package/icons/flags/NF.js +1 -0
  1323. package/icons/flags/NG.d.ts +7 -0
  1324. package/icons/flags/NG.js +1 -0
  1325. package/icons/flags/NI.d.ts +7 -0
  1326. package/icons/flags/NI.js +1 -0
  1327. package/icons/flags/NL.d.ts +7 -0
  1328. package/icons/flags/NL.js +1 -0
  1329. package/icons/flags/NO.d.ts +7 -0
  1330. package/icons/flags/NO.js +1 -0
  1331. package/icons/flags/NP.d.ts +7 -0
  1332. package/icons/flags/NP.js +1 -0
  1333. package/icons/flags/NR.d.ts +7 -0
  1334. package/icons/flags/NR.js +1 -0
  1335. package/icons/flags/NU.d.ts +7 -0
  1336. package/icons/flags/NU.js +1 -0
  1337. package/icons/flags/NZ.d.ts +7 -0
  1338. package/icons/flags/NZ.js +1 -0
  1339. package/icons/flags/OM.d.ts +7 -0
  1340. package/icons/flags/OM.js +1 -0
  1341. package/icons/flags/PA.d.ts +7 -0
  1342. package/icons/flags/PA.js +1 -0
  1343. package/icons/flags/PE.d.ts +7 -0
  1344. package/icons/flags/PE.js +1 -0
  1345. package/icons/flags/PF.d.ts +7 -0
  1346. package/icons/flags/PF.js +1 -0
  1347. package/icons/flags/PG.d.ts +7 -0
  1348. package/icons/flags/PG.js +1 -0
  1349. package/icons/flags/PH.d.ts +7 -0
  1350. package/icons/flags/PH.js +1 -0
  1351. package/icons/flags/PK.d.ts +7 -0
  1352. package/icons/flags/PK.js +1 -0
  1353. package/icons/flags/PL.d.ts +7 -0
  1354. package/icons/flags/PL.js +1 -0
  1355. package/icons/flags/PM.d.ts +7 -0
  1356. package/icons/flags/PM.js +1 -0
  1357. package/icons/flags/PN.d.ts +7 -0
  1358. package/icons/flags/PN.js +1 -0
  1359. package/icons/flags/PR.d.ts +7 -0
  1360. package/icons/flags/PR.js +1 -0
  1361. package/icons/flags/PS.d.ts +7 -0
  1362. package/icons/flags/PS.js +1 -0
  1363. package/icons/flags/PT.d.ts +7 -0
  1364. package/icons/flags/PT.js +1 -0
  1365. package/icons/flags/PW.d.ts +7 -0
  1366. package/icons/flags/PW.js +1 -0
  1367. package/icons/flags/PY.d.ts +7 -0
  1368. package/icons/flags/PY.js +1 -0
  1369. package/icons/flags/QA.d.ts +7 -0
  1370. package/icons/flags/QA.js +1 -0
  1371. package/icons/flags/RE.d.ts +7 -0
  1372. package/icons/flags/RE.js +1 -0
  1373. package/icons/flags/RO.d.ts +7 -0
  1374. package/icons/flags/RO.js +1 -0
  1375. package/icons/flags/RS.d.ts +7 -0
  1376. package/icons/flags/RS.js +1 -0
  1377. package/icons/flags/RU.d.ts +7 -0
  1378. package/icons/flags/RU.js +1 -0
  1379. package/icons/flags/RW.d.ts +7 -0
  1380. package/icons/flags/RW.js +1 -0
  1381. package/icons/flags/SA.d.ts +7 -0
  1382. package/icons/flags/SA.js +1 -0
  1383. package/icons/flags/SB.d.ts +7 -0
  1384. package/icons/flags/SB.js +1 -0
  1385. package/icons/flags/SC.d.ts +7 -0
  1386. package/icons/flags/SC.js +1 -0
  1387. package/icons/flags/SD.d.ts +7 -0
  1388. package/icons/flags/SD.js +1 -0
  1389. package/icons/flags/SE.d.ts +7 -0
  1390. package/icons/flags/SE.js +1 -0
  1391. package/icons/flags/SG.d.ts +7 -0
  1392. package/icons/flags/SG.js +1 -0
  1393. package/icons/flags/SH.d.ts +7 -0
  1394. package/icons/flags/SH.js +1 -0
  1395. package/icons/flags/SI.d.ts +7 -0
  1396. package/icons/flags/SI.js +1 -0
  1397. package/icons/flags/SJ.d.ts +7 -0
  1398. package/icons/flags/SJ.js +1 -0
  1399. package/icons/flags/SK.d.ts +7 -0
  1400. package/icons/flags/SK.js +1 -0
  1401. package/icons/flags/SL.d.ts +7 -0
  1402. package/icons/flags/SL.js +1 -0
  1403. package/icons/flags/SM.d.ts +7 -0
  1404. package/icons/flags/SM.js +1 -0
  1405. package/icons/flags/SN.d.ts +7 -0
  1406. package/icons/flags/SN.js +1 -0
  1407. package/icons/flags/SO.d.ts +7 -0
  1408. package/icons/flags/SO.js +1 -0
  1409. package/icons/flags/SR.d.ts +7 -0
  1410. package/icons/flags/SR.js +1 -0
  1411. package/icons/flags/SS.d.ts +7 -0
  1412. package/icons/flags/SS.js +1 -0
  1413. package/icons/flags/ST.d.ts +7 -0
  1414. package/icons/flags/ST.js +1 -0
  1415. package/icons/flags/SV.d.ts +7 -0
  1416. package/icons/flags/SV.js +1 -0
  1417. package/icons/flags/SX.d.ts +7 -0
  1418. package/icons/flags/SX.js +1 -0
  1419. package/icons/flags/SY.d.ts +7 -0
  1420. package/icons/flags/SY.js +1 -0
  1421. package/icons/flags/SZ.d.ts +7 -0
  1422. package/icons/flags/SZ.js +1 -0
  1423. package/icons/flags/TC.d.ts +7 -0
  1424. package/icons/flags/TC.js +1 -0
  1425. package/icons/flags/TD.d.ts +7 -0
  1426. package/icons/flags/TD.js +1 -0
  1427. package/icons/flags/TF.d.ts +7 -0
  1428. package/icons/flags/TF.js +1 -0
  1429. package/icons/flags/TG.d.ts +7 -0
  1430. package/icons/flags/TG.js +1 -0
  1431. package/icons/flags/TH.d.ts +7 -0
  1432. package/icons/flags/TH.js +1 -0
  1433. package/icons/flags/TJ.d.ts +7 -0
  1434. package/icons/flags/TJ.js +1 -0
  1435. package/icons/flags/TK.d.ts +7 -0
  1436. package/icons/flags/TK.js +1 -0
  1437. package/icons/flags/TL.d.ts +7 -0
  1438. package/icons/flags/TL.js +1 -0
  1439. package/icons/flags/TM.d.ts +7 -0
  1440. package/icons/flags/TM.js +1 -0
  1441. package/icons/flags/TN.d.ts +7 -0
  1442. package/icons/flags/TN.js +1 -0
  1443. package/icons/flags/TO.d.ts +7 -0
  1444. package/icons/flags/TO.js +1 -0
  1445. package/icons/flags/TR.d.ts +7 -0
  1446. package/icons/flags/TR.js +1 -0
  1447. package/icons/flags/TT.d.ts +7 -0
  1448. package/icons/flags/TT.js +1 -0
  1449. package/icons/flags/TV.d.ts +7 -0
  1450. package/icons/flags/TV.js +1 -0
  1451. package/icons/flags/TW.d.ts +7 -0
  1452. package/icons/flags/TW.js +1 -0
  1453. package/icons/flags/TZ.d.ts +7 -0
  1454. package/icons/flags/TZ.js +1 -0
  1455. package/icons/flags/UA.d.ts +7 -0
  1456. package/icons/flags/UA.js +1 -0
  1457. package/icons/flags/UG.d.ts +7 -0
  1458. package/icons/flags/UG.js +1 -0
  1459. package/icons/flags/UM.d.ts +7 -0
  1460. package/icons/flags/UM.js +1 -0
  1461. package/icons/flags/US.d.ts +7 -0
  1462. package/icons/flags/US.js +1 -0
  1463. package/icons/flags/UY.d.ts +7 -0
  1464. package/icons/flags/UY.js +1 -0
  1465. package/icons/flags/UZ.d.ts +7 -0
  1466. package/icons/flags/UZ.js +1 -0
  1467. package/icons/flags/VA.d.ts +7 -0
  1468. package/icons/flags/VA.js +1 -0
  1469. package/icons/flags/VC.d.ts +7 -0
  1470. package/icons/flags/VC.js +1 -0
  1471. package/icons/flags/VE.d.ts +7 -0
  1472. package/icons/flags/VE.js +1 -0
  1473. package/icons/flags/VG.d.ts +7 -0
  1474. package/icons/flags/VG.js +1 -0
  1475. package/icons/flags/VI.d.ts +7 -0
  1476. package/icons/flags/VI.js +1 -0
  1477. package/icons/flags/VN.d.ts +7 -0
  1478. package/icons/flags/VN.js +1 -0
  1479. package/icons/flags/VU.d.ts +7 -0
  1480. package/icons/flags/VU.js +1 -0
  1481. package/icons/flags/WF.d.ts +7 -0
  1482. package/icons/flags/WF.js +1 -0
  1483. package/icons/flags/WS.d.ts +7 -0
  1484. package/icons/flags/WS.js +1 -0
  1485. package/icons/flags/YE.d.ts +7 -0
  1486. package/icons/flags/YE.js +1 -0
  1487. package/icons/flags/YT.d.ts +7 -0
  1488. package/icons/flags/YT.js +1 -0
  1489. package/icons/flags/ZA.d.ts +7 -0
  1490. package/icons/flags/ZA.js +1 -0
  1491. package/icons/flags/ZM.d.ts +7 -0
  1492. package/icons/flags/ZM.js +1 -0
  1493. package/icons/flags/ZW.d.ts +7 -0
  1494. package/icons/flags/ZW.js +1 -0
  1495. package/icons/icon-base/_IconBase.d.ts +6 -0
  1496. package/icons/icon-base/_IconBase.js +1 -0
  1497. package/package.json +56 -0
  1498. package/pivot-table.css +470 -0
  1499. package/reset.css +599 -0
  1500. package/styles/constants/theme.d.ts +404 -0
  1501. package/styles/constants/theme.js +1 -0
  1502. package/theme.css +306 -0
  1503. package/types/AlertDialogOpts.d.ts +8 -0
  1504. package/types/Color.d.ts +5 -0
  1505. package/types/ConfirmDialogOpts.d.ts +9 -0
  1506. package/types/Depth.d.ts +1 -0
  1507. package/types/FetcherError.d.ts +5 -0
  1508. package/types/IAminoTheme.d.ts +1 -0
  1509. package/types/ICountry.d.ts +33 -0
  1510. package/types/IGeoJsonWorld.d.ts +21 -0
  1511. package/types/IOption.d.ts +8 -0
  1512. package/types/IconProps.d.ts +6 -0
  1513. package/types/Intent.d.ts +1 -0
  1514. package/types/JsonError.d.ts +5 -0
  1515. package/types/NoInfer.d.ts +5 -0
  1516. package/types/SectionLayout.d.ts +1 -0
  1517. package/types/Size.d.ts +1 -0
  1518. package/types/StyledProps.d.ts +3 -0
  1519. package/types/SwrtParams.d.ts +4 -0
  1520. package/types/Theme.d.ts +1 -0
  1521. package/types/UploadedFile.d.ts +4 -0
  1522. package/types/index.d.ts +11 -0
  1523. package/utils/_extractQueryParams.d.ts +5 -0
  1524. package/utils/_extractQueryParams.js +1 -0
  1525. package/utils/_graphiqlFetcher.d.ts +31 -0
  1526. package/utils/_graphiqlFetcher.js +1 -0
  1527. package/utils/_snapshotsFolder.js +1 -0
  1528. package/utils/addIndex.d.ts +6 -0
  1529. package/utils/addIndex.js +1 -0
  1530. package/utils/countryPhoneCodes.d.ts +4 -0
  1531. package/utils/countryPhoneCodes.js +1 -0
  1532. package/utils/flattenRow.d.ts +5 -0
  1533. package/utils/flattenRow.js +1 -0
  1534. package/utils/getCountryCodeByName.d.ts +2 -0
  1535. package/utils/getCountryCodeByName.js +1 -0
  1536. package/utils/getFuzzySearch.d.ts +8 -0
  1537. package/utils/getFuzzySearch.js +1 -0
  1538. package/utils/getTestId.d.ts +5 -0
  1539. package/utils/getTestId.js +1 -0
  1540. package/utils/handleFetch.d.ts +22 -0
  1541. package/utils/handleFetch.js +1 -0
  1542. package/utils/hooks/_useGraphiqlExplorer.d.ts +19 -0
  1543. package/utils/hooks/_useGraphiqlExplorer.js +1 -0
  1544. package/utils/hooks/_useGraphiqlFetcher.d.ts +16 -0
  1545. package/utils/hooks/_useGraphiqlFetcher.js +1 -0
  1546. package/utils/hooks/_useGraphiqlStorage.d.ts +5 -0
  1547. package/utils/hooks/_useGraphiqlStorage.js +1 -0
  1548. package/utils/hooks/useCurrentShema.d.ts +1 -0
  1549. package/utils/hooks/useCurrentShema.js +1 -0
  1550. package/utils/hooks/useDropdown.d.ts +12 -0
  1551. package/utils/hooks/useDropdown.js +1 -0
  1552. package/utils/hooks/useStorage.d.ts +17 -0
  1553. package/utils/hooks/useStorage.js +1 -0
  1554. package/utils/hooks/useSwr.d.ts +1 -0
  1555. package/utils/hooks/useSwr.js +1 -0
  1556. package/utils/hooks/useSwrt.d.ts +21 -0
  1557. package/utils/hooks/useSwrt.js +1 -0
  1558. package/utils/prepCountryOptions.d.ts +19 -0
  1559. package/utils/prepCountryOptions.js +1 -0
  1560. package/utils/prepRegionCountryOptions.d.ts +5 -0
  1561. package/utils/prepRegionCountryOptions.js +1 -0
  1562. package/utils/storage.d.ts +16 -0
  1563. package/utils/storage.js +1 -0
  1564. package/utils/truncateText.d.ts +25 -0
  1565. package/utils/truncateText.js +1 -0
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const CH: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),i=require("react/jsx-runtime"),r=require("react"),s=require("../flag-icon/_FlagIconBase.js"),t=r.forwardRef((function(r,t){var h=r.height,a=r.width;return i.jsx(s.FlagIconBase,e.__assign({height:h,width:a,ref:t,viewBox:"0 0 640 480"},{children:i.jsxs("g",e.__assign({fillRule:"evenodd",strokeWidth:"1pt"},{children:[i.jsx("path",{fill:"#d52b1e",d:"M0 0h640v480H0z"}),i.jsxs("g",e.__assign({fill:"#fff"},{children:[i.jsx("path",{d:"M170 195h300v90H170z"}),i.jsx("path",{d:"M275 90h90v300h-90z"})]}))]}))}))}));exports.CH=t;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const CI: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),i=require("react/jsx-runtime"),r=require("react"),s=require("../flag-icon/_FlagIconBase.js"),a=r.forwardRef((function(r,a){var t=r.height,l=r.width;return i.jsx(s.FlagIconBase,e.__assign({height:t,width:l,ref:a,viewBox:"0 0 640 480"},{children:i.jsxs("g",e.__assign({fillRule:"evenodd"},{children:[i.jsx("path",{fill:"#00cd00",d:"M426.8 0H640v480H426.8z"}),i.jsx("path",{fill:"#ff9a00",d:"M0 0h212.9v480H0z"}),i.jsx("path",{fill:"#fff",d:"M212.9 0h214v480h-214z"})]}))}))}));exports.CI=a;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const CK: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var l=require("../../_tslib-fe391a2e.js"),e=require("react/jsx-runtime"),i=require("react"),h=require("../flag-icon/_FlagIconBase.js"),r=i.forwardRef((function(i,r){var s=i.height,t=i.width;return e.jsxs(h.FlagIconBase,l.__assign({height:s,width:t,ref:r,viewBox:"0 0 640 480"},{children:[e.jsx("path",{fill:"#006",d:"M0 0h640v480H0z"}),e.jsxs("g",l.__assign({strokeWidth:"1pt"},{children:[e.jsx("path",{fill:"#fff",d:"M0 0v24.8L319.8 222H360v-24.8L40.2 0H0zm360 0v24.8L40.2 222H0v-24.8L319.8 0H360z"}),e.jsx("path",{fill:"#fff",d:"M150 0v222h60V0h-60zM0 74v74h360V74H0z"}),e.jsx("path",{fill:"#c00",d:"M0 88.8v44.4h360V88.8H0zM162 0v222h36V0h-36zM0 222l120-74h26.8l-120 74H0zM0 0l120 74H93.2L0 16.5V0zm213.2 74 120-74H360L240 74h-26.8zM360 222l-120-74h26.8l93.2 57.4v16.5z"})]})),e.jsx("path",{fill:"#fff",fillRule:"evenodd",d:"m471.6 213 5.2-16.7-14-10.6 17.6-.2 6-16.5 5.6 16.5 17.7.5-14.1 10.5 5 16.7-14.5-10m27.1 13 10.4-13.9-9.7-14.8 16.7 5.8 11-13.5v17.6l16.4 6.4-16.8 5-.8 17.5-10.2-14.4m-98.4 15-.7-17.5-16.8-5.2L431 198v-17.4l10.9 13.5 16.8-5.6-9.8 14.7 10.3 14-17-4.5m-39.6 40.9-7.4-15.8-17.4 1.8 12.8-12.3L384 211l15.2 8.2 13.3-11.8-3.4 17.4 14.9 8.9-17.3 2.5M389 291.8l-13.3-11.1-15 9.2 6.4-16.7-12.9-11.6 17.3.7 7-16.4 4.3 17.2 17.2 1.5-14.6 9.8m3.2 60.4-16.5-4.8-10.1 14.5-.7-17.9-16.4-5.5 16.1-6.2v-18l10.7 14.1 16.4-5.6-9.6 15m29.5 50.8-17 2.4-3.5 17.4-7.8-16-17.1 1.6 12.2-12.3-7.1-16.4 15.3 8.5 12.8-11.8L393 362m45 38-15.1 8.2 2.6 17.6-12.7-12.4-15.6 7.6 7.3-15.9-12.3-12.9 17.3 2.6 8-15.5 3.4 17.4m53.8 9-8.3 15.3 11.7 13.2-17.4-3.3-8.9 15-2.4-17.3-17.2-4 15.8-7.4-1.7-17.5 12.2 12.8m57.4-13.1-.5 17.4 16.3 6.4-17 5-1.2 17.5-10-14.3-17 4.4 10.8-13.9-9.4-14.7 16.6 5.7M559 209.8l12 12.6 15.9-7.4-8.3 15.8 11.5 13.1-17-2.8-9 15.5L562 239l-17-3.5 15.7-8m34.2 21 5.5 16.6 17.5.3-14.2 10.7 4.7 16.8-14.1-10-14.6 10.1 5.4-16.8-13.8-10.6 17.6-.4m19.5 33.2-2 17.4 15.7 7.7-17.3 3.6-2.7 17.3-8.7-15.1-17.4 2.9 12-13-8.1-15.5 16 7.2m3 39.8-7.8 15.6L603 379l-17.4-2.7-8.4 15.3-3-17.3-17.4-3.3 15.6-8-2.3-17.4 12.6 12.3m-9.8 39.1-14.7 9.2 3.8 17.3-13.5-11.5-15 8.6 6.3-16.3-13.1-12.1 17.4 1.5 7-16 4.4 17.2"})]}))}));exports.CK=r;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const CL: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),i=require("react/jsx-runtime"),r=require("react"),s=require("../flag-icon/_FlagIconBase.js"),l=require("../flag-icon/useStableUniqueId.js");require("uuid");var a=r.forwardRef((function(r,a){var t=r.height,h=r.width,n=l.useStableUniqueId(1);return i.jsxs(s.FlagIconBase,e.__assign({height:t,width:h,ref:a,viewBox:"0 0 640 480"},{children:[i.jsx("defs",{children:i.jsx("clipPath",e.__assign({id:"".concat(n[0])},{children:i.jsx("path",{fillOpacity:".7",d:"M0 0h682.7v512H0z"})}))}),i.jsxs("g",e.__assign({fillRule:"evenodd",clipPath:"url(#".concat(n[0],")"),transform:"scale(.9375)"},{children:[i.jsx("path",{fill:"#fff",d:"M256 0h512v256H256z"}),i.jsx("path",{fill:"#0039a6",d:"M0 0h256v256H0z"}),i.jsx("path",{fill:"#fff",d:"M167.8 191.7 128.2 162l-39.5 30 14.7-48.8L64 113.1l48.7-.5L127.8 64l15.5 48.5 48.7.1-39.2 30.4 15 48.7z"}),i.jsx("path",{fill:"#d52b1e",d:"M0 256h768v256H0z"})]}))]}))}));exports.CL=a;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const CM: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),t=require("react/jsx-runtime"),r=require("react"),i=require("../flag-icon/_FlagIconBase.js"),s=require("../flag-icon/useStableUniqueId.js");require("uuid");var a=r.forwardRef((function(r,a){var n=r.height,c=r.width,h=s.useStableUniqueId(2);return t.jsxs(i.FlagIconBase,e.__assign({height:n,width:c,ref:a,viewBox:"0 0 640 480"},{children:[t.jsx("path",{fill:"#007a5e",d:"M0 0h213.3v480H0z"}),t.jsx("path",{fill:"#ce1126",d:"M213.3 0h213.4v480H213.3z"}),t.jsx("path",{fill:"#fcd116",d:"M426.7 0H640v480H426.7z"}),t.jsxs("g",e.__assign({fill:"#fcd116",transform:"translate(320 240) scale(7.1111)"},{children:[t.jsxs("g",e.__assign({id:"".concat(h[0])},{children:[t.jsx("path",{id:"".concat(h[1]),d:"M0-8-2.5-.4 1.3.9z"}),t.jsx("use",{xlinkHref:"#".concat(h[1]),width:"100%",height:"100%",transform:"scale(-1 1)"})]})),t.jsx("use",{xlinkHref:"#".concat(h[0]),width:"100%",height:"100%",transform:"rotate(72)"}),t.jsx("use",{xlinkHref:"#".concat(h[0]),width:"100%",height:"100%",transform:"rotate(144)"}),t.jsx("use",{xlinkHref:"#".concat(h[0]),width:"100%",height:"100%",transform:"rotate(-144)"}),t.jsx("use",{xlinkHref:"#".concat(h[0]),width:"100%",height:"100%",transform:"rotate(-72)"})]}))]}))}));exports.CM=a;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const CN: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),r=require("react/jsx-runtime"),i=require("react"),t=require("../flag-icon/_FlagIconBase.js"),s=require("../flag-icon/useStableUniqueId.js");require("uuid");var a=i.forwardRef((function(i,a){var n=i.height,h=i.width,c=s.useStableUniqueId(1);return r.jsxs(t.FlagIconBase,e.__assign({height:n,width:h,ref:a,viewBox:"0 0 640 480"},{children:[r.jsx("defs",{children:r.jsx("path",{id:"".concat(c[0]),fill:"#ffde00",d:"M-.6.8 0-1 .6.8-1-.3h2z"})}),r.jsx("path",{fill:"#de2910",d:"M0 0h640v480H0z"}),r.jsx("use",{xlinkHref:"#".concat(c[0]),width:"30",height:"20",transform:"matrix(71.9991 0 0 72 120 120)"}),r.jsx("use",{xlinkHref:"#".concat(c[0]),width:"30",height:"20",transform:"matrix(-12.33562 -20.5871 20.58684 -12.33577 240.3 48)"}),r.jsx("use",{xlinkHref:"#".concat(c[0]),width:"30",height:"20",transform:"matrix(-3.38573 -23.75998 23.75968 -3.38578 288 95.8)"}),r.jsx("use",{xlinkHref:"#".concat(c[0]),width:"30",height:"20",transform:"matrix(6.5991 -23.0749 23.0746 6.59919 288 168)"}),r.jsx("use",{xlinkHref:"#".concat(c[0]),width:"30",height:"20",transform:"matrix(14.9991 -18.73557 18.73533 14.99929 240 216)"})]}))}));exports.CN=a;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const CO: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),i=require("react/jsx-runtime"),r=require("react"),s=require("../flag-icon/_FlagIconBase.js"),t=r.forwardRef((function(r,t){var a=r.height,h=r.width;return i.jsx(s.FlagIconBase,e.__assign({height:a,width:h,ref:t,viewBox:"0 0 640 480"},{children:i.jsxs("g",e.__assign({fillRule:"evenodd",strokeWidth:"1pt"},{children:[i.jsx("path",{fill:"#ffe800",d:"M0 0h640v480H0z"}),i.jsx("path",{fill:"#00148e",d:"M0 240h640v240H0z"}),i.jsx("path",{fill:"#da0010",d:"M0 360h640v120H0z"})]}))}))}));exports.CO=t;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const CR: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),i=require("react/jsx-runtime"),r=require("react"),s=require("../flag-icon/_FlagIconBase.js"),t=r.forwardRef((function(r,t){var a=r.height,h=r.width;return i.jsx(s.FlagIconBase,e.__assign({height:a,width:h,ref:t,viewBox:"0 0 640 480"},{children:i.jsxs("g",e.__assign({fillRule:"evenodd",strokeWidth:"1pt"},{children:[i.jsx("path",{fill:"#0000b4",d:"M0 0h640v480H0z"}),i.jsx("path",{fill:"#fff",d:"M0 75.4h640v322.3H0z"}),i.jsx("path",{fill:"#d90000",d:"M0 157.7h640v157.7H0z"})]}))}))}));exports.CR=t;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const CU: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),i=require("react/jsx-runtime"),r=require("react"),s=require("../flag-icon/_FlagIconBase.js"),a=require("../flag-icon/useStableUniqueId.js");require("uuid");var l=r.forwardRef((function(r,l){var t=r.height,n=r.width,f=a.useStableUniqueId(1);return i.jsxs(s.FlagIconBase,e.__assign({height:t,width:n,ref:l,viewBox:"0 0 640 480"},{children:[i.jsx("defs",{children:i.jsx("clipPath",e.__assign({id:"".concat(f[0])},{children:i.jsx("path",{fillOpacity:".7",d:"M-32 0h682.7v512H-32z"})}))}),i.jsxs("g",e.__assign({fillRule:"evenodd",clipPath:"url(#".concat(f[0],")"),transform:"translate(30) scale(.94)"},{children:[i.jsx("path",{fill:"#0050f0",d:"M-32 0h768v512H-32z"}),i.jsx("path",{fill:"#fff",d:"M-32 102.4h768v102.4H-32zm0 204.8h768v102.4H-32z"}),i.jsx("path",{fill:"#ed0000",d:"m-32 0 440.7 255.7L-32 511V0z"}),i.jsx("path",{fill:"#fff",d:"M161.8 325.5 114.3 290l-47.2 35.8 17.6-58.1-47.2-36 58.3-.4 18.1-58 18.5 57.8 58.3.1-46.9 36.3 18 58z"})]}))]}))}));exports.CU=l;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const CV: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),s=require("react/jsx-runtime"),i=require("react"),a=require("../flag-icon/_FlagIconBase.js"),l=require("../flag-icon/useStableUniqueId.js");require("uuid");var r=i.forwardRef((function(i,r){var n=i.height,t=i.width,c=l.useStableUniqueId(3);return s.jsxs(a.FlagIconBase,e.__assign({height:n,width:t,ref:r,viewBox:"0 0 16 12"},{children:[s.jsxs("g",e.__assign({clipPath:"url(#".concat(c[2],")")},{children:[s.jsx("mask",e.__assign({id:"".concat(c[0]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:s.jsx("path",{fill:"#fff",d:"M0 0h16v12H0z"})})),s.jsxs("g",e.__assign({mask:"url(#".concat(c[0],")")},{children:[s.jsx("path",{fill:"#4141DB",fillRule:"evenodd",d:"M0 0v12h16V0H0Z",clipRule:"evenodd"}),s.jsx("mask",e.__assign({id:"".concat(c[1]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:s.jsx("path",{fill:"#fff",fillRule:"evenodd",d:"M0 0v12h16V0H0Z",clipRule:"evenodd"})})),s.jsxs("g",e.__assign({mask:"url(#".concat(c[1],")")},{children:[s.jsx("path",{fill:"#F90000",stroke:"#F7FCFF",d:"M0 6.5h-.5v2h17v-2H0Z"}),s.jsx("path",{stroke:"#FFDE00",d:"M5.5 11a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Z",clipRule:"evenodd"})]}))]}))]})),s.jsx("defs",{children:s.jsx("clipPath",e.__assign({id:"".concat(c[2])},{children:s.jsx("rect",{width:"16",height:"12",fill:"#fff",rx:"1"})}))})]}))}));exports.CV=r;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const CW: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),i=require("react/jsx-runtime"),s=require("react"),r=require("../flag-icon/_FlagIconBase.js"),a=require("../flag-icon/useStableUniqueId.js");require("uuid");var t=s.forwardRef((function(s,t){var l=s.height,c=s.width,n=a.useStableUniqueId(2);return i.jsxs(r.FlagIconBase,e.__assign({height:l,width:c,ref:t,viewBox:"0 0 640 480"},{children:[i.jsxs("defs",{children:[i.jsx("clipPath",e.__assign({id:"".concat(n[0])},{children:i.jsx("path",{fillOpacity:".7",d:"M0 0h682.7v512H0z"})})),i.jsx("path",{id:"".concat(n[1]),d:"m0-1 .2.7H1L.3 0l.2.7L0 .4l-.6.4.2-.7-.5-.4h.7z"})]}),i.jsxs("g",e.__assign({clipPath:"url(#".concat(n[0],")"),transform:"scale(.94)"},{children:[i.jsx("path",{fill:"#002b7f",d:"M0 0h768v512H0z"}),i.jsx("path",{fill:"#f9e814",d:"M0 320h768v64H0z"}),i.jsx("use",{xlinkHref:"#".concat(n[1]),width:"13500",height:"9000",x:"2",y:"2",fill:"#fff",transform:"scale(42.67)"}),i.jsx("use",{xlinkHref:"#".concat(n[1]),width:"13500",height:"9000",x:"3",y:"3",fill:"#fff",transform:"scale(56.9)"})]}))]}))}));exports.CW=t;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const CY: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var s=require("../../_tslib-fe391a2e.js"),e=require("react/jsx-runtime"),i=require("react"),l=require("../flag-icon/_FlagIconBase.js"),a=require("../flag-icon/useStableUniqueId.js");require("uuid");var n=i.forwardRef((function(i,n){var t=i.height,c=i.width,r=a.useStableUniqueId(5);return e.jsxs(l.FlagIconBase,s.__assign({height:t,width:c,ref:n,viewBox:"0 0 16 12"},{children:[e.jsxs("g",s.__assign({clipPath:"url(#".concat(r[4],")")},{children:[e.jsx("mask",s.__assign({id:"".concat(r[0]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:e.jsx("path",{fill:"#fff",d:"M0 0h16v12H0z"})})),e.jsxs("g",s.__assign({mask:"url(#".concat(r[0],")")},{children:[e.jsx("path",{fill:"#F7FCFF",fillRule:"evenodd",d:"M0 0v12h16V0H0Z",clipRule:"evenodd"}),e.jsx("mask",s.__assign({id:"".concat(r[1]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:e.jsx("path",{fill:"#fff",fillRule:"evenodd",d:"M0 0v12h16V0H0Z",clipRule:"evenodd"})})),e.jsxs("g",s.__assign({fillRule:"evenodd",clipRule:"evenodd",mask:"url(#".concat(r[1],")")},{children:[e.jsx("path",{fill:"#F57A01",d:"M12.284 2.38S9.643 3.839 9.31 3.93c-.332.093-.11.149-.683.112-.573-.037-1.7.206-1.958.04-.258-.167-.35-.462-.369.037-.019.498.388.923-.13.96-.516.037-.572-.444-.923-.148-.35.295-.646.96-.868.794-.221-.166-.535-.61-.443-.185.092.425.37 1.495 1.256 1.513.886.019 1.071-.295 1.108-.036.037.258.425.295.517-.037.092-.333.85.37 1.256.02.406-.351.739-.647.868-.85.13-.203.572-.166.997-.166.425 0 1.053.184.72-.222-.332-.406-.905-.59-.572-.997.332-.406 3.153-1.757 3.283-1.905.129-.148-.698-.702-1.085-.48Z"}),e.jsx("path",{fill:"url(#".concat(r[2],")"),d:"M12.284 2.38S9.643 3.839 9.31 3.93c-.332.093-.11.149-.683.112-.573-.037-1.7.206-1.958.04-.258-.167-.35-.462-.369.037-.019.498.388.923-.13.96-.516.037-.572-.444-.923-.148-.35.295-.646.96-.868.794-.221-.166-.535-.61-.443-.185.092.425.37 1.495 1.256 1.513.886.019 1.071-.295 1.108-.036.037.258.425.295.517-.037.092-.333.85.37 1.256.02.406-.351.739-.647.868-.85.13-.203.572-.166.997-.166.425 0 1.053.184.72-.222-.332-.406-.905-.59-.572-.997.332-.406 3.153-1.757 3.283-1.905.129-.148-.698-.702-1.085-.48Z"}),e.jsx("path",{fill:"#006B49",d:"M5.456 8.052c1.311 0 2.438 1.459 2.438 1.459l.052.055L8 9.511s1.314-1.459 2.625-1.459-.944 2.124-2.403 2.124c0 0-.15-.014-.275-.076a.89.89 0 0 1-.274.076c-1.459 0-3.527-2.124-2.216-2.124Z"}),e.jsx("path",{fill:"url(#".concat(r[3],")"),d:"M5.456 8.052c1.311 0 2.438 1.459 2.438 1.459l.052.055L8 9.511s1.314-1.459 2.625-1.459-.944 2.124-2.403 2.124c0 0-.15-.014-.275-.076a.89.89 0 0 1-.274.076c-1.459 0-3.527-2.124-2.216-2.124Z"})]}))]}))]})),e.jsxs("defs",{children:[e.jsxs("linearGradient",s.__assign({id:"".concat(r[2]),x1:"15",x2:"15",y1:"9",y2:"1",gradientUnits:"userSpaceOnUse"},{children:[e.jsx("stop",{stopColor:"#EA5113"}),e.jsx("stop",{offset:"1",stopColor:"#FC9B58"})]})),e.jsxs("linearGradient",s.__assign({id:"".concat(r[3]),x1:"11.019",x2:"11.019",y1:"10.176",y2:"8.052",gradientUnits:"userSpaceOnUse"},{children:[e.jsx("stop",{stopColor:"#008057"}),e.jsx("stop",{offset:"1",stopColor:"#00B77C"})]})),e.jsx("clipPath",s.__assign({id:"".concat(r[4])},{children:e.jsx("rect",{width:"16",height:"12",fill:"#fff",rx:"1"})}))]})]}))}));exports.CY=n;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const CZ: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),i=require("react/jsx-runtime"),r=require("react"),s=require("../flag-icon/_FlagIconBase.js"),a=require("../flag-icon/useStableUniqueId.js");require("uuid");var t=r.forwardRef((function(r,t){var l=r.height,n=r.width,c=a.useStableUniqueId(1);return i.jsxs(s.FlagIconBase,e.__assign({height:l,width:n,ref:t,viewBox:"0 0 640 480"},{children:[i.jsx("defs",{children:i.jsx("clipPath",e.__assign({id:"".concat(c[0])},{children:i.jsx("path",{fillOpacity:".7",d:"M-74 0h682.7v512H-74z"})}))}),i.jsxs("g",e.__assign({fillRule:"evenodd",strokeWidth:"1pt",clipPath:"url(#".concat(c[0],")"),transform:"translate(69.4) scale(.94)"},{children:[i.jsx("path",{fill:"#e80000",d:"M-74 0h768v512H-74z"}),i.jsx("path",{fill:"#fff",d:"M-74 0h768v256H-74z"}),i.jsx("path",{fill:"#00006f",d:"m-74 0 382.7 255.7L-74 511V0z"})]}))]}))}));exports.CZ=t;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const DE: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),r=require("react/jsx-runtime"),i=require("react"),s=require("../flag-icon/_FlagIconBase.js"),t=i.forwardRef((function(i,t){var a=i.height,h=i.width;return r.jsxs(s.FlagIconBase,e.__assign({height:a,width:h,ref:t,viewBox:"0 0 640 480"},{children:[r.jsx("path",{fill:"#ffce00",d:"M0 320h640v160H0z"}),r.jsx("path",{d:"M0 0h640v160H0z"}),r.jsx("path",{fill:"#d00",d:"M0 160h640v160H0z"})]}))}));exports.DE=t;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const DJ: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),i=require("react/jsx-runtime"),r=require("react"),s=require("../flag-icon/_FlagIconBase.js"),l=require("../flag-icon/useStableUniqueId.js");require("uuid");var a=r.forwardRef((function(r,a){var t=r.height,n=r.width,c=l.useStableUniqueId(1);return i.jsxs(s.FlagIconBase,e.__assign({height:t,width:n,ref:a,viewBox:"0 0 640 480"},{children:[i.jsx("defs",{children:i.jsx("clipPath",e.__assign({id:"".concat(c[0])},{children:i.jsx("path",{fillOpacity:".7",d:"M-40 0h682.7v512H-40z"})}))}),i.jsxs("g",e.__assign({fillRule:"evenodd",clipPath:"url(#".concat(c[0],")"),transform:"translate(37.5) scale(.94)"},{children:[i.jsx("path",{fill:"#0c0",d:"M-40 0h768v512H-40z"}),i.jsx("path",{fill:"#69f",d:"M-40 0h768v256H-40z"}),i.jsx("path",{fill:"#fffefe",d:"m-40 0 382.7 255.7L-40 511V0z"}),i.jsx("path",{fill:"red",d:"M119.8 292 89 270l-30.7 22.4L69.7 256l-30.6-22.5 37.9-.3 11.7-36.3 12 36.2h37.9l-30.5 22.7 11.7 36.4z"})]}))]}))}));exports.DJ=a;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const DK: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),r=require("react/jsx-runtime"),i=require("react"),s=require("../flag-icon/_FlagIconBase.js"),t=i.forwardRef((function(i,t){var a=i.height,f=i.width;return r.jsxs(s.FlagIconBase,e.__assign({height:a,width:f,ref:t,viewBox:"0 0 640 480"},{children:[r.jsx("path",{fill:"#c8102e",d:"M0 0h640.1v480H0z"}),r.jsx("path",{fill:"#fff",d:"M205.7 0h68.6v480h-68.6z"}),r.jsx("path",{fill:"#fff",d:"M0 205.7h640.1v68.6H0z"})]}))}));exports.DK=t;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const DM: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),s=require("react/jsx-runtime"),i=require("react"),l=require("../flag-icon/_FlagIconBase.js"),a=require("../flag-icon/useStableUniqueId.js");require("uuid");var h=i.forwardRef((function(i,h){var d=i.height,t=i.width,c=a.useStableUniqueId(3);return s.jsxs(l.FlagIconBase,e.__assign({height:d,width:t,ref:h,viewBox:"0 0 16 12"},{children:[s.jsxs("g",e.__assign({clipPath:"url(#".concat(c[2],")")},{children:[s.jsx("mask",e.__assign({id:"".concat(c[0]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:s.jsx("path",{fill:"#fff",d:"M0 0h16v12H0z"})})),s.jsxs("g",e.__assign({mask:"url(#".concat(c[0],")")},{children:[s.jsx("path",{fill:"#279E19",fillRule:"evenodd",d:"M0 0v12h16V0H0Z",clipRule:"evenodd"}),s.jsx("mask",e.__assign({id:"".concat(c[1]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:s.jsx("path",{fill:"#fff",fillRule:"evenodd",d:"M0 0v12h16V0H0Z",clipRule:"evenodd"})})),s.jsxs("g",e.__assign({fillRule:"evenodd",clipRule:"evenodd",mask:"url(#".concat(c[1],")")},{children:[s.jsx("path",{fill:"#F7FCFF",d:"M8 0h1v7h7v1H9v4H8V8H0V7h8V0Z"}),s.jsx("path",{fill:"#272727",d:"M7 0h1v6h8v1H8v5H7V7H0V6h7V0Z"}),s.jsx("path",{fill:"#FECA00",d:"M6 0h1v5h9v1H7v6H6V6H0V5h6V0Z"}),s.jsx("path",{fill:"#C51918",d:"M8 10a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"}),s.jsx("path",{fill:"#804BFF",d:"M7.363 4.207s.19-.617.631-.298c.692.34.92.732 1.188 1.175.267.444-.655.12-.827-.13-.172-.25-1.127-.331-.992-.54.135-.207 0-.207 0-.207Z"}),s.jsx("path",{fill:"#A95601",d:"M7.207 7.363s-.47.643 0 .643 2.374-.139 2.146-.322c-.228-.183-1.92 0-1.92 0l-.226-.321Z"}),s.jsx("path",{fill:"#804BFF",d:"M7.909 7.343c-.049-.055-.905-1.998-.507-2.402.398-.404.632-.166.632.44 0 .605.023 2.111-.125 1.962Z"}),s.jsx("path",{fill:"#279E19",d:"M7.859 7.027s-.05.472.193 1.024c.243.55.733.54.733.089 0-.451.358-.028.496.273.137.301-.219-2.673-.724-3.339-.505-.666-.992-.708-.845-.278.147.43.147 2.231.147 2.231Z"}),s.jsx("path",{fill:"#FECA00",d:"M7.564 3.8s-.214.137-.214.514c0 .378.506-.116.506-.116L7.564 3.8Zm.046-.143.44-.232.44.232-.083-.491.356-.348-.493-.071-.22-.447-.22.447-.493.071.356.348-.084.49Zm0 5.9.44-.232.44.232-.083-.491.356-.348-.493-.071-.22-.447-.22.447-.493.071.356.348-.084.49Zm2.8-2.8.083-.491-.356-.348.493-.071.22-.447.22.447.493.071-.356.348.084.49-.441-.231-.44.232Zm-5.7 0 .44-.232.44.232-.083-.491.356-.348-.493-.071-.22-.447-.22.447-.493.071.356.348-.084.49ZM6.233 4.35l-.14.478-.294-.401-.498.015.29-.405-.167-.468.474.151.394-.305.002.498.412.28-.473.157Zm4.104 4.38.14-.479.473-.156-.412-.28-.002-.499-.394.305-.474-.152.168.47-.29.404.497-.015.294.401Zm.07-4.438-.139.478-.294-.402-.498.015.29-.404-.167-.469.474.152.394-.305.002.498.412.28-.473.157ZM6.212 8.87l.14-.478.472-.156-.411-.28-.003-.499-.394.305-.474-.152.168.47-.29.404.497-.015.295.401Z"})]}))]}))]})),s.jsx("defs",{children:s.jsx("clipPath",e.__assign({id:"".concat(c[2])},{children:s.jsx("rect",{width:"16",height:"12",fill:"#fff",rx:"1"})}))})]}))}));exports.DM=h;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const DO: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),i=require("react/jsx-runtime"),s=require("react"),l=require("../flag-icon/_FlagIconBase.js"),h=require("../flag-icon/useStableUniqueId.js");require("uuid");var a=s.forwardRef((function(s,a){var c=s.height,d=s.width,t=h.useStableUniqueId(3);return i.jsxs(l.FlagIconBase,e.__assign({height:c,width:d,ref:a,viewBox:"0 0 16 12"},{children:[i.jsxs("g",e.__assign({clipPath:"url(#".concat(t[2],")")},{children:[i.jsx("mask",e.__assign({id:"".concat(t[0]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:i.jsx("path",{fill:"#fff",d:"M0 0h16v12H0z"})})),i.jsxs("g",e.__assign({mask:"url(#".concat(t[0],")")},{children:[i.jsx("path",{fill:"#C51918",fillRule:"evenodd",d:"M0 0v12h16V0H0Z",clipRule:"evenodd"}),i.jsx("mask",e.__assign({id:"".concat(t[1]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:i.jsx("path",{fill:"#fff",fillRule:"evenodd",d:"M0 0v12h16V0H0Z",clipRule:"evenodd"})})),i.jsxs("g",e.__assign({mask:"url(#".concat(t[1],")")},{children:[i.jsx("path",{fill:"#F7FCFF",fillRule:"evenodd",d:"M7 0h2v5h7v2H9v5H7V7H0V5h7V0Z",clipRule:"evenodd"}),i.jsx("path",{fill:"#4257BF",d:"M0 0h7v5H0zm9 7h7v5H9z"}),i.jsx("path",{fill:"#309404",d:"m6.818 5.555.498.048c-.085.89.026 1.265.206 1.265v.5c-.623 0-.815-.65-.704-1.813Zm2.395 0-.497.048c.085.89-.026 1.265-.206 1.265v.5c.622 0 .815-.65.703-1.813Z"}),i.jsx("path",{fill:"#003994",d:"M7.364 5.346h.473v.738h-.473zm.726.877h.474v.375c0 .2-.163.364-.364.364h-.11v-.739Z"}),i.jsx("path",{fill:"#DE2110",d:"M8.055 5.3h.473v.738h-.473zm-.691.923h.472v.739h-.109a.364.364 0 0 1-.363-.364v-.375Z"}),i.jsx("path",{fill:"#00319C",d:"m7.167 5.305-.334-.372c.353-.318.721-.483 1.1-.483.38 0 .747.165 1.1.483l-.334.372c-.267-.241-.521-.355-.766-.355-.244 0-.498.114-.766.355Z"}),i.jsx("path",{fill:"#DE2110",d:"m7.204 7.797-.335-.372c.353-.318.721-.483 1.1-.483.38 0 .748.165 1.1.483l-.334.372c-.267-.24-.521-.355-.766-.355-.244 0-.498.114-.765.355Z"})]}))]}))]})),i.jsx("defs",{children:i.jsx("clipPath",e.__assign({id:"".concat(t[2])},{children:i.jsx("rect",{width:"16",height:"12",fill:"#fff",rx:"1"})}))})]}))}));exports.DO=a;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const DZ: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),r=require("react/jsx-runtime"),i=require("react"),s=require("../flag-icon/_FlagIconBase.js"),t=i.forwardRef((function(i,t){var a=i.height,h=i.width;return r.jsxs(s.FlagIconBase,e.__assign({height:a,width:h,ref:t,viewBox:"0 0 640 480"},{children:[r.jsx("path",{fill:"#fff",d:"M320 0h320v480H320z"}),r.jsx("path",{fill:"#006233",d:"M0 0h320v480H0z"}),r.jsx("path",{fill:"#d21034",d:"M424 180a120 120 0 1 0 0 120 96 96 0 1 1 0-120m4 60-108-35.2 67.2 92V183.2l-67.2 92z"})]}))}));exports.DZ=t;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const Default: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),i=require("react/jsx-runtime"),s=require("react"),r=require("../flag-icon/_FlagIconBase.js"),a=require("../flag-icon/useStableUniqueId.js");require("uuid");var l=s.forwardRef((function(s,l){var t=s.height,n=s.width,h=a.useStableUniqueId(2);return i.jsxs(r.FlagIconBase,e.__assign({height:t,width:n,ref:l,viewBox:"0 0 16 12"},{children:[i.jsxs("g",e.__assign({clipPath:"url(#".concat(h[1],")")},{children:[i.jsx("mask",e.__assign({id:"".concat(h[0]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:i.jsx("path",{fill:"#fff",d:"M0 0h16v12H0z"})})),i.jsxs("g",e.__assign({fillRule:"evenodd",clipRule:"evenodd",mask:"url(#".concat(h[0],")")},{children:[i.jsx("path",{fill:"#9898A0",d:"M0 0h16v12H0V0Z"}),i.jsx("path",{fill:"#D6D6D9",d:"M0 0v4h16V0H0Z"}),i.jsx("path",{fill:"#5B5B60",d:"M0 8v4h16V8H0Z"})]}))]})),i.jsx("defs",{children:i.jsx("clipPath",e.__assign({id:"".concat(h[1])},{children:i.jsx("rect",{width:"16",height:"12",fill:"#fff",rx:"1"})}))})]}))}));exports.Default=l;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const EC: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var l=require("../../_tslib-fe391a2e.js"),e=require("react/jsx-runtime"),s=require("react"),i=require("../flag-icon/_FlagIconBase.js"),d=require("../flag-icon/useStableUniqueId.js");require("uuid");var c=s.forwardRef((function(s,c){var a=s.height,t=s.width,h=d.useStableUniqueId(4);return e.jsxs(i.FlagIconBase,l.__assign({height:a,width:t,ref:c,viewBox:"0 0 16 12"},{children:[e.jsxs("g",l.__assign({clipPath:"url(#".concat(h[3],")")},{children:[e.jsx("mask",l.__assign({id:"".concat(h[0]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:e.jsx("path",{fill:"#fff",d:"M0 0h16v12H0z"})})),e.jsxs("g",l.__assign({mask:"url(#".concat(h[0],")")},{children:[e.jsx("path",{fill:"#2E42A5",fillRule:"evenodd",d:"M0 0v12h16V0H0Z",clipRule:"evenodd"}),e.jsx("mask",l.__assign({id:"".concat(h[1]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:e.jsx("path",{fill:"#fff",fillRule:"evenodd",d:"M0 0v12h16V0H0Z",clipRule:"evenodd"})})),e.jsxs("g",l.__assign({mask:"url(#".concat(h[1],")")},{children:[e.jsx("path",{fill:"#FECA00",fillRule:"evenodd",d:"M0 0v6h16V0H0Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#E31D1C",fillRule:"evenodd",d:"M0 9v3h16V9H0Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#7B2900",fillRule:"evenodd",d:"M4.606 2.896c-.06-.136 2.256-.823 2.43-.823.173 0 .392.412.392.412l1.408.113s-.166-.525 0-.525c.167 0 2.716.886 2.716.886s-3.187.384-3.187.47c0 .087.209.562.209.562l-.59.193s.035-.573-.061-.573-.381.685-.381.685l-.28-.867s-2.595-.397-2.656-.533Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#FECA00",d:"m4.616 5.009.63.15c-.659 2.759-.05 4.082 1.828 4.205l-.042.646c-2.353-.154-3.157-1.9-2.416-5.001Z"}),e.jsx("path",{fill:"#07138E",d:"m5 4.637.64.1c-.451 2.887-.09 4.192.924 4.156l.023.648C4.967 9.598 4.492 7.883 5 4.637Z"}),e.jsx("path",{fill:"#E10001",d:"m5.648 4.373.64.1c-.451 2.886-.09 4.191.925 4.156l.022.647c-1.62.057-2.095-1.657-1.587-4.903Z"}),e.jsx("path",{fill:"#07138E",d:"m6.851 9.637.645-.063c.053.546.013 1.017-.125 1.413l-.612-.214c.104-.299.137-.678.092-1.136Z"}),e.jsx("path",{stroke:"#FECA00",strokeWidth:".648",d:"M10.75 5.084S11.783 9.731 8.6 9.65"}),e.jsx("path",{fill:"#07138E",d:"m10.681 4.637-.64.1c.452 2.887.09 4.192-.924 4.156l-.023.648c1.62.057 2.095-1.658 1.587-4.904Z"}),e.jsx("path",{fill:"#E10001",d:"m10.033 4.373-.64.1c.451 2.886.09 4.191-.924 4.156l-.023.647c1.62.057 2.095-1.657 1.587-4.903Z"}),e.jsx("path",{fill:"#07138E",d:"m8.704 9.64-.644-.07c-.054.5-.013.931.13 1.295l.603-.236c-.1-.258-.132-.587-.089-.989Z"}),e.jsx("path",{fill:"#908F89",fillRule:"evenodd",d:"M6.933 8.75h1.945v.926H6.933V8.75Z",clipRule:"evenodd"}),e.jsx("path",{stroke:"#FEE901",strokeWidth:".5",d:"M7.906 9c.548 0 1.021-.309 1.348-.763.327-.454.522-1.07.522-1.737 0-.668-.195-1.283-.522-1.737C8.927 4.309 8.454 4 7.906 4c-.549 0-1.022.309-1.35.763-.326.454-.52 1.07-.52 1.737 0 .668.194 1.283.52 1.737.328.454.801.763 1.35.763Z"}),e.jsx("mask",l.__assign({id:"".concat(h[2]),width:"6",height:"7",x:"5",y:"3",maskUnits:"userSpaceOnUse"},{children:e.jsx("path",{fill:"#fff",stroke:"#fff",strokeWidth:".5",d:"M7.906 9c.548 0 1.021-.309 1.348-.763.327-.454.522-1.07.522-1.737 0-.668-.195-1.283-.522-1.737C8.927 4.309 8.454 4 7.906 4c-.549 0-1.022.309-1.35.763-.326.454-.52 1.07-.52 1.737 0 .668.194 1.283.52 1.737.328.454.801.763 1.35.763Z"})})),e.jsxs("g",l.__assign({fillRule:"evenodd",clipRule:"evenodd",mask:"url(#".concat(h[2],")")},{children:[e.jsx("path",{fill:"#8DDD61",d:"M9.08 7.702s-.789-.428-1.015-.581c-.226-.153-.095-.494-.485-.403-.39.092-.702.25-.702.685 0 .435-.306.693-.41.396-.104-.297-.594-1.687 0-1.687s1.983.312 2.392.312c.409 0 .647.212.647.596a.73.73 0 0 1-.428.682Z"}),e.jsx("path",{fill:"#FEE901",d:"M7.906 5.441a.328.328 0 0 0 .324-.33.328.328 0 0 0-.324-.332.328.328 0 0 0-.325.331c0 .183.146.331.325.331Z"}),e.jsx("path",{fill:"#F7FCFF",d:"M6.835 5.47s.377-.091.898.26c.52.351 1.783.55 1.783.275v.537s-2.802-.174-2.952 0c-.15.174-.165-.974 0-1.072.165-.097.27 0 .27 0Z"})]}))]}))]}))]})),e.jsx("defs",{children:e.jsx("clipPath",l.__assign({id:"".concat(h[3])},{children:e.jsx("rect",{width:"16",height:"12",fill:"#fff",rx:"1"})}))})]}))}));exports.EC=c;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const EE: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),r=require("react/jsx-runtime"),i=require("react"),t=require("../flag-icon/_FlagIconBase.js"),s=i.forwardRef((function(i,s){var h=i.height,a=i.width;return r.jsx(t.FlagIconBase,e.__assign({height:h,width:a,ref:s,viewBox:"0 0 640 480"},{children:r.jsxs("g",e.__assign({fillRule:"evenodd",strokeWidth:"1pt"},{children:[r.jsx("rect",{width:"640",height:"477.9",rx:"0",ry:"0"}),r.jsx("rect",{width:"640",height:"159.3",y:"320.7",fill:"#fff",rx:"0",ry:"0"}),r.jsx("path",{fill:"#1291ff",d:"M0 0h640v159.3H0z"})]}))}))}));exports.EE=s;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const EG: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),l=require("react/jsx-runtime"),i=require("react"),s=require("../flag-icon/_FlagIconBase.js"),a=require("../flag-icon/useStableUniqueId.js");require("uuid");var d=i.forwardRef((function(i,d){var c=i.height,h=i.width,n=a.useStableUniqueId(3);return l.jsxs(s.FlagIconBase,e.__assign({height:c,width:h,ref:d,viewBox:"0 0 16 12"},{children:[l.jsxs("g",e.__assign({clipPath:"url(#".concat(n[2],")")},{children:[l.jsx("mask",e.__assign({id:"".concat(n[0]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:l.jsx("path",{fill:"#fff",d:"M0 0h16v12H0z"})})),l.jsxs("g",e.__assign({mask:"url(#".concat(n[0],")")},{children:[l.jsx("path",{fill:"#F7FCFF",fillRule:"evenodd",d:"M0 0v12h16V0H0Z",clipRule:"evenodd"}),l.jsx("mask",e.__assign({id:"".concat(n[1]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:l.jsx("path",{fill:"#fff",fillRule:"evenodd",d:"M0 0v12h16V0H0Z",clipRule:"evenodd"})})),l.jsxs("g",e.__assign({mask:"url(#".concat(n[1],")")},{children:[l.jsx("path",{fill:"#BF2714",fillRule:"evenodd",d:"M0 0v4h16V0H0Z",clipRule:"evenodd"}),l.jsx("path",{fill:"#272727",fillRule:"evenodd",d:"M0 8v4h16V8H0Z",clipRule:"evenodd"}),l.jsx("path",{fill:"#C09302",d:"m6.13 5.11.5.023-.126 2.735-.5-.023.126-2.735Zm.522.17.5.028-.126 2.218-.5-.029.126-2.217Z"}),l.jsx("path",{fill:"#C09302",d:"m7.174 5.446.499.04-.126 1.529-.498-.04.125-1.529ZM9.87 5.11l-.5.023.126 2.735.5-.023L9.87 5.11Zm-.522.17-.5.028.126 2.218.5-.029-.126-2.217Z"}),l.jsx("path",{fill:"#C09302",d:"m8.826 5.446-.499.04.126 1.529.498-.04-.125-1.529Zm-.839 2.217-.488-.111.207-.9.487.111-.206.9Z"}),l.jsx("path",{fill:"#C09302",d:"m8.36 7.663.487-.111-.206-.9-.488.111.207.9Z"}),l.jsx("path",{fill:"#C09302",d:"M8.236 7.655h-.5v-.884h.5v.884Zm-.919-2.198.5.012-.029 1.19-.5-.012.03-1.19Zm.87 0 .5.012-.03 1.19-.5-.012.03-1.19Z"}),l.jsx("path",{fill:"#C09302",d:"m6.669 7.961.13-.482c.53.142.938.213 1.215.213.278 0 .686-.07 1.216-.213l.13.482c-.57.153-1.016.23-1.346.23-.33 0-.776-.077-1.345-.23Zm-.528-2.85c-.033-.33.16-.554.488-.525.108.01.229.041.39.096l.093.032c.221.079.281.1.294.102-.05-.011.095-.273.128-.317.004.028-.012.024-.052.016l-.451-.09.32-.33a.585.585 0 0 1 .433-.171c.018 0 .034-.001.088-.005l.085-.004c.312-.01.536.078.536.399 0 .115.015.3.039.44.008.046.023.09-.023.11.002-.017.111-.06.281-.13l.02-.01c.494-.206.552-.225.711-.128.106.065.207.18.32.353l-.418.274a.872.872 0 0 0-.159-.198c.063.044-.149.114-.26.16l-.02.01c-.385.16-.436.18-.546.18-.299 0-.406-.307-.436-.746-.092.304-.367.687-.594.687-.1 0-.052.016-.464-.13l-.086-.03a1.346 1.346 0 0 0-.272-.072.227.227 0 0 1 .02-.02l-.465.047Z"})]}))]}))]})),l.jsx("defs",{children:l.jsx("clipPath",e.__assign({id:"".concat(n[2])},{children:l.jsx("rect",{width:"16",height:"12",fill:"#fff",rx:"1"})}))})]}))}));exports.EG=d;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const EH: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),i=require("react/jsx-runtime"),s=require("react"),a=require("../flag-icon/_FlagIconBase.js"),l=require("../flag-icon/useStableUniqueId.js");require("uuid");var r=s.forwardRef((function(s,r){var t=s.height,d=s.width,f=l.useStableUniqueId(1);return i.jsxs(a.FlagIconBase,e.__assign({height:t,width:d,ref:r,viewBox:"0 0 640 480"},{children:[i.jsx("defs",{children:i.jsx("clipPath",e.__assign({id:"".concat(f[0])},{children:i.jsx("path",{fillOpacity:".7",d:"M-158.7 0H524v512h-682.7z"})}))}),i.jsxs("g",e.__assign({fillRule:"evenodd",clipPath:"url(#".concat(f[0],")"),transform:"translate(148.8) scale(.94)"},{children:[i.jsx("path",{d:"M-180 0H844v256H-180z"}),i.jsx("path",{fill:"#107b00",d:"M-180 256H844v256H-180z"}),i.jsx("path",{fill:"#fff",d:"M-180 169.3H844v176.1H-180z"}),i.jsx("path",{fill:"#f0f",d:"M310 195.6c-45.2-19.5-84.1 20.6-84 58 0 39.2 38 81 86 62.5-34-10-48-35.3-48-60.7-.3-25.2 15.8-54.6 46-59.9z"}),i.jsx("path",{fill:"#ff1800",d:"m363.1 294.2-25.8-18.9-26 19 10-30.5-26-18.8h32l9.9-30.5 9.8 30.4h32.1l-25.9 18.8"}),i.jsx("path",{fill:"red",d:"M314.3 315.6a65.2 65.2 0 0 1-89.2-59.4 65 65 0 0 1 89.5-60.9 60.6 60.6 0 0 0-51.2 59.2 61.3 61.3 0 0 0 51 61.1zM-180 0l348.6 256.6L-180 512V0z"})]}))]}))}));exports.EH=r;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const ER: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),i=require("react/jsx-runtime"),s=require("react"),a=require("../flag-icon/_FlagIconBase.js"),l=require("../flag-icon/useStableUniqueId.js");require("uuid");var r=s.forwardRef((function(s,r){var t=s.height,h=s.width,n=l.useStableUniqueId(2);return i.jsxs(a.FlagIconBase,e.__assign({height:t,width:h,ref:r,viewBox:"0 0 16 12"},{children:[i.jsxs("g",e.__assign({clipPath:"url(#".concat(n[1],")")},{children:[i.jsx("mask",e.__assign({id:"".concat(n[0]),width:"17",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:i.jsx("path",{fill:"#fff",d:"M0 0h17v12H0z"})})),i.jsxs("g",e.__assign({fillRule:"evenodd",clipRule:"evenodd",mask:"url(#".concat(n[0],")")},{children:[i.jsx("path",{fill:"#43B764",d:"M0 0v6h16V0H0Z"}),i.jsx("path",{fill:"#B4D7F4",d:"M0 6v6h16V6H0Z"}),i.jsx("path",{fill:"#BE0027",d:"m0 0 16.5 6L0 12V0Z"}),i.jsx("path",{fill:"#F3E294",d:"m4.557 8.684-.477.01a4.742 4.742 0 0 1-.096-.128 3.157 3.157 0 0 1-.355-1.458v.13c-.002.58-.002.827.355 1.328.102.198.225.392.37.58l.616-.472-.413.01Z"}),i.jsx("path",{fill:"#F3E294",d:"M1 6.25a3.25 3.25 0 1 0 6.5 0 3.25 3.25 0 0 0-6.5 0Zm5.5 0a2.25 2.25 0 1 1-4.5 0 2.25 2.25 0 0 1 4.5 0Z"})]}))]})),i.jsx("defs",{children:i.jsx("clipPath",e.__assign({id:"".concat(n[1])},{children:i.jsx("rect",{width:"16",height:"12",fill:"#fff",rx:"1"})}))})]}))}));exports.ER=r;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const ES: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var l=require("../../_tslib-fe391a2e.js"),e=require("react/jsx-runtime"),d=require("react"),i=require("../flag-icon/_FlagIconBase.js"),s=require("../flag-icon/useStableUniqueId.js");require("uuid");var h=d.forwardRef((function(d,h){var a=d.height,v=d.width,c=s.useStableUniqueId(4);return e.jsxs(i.FlagIconBase,l.__assign({height:a,width:v,ref:h,viewBox:"0 0 16 12"},{children:[e.jsxs("g",l.__assign({clipPath:"url(#".concat(c[3],")")},{children:[e.jsx("mask",l.__assign({id:"".concat(c[0]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:e.jsx("path",{fill:"#fff",d:"M0 0h16v12H0z"})})),e.jsxs("g",l.__assign({mask:"url(#".concat(c[0],")")},{children:[e.jsx("path",{fill:"#FFB400",fillRule:"evenodd",d:"M0 0v12h16V0H0Z",clipRule:"evenodd"}),e.jsx("mask",l.__assign({id:"".concat(c[1]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:e.jsx("path",{fill:"#fff",fillRule:"evenodd",d:"M0 0v12h16V0H0Z",clipRule:"evenodd"})})),e.jsxs("g",l.__assign({mask:"url(#".concat(c[1],")")},{children:[e.jsx("path",{fill:"#C51918",fillRule:"evenodd",d:"M0 0v3h16V0H0Zm0 9v3h16V9H0Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#F1F9FF",d:"M2.504 5.136h.56v2.912h-.56z"}),e.jsx("path",{fill:"#C88A02",fillRule:"evenodd",d:"M3.288 4.632H2.28v.28h.168v.224h.672v-.224h.168v-.28ZM3.12 8.216h.168v.28H2.28v-.28h.168v-.224h.672v.224Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#AD1619",fillRule:"evenodd",d:"M2.784 4.688c.122 0 .134-.046.206-.114.056-.054.186-.12.186-.194 0-.17-.175-.308-.392-.308-.216 0-.392.138-.392.308 0 .083.09.138.157.194.072.058.124.114.235.114Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#005BBF",fillRule:"evenodd",d:"M2.28 8.496h1.008v.448s-.126-.056-.252-.056-.252.056-.252.056-.126-.056-.252-.056-.252.056-.252.056v-.448Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#F1F9FF",d:"M7.992 5.136h.56v2.912h-.56z"}),e.jsx("path",{fill:"#C88A02",fillRule:"evenodd",d:"M8.776 4.632H7.768v.28h.168v.224h.672v-.224h.168v-.28Zm-.168 3.584h.168v.28H7.768v-.28h.168v-.224h.672v.224Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#AD1619",fillRule:"evenodd",d:"M8.272 4.688c.122 0 .134-.046.206-.114.056-.054.186-.12.186-.194 0-.17-.175-.308-.392-.308-.216 0-.392.138-.392.308 0 .083.09.138.157.194.072.058.124.114.235.114Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#005BBF",fillRule:"evenodd",d:"M7.768 8.496h1.008v.448s-.126-.056-.252-.056-.252.056-.252.056-.126-.056-.252-.056-.252.056-.252.056v-.448Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#AD1619",fillRule:"evenodd",d:"M2.494 7.84c.101-.122.157-.234.157-.352a.316.316 0 0 0-.06-.192l.006-.003s.11-.048.15-.067c.072-.034.135-.07.197-.116.04-.028.092-.06.173-.103l.096-.051.096-.053a.62.62 0 0 0 .183-.144.268.268 0 0 0-.061-.399.728.728 0 0 0-.301-.096l-.197-.03a4.931 4.931 0 0 1-.177-.03c.345-.057.836-.036 1.052.076l.206-.398c-.44-.228-1.445-.204-1.82.054-.275.19-.238.476.048.6.12.05.276.085.564.131a1.431 1.431 0 0 0-.126.081.799.799 0 0 1-.127.075 6.71 6.71 0 0 1-.125.055l-.017.008c-.233.106-.346.252-.312.517l.018.143.033.01.344.284Zm-.288-.37v.002-.002Zm6.147.018c0 .118.056.23.157.352l.344-.284.033-.01.018-.143c.034-.265-.079-.411-.312-.517l-.016-.008a6.704 6.704 0 0 1-.125-.055.8.8 0 0 1-.128-.075 1.431 1.431 0 0 0-.126-.08c.289-.047.445-.081.564-.133.286-.123.323-.41.048-.6-.375-.257-1.379-.28-1.82-.053l.206.398c.216-.112.708-.133 1.052-.075l-.177.029-.196.03a.728.728 0 0 0-.301.096.268.268 0 0 0-.062.4.605.605 0 0 0 .183.143l.096.053.096.05c.081.044.134.076.173.104.062.045.126.082.198.116.039.02.15.068.15.067l.006.003a.316.316 0 0 0-.061.192Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#F1F9FF",d:"m2.962 6.2.165.034v.247c-.176.14-.623.377-.623.377V6.2h.458Zm5.195 0-.165.034v.247c.176.14.623.377.623.377V6.2h-.458Z"}),e.jsx("path",{fill:"#AD1619",fillRule:"evenodd",d:"M7.388 3.603v-.082a1.53 1.53 0 0 0-.905-.31 1.806 1.806 0 0 0-.917-.157c-.466-.046-.935.157-.935.157-.473 0-.905.31-.905.31v.082l.565.567s.159.546 1.272.418v.001s.737-.02.79-.037l.063-.02c.144-.041.31-.09.407-.362l.565-.567Zm-1.825-.518Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#C88A02",fillRule:"evenodd",d:"m3.76 3.7.038-.042.513.483c.097-.026.626-.16 1.216-.168h.045a5.281 5.281 0 0 1 1.232.172s-.006.053-.021.116l.056-.11.006-.006.517-.487.038.041-.514.483c-.075.138-.112.23-.112.267 0 .058-.15.092-.444.128-.23.027-.5.046-.722.048h-.056a7.222 7.222 0 0 1-.722-.048c-.294-.036-.444-.07-.444-.128a.118.118 0 0 0-.004-.027.44.44 0 0 1-.064-.154 2.84 2.84 0 0 0-.044-.086L3.76 3.7Zm2.867.75c.039.019.07 0 .095-.035a.18.18 0 0 0-.004.027.541.541 0 0 1-.098.032 3.068 3.068 0 0 1-.296.047c-.238.029-.52.047-.744.049a7.095 7.095 0 0 1-.744-.049 3.067 3.067 0 0 1-.296-.047.633.633 0 0 1-.073-.02l.006-.003c.122-.058.93-.111 1.077-.12.145.009.954.062 1.077.12Zm.154-.01-.001.001Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#005BBF",fillRule:"evenodd",d:"M5.556 2.674a.168.168 0 1 0 0-.336.168.168 0 0 0 0 .336Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#C88A02",fillRule:"evenodd",d:"M5.493 2.038h.117v.074h.076v.117H5.61v.233h.076v.117h-.27v-.117h.077v-.233h-.077v-.117h.077v-.074Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#C88A02",d:"M5.472 2.672h.224V3.4h-.224z"}),e.jsx("path",{fill:"#C88A02",d:"m3.854 3.649-.308-.012c.145-.839.86-1.25 2.002-1.25 1.144 0 1.856.413 1.99 1.255l-.415.044c-.066-.41-.752-.78-1.569-.78-.818-.001-1.629.33-1.7.743Z"}),e.jsx("path",{fill:"#E1E5E8",fillRule:"evenodd",d:"M3.736 4.632h3.64v3.27S7.106 9 5.556 9s-1.82-1.126-1.82-1.126V4.632Z",clipRule:"evenodd",opacity:".3"}),e.jsx("mask",l.__assign({id:"".concat(c[2]),width:"5",height:"5",x:"3",y:"4",maskUnits:"userSpaceOnUse"},{children:e.jsx("path",{fill:"#fff",fillRule:"evenodd",d:"M3.736 4.632h3.64v3.27S7.106 9 5.556 9s-1.82-1.126-1.82-1.126V4.632Z",clipRule:"evenodd"})})),e.jsxs("g",l.__assign({mask:"url(#".concat(c[2],")")},{children:[e.jsx("path",{fill:"#FFC034",d:"M3.736 6.648h1.848v2.184H3.736z"}),e.jsx("path",{fill:"#AD1619",d:"M3.736 4.576h1.848v2.128H3.736z"}),e.jsx("path",{fill:"#AD1619",d:"M5.528 6.592h1.848V8.72H5.528z"}),e.jsx("path",{fill:"#F1F9FF",d:"M5.528 4.632h1.96v2.072h-1.96z"}),e.jsx("path",{fill:"#F1F9FF",fillRule:"evenodd",d:"M6.741 8.722s-1.186.093-1.186-.672c0 0-.011.672-1.25.672v.603h2.436v-.603Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#005BBF",fillRule:"evenodd",stroke:"#AD1619",strokeWidth:".583",d:"M5.556 7.096c.232 0 .42-.2.42-.448 0-.247-.188-.448-.42-.448-.232 0-.42.2-.42.448s.188.448.42.448Z",clipRule:"evenodd"})]})),e.jsx("path",{fill:"#C88A02",fillRule:"evenodd",d:"M4.5 6a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#C37C9C",fillRule:"evenodd",d:"M6.5 6a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#FFC034",fillRule:"evenodd",d:"M6.5 8a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#AD1619",d:"M4.5 8a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z"})]}))]}))]})),e.jsx("defs",{children:e.jsx("clipPath",l.__assign({id:"".concat(c[3])},{children:e.jsx("rect",{width:"16",height:"12",fill:"#fff",rx:"1"})}))})]}))}));exports.ES=h;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const ET: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),i=require("react/jsx-runtime"),r=require("react"),s=require("../flag-icon/_FlagIconBase.js"),l=require("../flag-icon/useStableUniqueId.js");require("uuid");var a=r.forwardRef((function(r,a){var t=r.height,c=r.width,n=l.useStableUniqueId(1);return i.jsxs(s.FlagIconBase,e.__assign({height:t,width:c,ref:a,viewBox:"0 0 640 480"},{children:[i.jsx("defs",{children:i.jsx("clipPath",e.__assign({id:"".concat(n[0])},{children:i.jsx("path",{fillOpacity:".7",d:"M-61.3 0h682.7v512H-61.3z"})}))}),i.jsxs("g",e.__assign({fillRule:"evenodd",strokeWidth:"1pt",clipPath:"url(#".concat(n[0],")"),transform:"translate(57.5) scale(.94)"},{children:[i.jsx("path",{fill:"#ffc621",d:"M-238 3.5H800v498H-238z"}),i.jsx("path",{fill:"#ef2118",d:"M-240 342.5H799.3V512H-240z"}),i.jsx("path",{fill:"#298c08",d:"M-238 0H800v180H-238z"}),i.jsx("circle",{cx:"534.2",cy:"353",r:"199.7",fill:"#006bc6",transform:"matrix(.54 0 0 .54 -25.8 74)"}),i.jsx("path",{fill:"#ffc621",d:"m214.3 188.2-6.5 4.5 23.5 33 6.3-4-23.4-33.5zm29.4 78-9.7-6.8 4-12.7-48.1.7-14-10.7 65.7-.7 12.2-36.9 6.6 15-16.7 52zm76.5-70.7-6.3-4.8-24.3 32.4 5.6 4.7 25-32.3zM254.8 247l3.5-11.2h13.3L256.4 190l6-16.5 20.5 62.4 38.8.5-12.2 10.7-54.7-.2zm90.6 51.2 2.7-7.4-38.3-13.3-2.8 7 38.4 13.7zm-69.1-46.4 11.7-.1 4.1 12.6 38.8-28.5 17.6.6-53.1 38.7 11.5 37.2-14-8.4-16.6-52.1zm-19.8 102 7.9.2.3-40.5-7.4-.5-.8 40.9zm22-80.3 3.8 11.1-10.7 8 39.4 27.7 5 16.8-53.6-38-31.5 22.7 3.5-16 44-32.3zm-103.3 13 2.3 7.5 38.7-12.2-2-7.2-39 11.9zm83.2-4-9.4 7.1-10.8-7.7-14.2 46-14.4 10 19.5-62.7-31.4-23 16.3-1.6 44.4 31.9z"})]}))]}))}));exports.ET=a;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const FI: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),r=require("react/jsx-runtime"),i=require("react"),s=require("../flag-icon/_FlagIconBase.js"),t=i.forwardRef((function(i,t){var a=i.height,h=i.width;return r.jsxs(s.FlagIconBase,e.__assign({height:a,width:h,ref:t,viewBox:"0 0 640 480"},{children:[r.jsx("path",{fill:"#fff",d:"M0 0h640v480H0z"}),r.jsx("path",{fill:"#003580",d:"M0 174.5h640v131H0z"}),r.jsx("path",{fill:"#003580",d:"M175.5 0h130.9v480h-131z"})]}))}));exports.FI=t;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const FJ: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var s=require("../../_tslib-fe391a2e.js"),e=require("react/jsx-runtime"),l=require("react"),h=require("../flag-icon/_FlagIconBase.js"),i=require("../flag-icon/useStableUniqueId.js");require("uuid");var d=l.forwardRef((function(l,d){var t=l.height,a=l.width,c=i.useStableUniqueId(6);return e.jsxs(h.FlagIconBase,s.__assign({height:t,width:a,ref:d,viewBox:"0 0 16 12"},{children:[e.jsxs("g",s.__assign({clipPath:"url(#".concat(c[5],")")},{children:[e.jsx("mask",s.__assign({id:"".concat(c[0]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:e.jsx("path",{fill:"#fff",d:"M0 0h16v12H0z"})})),e.jsxs("g",s.__assign({mask:"url(#".concat(c[0],")")},{children:[e.jsx("path",{fill:"#67BFE5",fillRule:"evenodd",d:"M0 0v12h16V0H0Z",clipRule:"evenodd"}),e.jsx("mask",s.__assign({id:"".concat(c[1]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:e.jsx("path",{fill:"#fff",fillRule:"evenodd",d:"M0 0v12h16V0H0Z",clipRule:"evenodd"})})),e.jsxs("g",s.__assign({mask:"url(#".concat(c[1],")")},{children:[e.jsx("mask",s.__assign({id:"".concat(c[2]),width:"9",height:"7",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:e.jsx("path",{fill:"#fff",d:"M0 0h9v7H0z"})})),e.jsxs("g",s.__assign({mask:"url(#".concat(c[2],")")},{children:[e.jsx("path",{fill:"#F7FCFF",d:"m-1.002 6.5 1.98.868L9.045.944l1.045-1.29-2.118-.29-3.29 2.768-2.649 1.865L-1.002 6.5Z"}),e.jsx("path",{fill:"#F50100",d:"m-.731 7.108 1.009.505 9.436-8.08H8.298L-.731 7.109Z"}),e.jsx("path",{fill:"#F7FCFF",d:"m10.002 6.5-1.98.868L-.045.944-1.09-.346l2.118-.29 3.29 2.768 2.649 1.865L10.002 6.5Z"}),e.jsx("path",{fill:"#F50100",d:"m9.935 6.937-1.01.504-4.018-3.46-1.19-.386L-1.19-.342H.227L5.13 3.502l1.303.463 3.502 2.972Z"}),e.jsxs("mask",s.__assign({id:"".concat(c[3]),width:"11",height:"9",x:"-1",y:"-1",fill:"#000",maskUnits:"userSpaceOnUse"},{children:[e.jsx("path",{fill:"#fff",d:"M-1-1h11v9H-1z"}),e.jsx("path",{fillRule:"evenodd",d:"M4.992 0h-1v3H0v1h3.992v3h1V4H9V3H4.992V0Z",clipRule:"evenodd"})]})),e.jsx("path",{fill:"#F50100",fillRule:"evenodd",d:"M4.992 0h-1v3H0v1h3.992v3h1V4H9V3H4.992V0Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#F7FCFF",d:"M3.992 0v-.75h-.75V0h.75Zm1 0h.75v-.75h-.75V0Zm-1 3v.75h.75V3h-.75ZM0 3v-.75h-.75V3H0Zm0 1h-.75v.75H0V4Zm3.992 0h.75v-.75h-.75V4Zm0 3h-.75v.75h.75V7Zm1 0v.75h.75V7h-.75Zm0-3v-.75h-.75V4h.75ZM9 4v.75h.75V4H9Zm0-1h.75v-.75H9V3ZM4.992 3h-.75v.75h.75V3Zm-1-2.25h1v-1.5h-1v1.5ZM4.742 3V0h-1.5v3h1.5ZM0 3.75h3.992v-1.5H0v1.5ZM.75 4V3h-1.5v1h1.5Zm3.242-.75H0v1.5h3.992v-1.5ZM4.742 7V4h-1.5v3h1.5Zm.25-.75h-1v1.5h1v-1.5ZM4.242 4v3h1.5V4h-1.5ZM9 3.25H4.992v1.5H9v-1.5ZM8.25 3v1h1.5V3h-1.5Zm-3.258.75H9v-1.5H4.992v1.5ZM4.242 0v3h1.5V0h-1.5Z",mask:"url(#".concat(c[3],")")})]})),e.jsx("path",{fill:"#F7FCFF",fillRule:"evenodd",d:"M10 5h4.828v4.167S14.423 11 12.414 11C10.404 11 10 9.167 10 9.167V5Z",clipRule:"evenodd"}),e.jsx("mask",s.__assign({id:"".concat(c[4]),width:"5",height:"6",x:"10",y:"5",maskUnits:"userSpaceOnUse"},{children:e.jsx("path",{fill:"#fff",fillRule:"evenodd",d:"M10 5h4.828v4.167S14.423 11 12.414 11C10.404 11 10 9.167 10 9.167V5Z",clipRule:"evenodd"})})),e.jsxs("g",s.__assign({mask:"url(#".concat(c[4],")")},{children:[e.jsx("path",{fill:"#C3352C",d:"M10 5h4.828v1.5H10z"}),e.jsx("path",{fill:"#C3352C",d:"M12.069 6.333h.69V11h-.69z"}),e.jsx("path",{fill:"#C3352C",fillRule:"evenodd",d:"M10 8.167h4.828v.666H10v-.666Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#979797",fillRule:"evenodd",d:"M11.27 10.368c.29.41.527.571.694.33.118-.17.13-.34-.037-.374a2.795 2.795 0 0 1-.205-.287l.005-.005c.047-.046.05-.107.04-.13-.004-.03.02-.073.17-.188.137-.104.198-.203.108-.311-.047-.057-.09-.068-.223-.089l-.04-.006a.716.716 0 0 1-.087-.018l-.093-.178a1.145 1.145 0 0 0-.51.098l-.152.064c-.05.021-.06.026-.061.025l.002-.002c.004-.003.01-.008.001-.008-.035 0-.073-.004-.178-.017l-.02-.003c-.302-.038-.378-.037-.427.104-.074.214.367.605.6.652.118.024.258.136.413.343Zm.328-.294c.029 0 .05 0 .07-.006l.006-.013a.132.132 0 0 1-.076.02Zm-1.1-.59c-.007-.007-.009-.017-.005-.029 0 .003.002.008.008.016a.347.347 0 0 0 .026.029.06.06 0 0 1-.03-.016Zm.409.296c-.084-.016-.297-.194-.38-.28.022.006.051.01.083.013.014 0 .028.002.043.004l.02.003c.118.015.159.019.209.019.029 0 .023.01.02.016-.002.002-.003.003-.002.004a.761.761 0 0 0 .138-.055l.15-.064a.941.941 0 0 1 .259-.072c.01.042.034.08.074.11a.443.443 0 0 0 .216.076c-.128.106-.193.194-.213.28-.116.037-.105.167-.036.298.048.09.14.219.276.39l.098.046c-.03 0-.045-.013-.058-.023-.015-.013-.024-.02-.045.01-.002.002-.093-.06-.287-.334-.19-.254-.376-.402-.565-.44Zm.61.15v-.005.005Zm.08-.106h-.008.007Zm.001 0h-.002.002Z",clipRule:"evenodd"}),e.jsx("path",{stroke:"#964C36",strokeWidth:".5",d:"M10.828 8.055s-.239-.33-.239-.448"}),e.jsx("path",{stroke:"#2A8E51",strokeWidth:".5",d:"M10.68 7.771s-.306-.13-.306 0m.3-.137s-.214-.272-.375-.272c-.162 0-.158.136-.158.136m.411-.138s-.096-.445-.25-.445c-.152 0-.152.223-.152.223m.44.222s-.042-.382.155-.382"}),e.jsx("path",{stroke:"#964C36",strokeWidth:".5",d:"M11.13 7.99s-.11-.391-.07-.502"}),e.jsx("path",{stroke:"#2A8E51",strokeWidth:".5",d:"M11.088 7.673s-.242-.226-.286-.104m.328-.026s-.108-.33-.26-.385c-.15-.055-.194.074-.194.074m.433.012s.063-.452-.081-.505c-.144-.052-.22.158-.22.158m.338.36s.09-.374.276-.307"}),e.jsx("path",{stroke:"#964C36",strokeWidth:".35",d:"M11.376 8.13s.158-.375.132-.49"}),e.jsx("path",{stroke:"#2A8E51",strokeWidth:".35",d:"M11.457 7.82s.267-.195.297-.068m-.324-.066s.148-.314.305-.35c.158-.037.184.097.184.097m-.431-.041s-.007-.457.143-.491c.149-.035.2.183.2.183m-.381.316s-.044-.383-.236-.338m2.135.839s.121-.557.465-.557c.345 0 .499.588.499.588"}),e.jsx("path",{stroke:"#2A8E51",strokeWidth:".35",d:"M13.065 7.52s.185-.328.797-.301c.612.027.723.302.723.302m-1.644-.418s.336-.417.807-.064l.16.064s.16-.472.933 0"}),e.jsx("path",{stroke:"#964C36",strokeWidth:".5",d:"M13.87 8.018s.024-.52.106-.662m.574 1.801s-.31-.145-.402 0c-.093.145-1.207 1.48-1.207 1.48"}),e.jsx("path",{fill:"#FFF203",fillRule:"evenodd",d:"m13.482 9.298.69.482s.318-.226.16-.354c-.16-.128-.592-.354-.592-.354l-.258.226Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#00A651",fillRule:"evenodd",d:"M13.458 9.322s-.16.168-.16.296c0 .128-.149.47-.149.47s.417.257.503.094c.087-.164.648-.066.549-.315-.1-.25-.743-.545-.743-.545Z",clipRule:"evenodd"}),e.jsx("path",{fill:"#FFD100",fillRule:"evenodd",d:"M10.528 5.591s.369-.189.551 0c.183.19.332-.016.332-.13s.29-.505.29-.188c0 .318-.09.498.165.498.254 0 1.401-.44 1.676-.31.275.13.486.098.416-.088-.07-.187-.25-.303-.596-.201-.346.101-.264.2-.563.2-.3 0-.632-.099-.632-.099s.093-.167.435-.048c.341.119.812-.147.94-.147.128 0 .48-.008.516.094.034.101.247.195.085.29-.162.094-.43.153-.246.275.184.121.608.098.628.224.02.126.221.315.14.315-.08 0-.225.178-.36.124-.136-.054-.152-.102-.022-.146s.128-.228.021-.228-.055.064-.299 0c-.244-.065-.567-.137-.547 0 .02.136.178.346-.115.374-.293.028-.43.14-.487.05-.057-.09-.261-.211-.1-.25.16-.038.313.131.37.104.058-.028.19-.043.08-.16-.11-.118-.29-.187-.123-.275.167-.088.035-.09-.284.092-.32.182-.497.337-.777.315-.28-.022-.386.008-.476-.022-.09-.03-.528.326-.655.236-.126-.09-.534-.125-.46-.236.073-.11.172-.168.281-.11.11.056.22.113.293.056.074-.057.288-.253.234-.292-.054-.04-.002-.171-.306-.171s-.412.147-.484.054c-.072-.092.08-.2.08-.2Z",clipRule:"evenodd"})]}))]}))]}))]})),e.jsx("defs",{children:e.jsx("clipPath",s.__assign({id:"".concat(c[5])},{children:e.jsx("rect",{width:"16",height:"12",fill:"#fff",rx:"1"})}))})]}))}));exports.FJ=d;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const FK: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var s=require("../../_tslib-fe391a2e.js"),h=require("react/jsx-runtime"),e=require("react"),i=require("../flag-icon/_FlagIconBase.js"),l=require("../flag-icon/useStableUniqueId.js");require("uuid");var a=e.forwardRef((function(e,a){var t=e.height,d=e.width,c=l.useStableUniqueId(6);return h.jsxs(i.FlagIconBase,s.__assign({height:t,width:d,ref:a,viewBox:"0 0 16 12"},{children:[h.jsxs("g",s.__assign({clipPath:"url(#".concat(c[5],")")},{children:[h.jsx("mask",s.__assign({id:"".concat(c[0]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:h.jsx("path",{fill:"#fff",d:"M0 0h16v12H0z"})})),h.jsxs("g",s.__assign({mask:"url(#".concat(c[0],")")},{children:[h.jsx("path",{fill:"#2E42A5",fillRule:"evenodd",d:"M0 0v12h16V0H0Z",clipRule:"evenodd"}),h.jsx("mask",s.__assign({id:"".concat(c[1]),width:"16",height:"12",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:h.jsx("path",{fill:"#fff",fillRule:"evenodd",d:"M0 0v12h16V0H0Z",clipRule:"evenodd"})})),h.jsxs("g",s.__assign({mask:"url(#".concat(c[1],")")},{children:[h.jsx("mask",s.__assign({id:"".concat(c[2]),width:"9",height:"7",x:"0",y:"0",maskUnits:"userSpaceOnUse"},{children:h.jsx("path",{fill:"#fff",d:"M0 0h9v7H0z"})})),h.jsxs("g",s.__assign({mask:"url(#".concat(c[2],")")},{children:[h.jsx("path",{fill:"#F7FCFF",d:"m-1.002 6.5 1.98.868L9.045.944l1.045-1.29-2.118-.29-3.29 2.768-2.649 1.865L-1.002 6.5Z"}),h.jsx("path",{fill:"#F50100",d:"m-.731 7.108 1.009.505 9.436-8.08H8.298L-.731 7.109Z"}),h.jsx("path",{fill:"#F7FCFF",d:"m10.002 6.5-1.98.868L-.045.944-1.09-.346l2.118-.29 3.29 2.768 2.649 1.865L10.002 6.5Z"}),h.jsx("path",{fill:"#F50100",d:"m9.935 6.937-1.01.504-4.018-3.46-1.19-.386L-1.19-.342H.227L5.13 3.502l1.303.463 3.502 2.972Z"}),h.jsxs("mask",s.__assign({id:"".concat(c[3]),width:"11",height:"9",x:"-1",y:"-1",fill:"#000",maskUnits:"userSpaceOnUse"},{children:[h.jsx("path",{fill:"#fff",d:"M-1-1h11v9H-1z"}),h.jsx("path",{fillRule:"evenodd",d:"M4.992 0h-1v3H0v1h3.992v3h1V4H9V3H4.992V0Z",clipRule:"evenodd"})]})),h.jsx("path",{fill:"#F50100",fillRule:"evenodd",d:"M4.992 0h-1v3H0v1h3.992v3h1V4H9V3H4.992V0Z",clipRule:"evenodd"}),h.jsx("path",{fill:"#F7FCFF",d:"M3.992 0v-.75h-.75V0h.75Zm1 0h.75v-.75h-.75V0Zm-1 3v.75h.75V3h-.75ZM0 3v-.75h-.75V3H0Zm0 1h-.75v.75H0V4Zm3.992 0h.75v-.75h-.75V4Zm0 3h-.75v.75h.75V7Zm1 0v.75h.75V7h-.75Zm0-3v-.75h-.75V4h.75ZM9 4v.75h.75V4H9Zm0-1h.75v-.75H9V3ZM4.992 3h-.75v.75h.75V3Zm-1-2.25h1v-1.5h-1v1.5ZM4.742 3V0h-1.5v3h1.5ZM0 3.75h3.992v-1.5H0v1.5ZM.75 4V3h-1.5v1h1.5Zm3.242-.75H0v1.5h3.992v-1.5ZM4.742 7V4h-1.5v3h1.5Zm.25-.75h-1v1.5h1v-1.5ZM4.242 4v3h1.5V4h-1.5ZM9 3.25H4.992v1.5H9v-1.5ZM8.25 3v1h1.5V3h-1.5Zm-3.258.75H9v-1.5H4.992v1.5ZM4.242 0v3h1.5V0h-1.5Z",mask:"url(#".concat(c[3],")")})]})),h.jsx("path",{fill:"#6DC2FF",stroke:"#F7FCFF",strokeWidth:".25",d:"M12.975 9.857c-.514 0-.872-.121-1.127-.333-.256-.213-.424-.53-.531-.952-.107-.423-.152-.94-.168-1.541-.011-.423-.01-.881-.007-1.373l.002-.517h3.708c.066 1.204.09 2.377-.146 3.257-.121.452-.308.815-.582 1.065-.272.247-.64.394-1.149.394Z"}),h.jsx("mask",s.__assign({id:"".concat(c[4]),width:"5",height:"5",x:"11",y:"5",maskUnits:"userSpaceOnUse"},{children:h.jsx("path",{fill:"#fff",stroke:"#fff",strokeWidth:".25",d:"M12.975 9.857c-.514 0-.872-.121-1.127-.333-.256-.213-.424-.53-.531-.952-.107-.423-.152-.94-.168-1.541-.011-.423-.01-.881-.007-1.373l.002-.517h3.708c.066 1.204.09 2.377-.146 3.257-.121.452-.308.815-.582 1.065-.272.247-.64.394-1.149.394Z"})})),h.jsxs("g",s.__assign({mask:"url(#".concat(c[4],")")},{children:[h.jsx("path",{fill:"#E1E5E8",fillRule:"evenodd",d:"M12.26 6.793s-.196-.146-.281-.382a8.832 8.832 0 0 1-.252-.92c0-.055-.223 0-.223 0s.003-.267.087-.267c.084 0 .088-.247.292-.184.204.062.364.29.572.29.208 0 1.077.066 1.216.066.14 0 .508.295.508.515 0 .221-.1.55-.18.55-.078 0-.178.191-.328.128-.15-.063-.508-.193-.83-.128-.32.065-.386.024-.386.128 0 .104-.194.204-.194.204Z",clipRule:"evenodd"}),h.jsx("path",{fill:"#49801E",fillRule:"evenodd",d:"M11.8 6.64h2.578l-.444.573h-1.822l-.312-.574Z",clipRule:"evenodd"}),h.jsx("path",{stroke:"#fff",strokeWidth:".533",d:"M11.767 9.148s.445.16.631.14c.206-.022.389-.257.527-.257.137 0 .402.235.608.257.186.02.55-.14.55-.14m-2.806-.68c.154-.13.49-.14.49-.14s.445.16.631.14c.206-.022.389-.257.527-.257.137 0 .402.236.608.257.186.02.55-.14.55-.14s.203-.229.458.013"}),h.jsx("path",{fill:"#fff",d:"m11.23 7.765-.337-.413c.132-.108.354-.215.678-.332l.158-.008c.336.087.56.124.643.116a.44.44 0 0 0 .155-.08c.235-.156.258-.169.398-.169.127 0 .154.013.42.157l.095.049c.057.027.097.04.12.043.063.006.192-.024.373-.096.235-.214.532-.192.788.042.17.155.308.28.411.376l-.362.392c-.102-.095-.239-.22-.408-.374-.068-.062-.053-.061-.083-.029l-.092.065c-.28.118-.502.173-.68.155a.883.883 0 0 1-.297-.093 2.674 2.674 0 0 1-.118-.061c-.129-.07-.178-.092-.167-.092.022 0-.009.017-.103.08-.152.1-.258.152-.397.166-.155.015-.396-.022-.748-.11-.229.087-.38.162-.447.216Z"})]})),h.jsx("path",{stroke:"#B85F3C",strokeWidth:".5",d:"M11.482 9.197s.492.471.195.79c-.297.32-.57.134-.57.134m3.418-.924s-.492.471-.195.79c.297.32.57.134.57.134"}),h.jsx("path",{stroke:"#CB8B73",strokeWidth:".5",d:"M11.16 9.576s.848.81 1.89.81c1.042 0 1.88-.618 1.88-.618"})]}))]}))]})),h.jsx("defs",{children:h.jsx("clipPath",s.__assign({id:"".concat(c[5])},{children:h.jsx("rect",{width:"16",height:"12",fill:"#fff",rx:"1"})}))})]}))}));exports.FK=a;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const FM: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),i=require("react/jsx-runtime"),r=require("react"),s=require("../flag-icon/_FlagIconBase.js"),l=require("../flag-icon/useStableUniqueId.js");require("uuid");var a=r.forwardRef((function(r,a){var t=r.height,n=r.width,c=l.useStableUniqueId(1);return i.jsxs(s.FlagIconBase,e.__assign({height:t,width:n,ref:a,viewBox:"0 0 640 480"},{children:[i.jsx("defs",{children:i.jsx("clipPath",e.__assign({id:"".concat(c[0])},{children:i.jsx("path",{fillOpacity:".7",d:"M-81.3 0h682.6v512H-81.3z"})}))}),i.jsxs("g",e.__assign({fillRule:"evenodd",strokeWidth:"1pt",clipPath:"url(#".concat(c[0],")"),transform:"translate(76.3) scale(.94)"},{children:[i.jsx("path",{fill:"#6797d6",d:"M-252 0H772v512H-252z"}),i.jsx("path",{fill:"#fff",d:"m259.8 123-32.4 22.2 12.4-35.9-32.5-22.2h40.1l12.4-35.9 12.4 36h40l-32.4 22.1 12.4 35.9M259.8 390l-32.4-22.2 12.4 36-32.5 22.1h40.1l12.4 35.9 12.4-36 40 .1-32.4-22.2 12.4-35.9m-188.4-92.4L79.3 306l1.4-38-37.5-11.7 38.4-11.7 1.3-38 22.3 30.8 38.4-11.8-24.6 30.7 22.4 30.7m274.2-11.7 24.6 30.7-1.4-38 37.5-11.7-38.4-11.7-1.3-38-22.3 30.8-38.4-11.8 24.6 30.7-22.4 30.7"})]}))]}))}));exports.FM=a;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const FO: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),i=require("react/jsx-runtime"),r=require("react"),s=require("../flag-icon/_FlagIconBase.js"),a=require("../flag-icon/useStableUniqueId.js");require("uuid");var t=r.forwardRef((function(r,t){var l=r.height,h=r.width,n=a.useStableUniqueId(1);return i.jsxs(s.FlagIconBase,e.__assign({height:l,width:h,ref:t,viewBox:"0 0 640 480"},{children:[i.jsx("defs",{children:i.jsx("clipPath",e.__assign({id:"".concat(n[0])},{children:i.jsx("path",{fillOpacity:".7",d:"M-78 32h640v480H-78z"})}))}),i.jsxs("g",e.__assign({fillRule:"evenodd",strokeWidth:"0",clipPath:"url(#".concat(n[0],")"),transform:"translate(78 -32)"},{children:[i.jsx("path",{fill:"#fff",d:"M-78 32h663.9v480H-78z"}),i.jsx("path",{fill:"#003897",d:"M-76 218.7h185.9V32H216v186.7h371.8v106.6H216V512H109.9V325.3h-186V218.7z"}),i.jsx("path",{fill:"#d72828",d:"M-76 245.3h212.4V32h53.1v213.3H588v53.4H189.5V512h-53V298.7H-76v-53.4z"})]}))]}))}));exports.FO=t;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ height: number;
4
+ width: number;
5
+ };
6
+ export declare const FR: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<SVGSVGElement>>;
7
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../_tslib-fe391a2e.js"),i=require("react/jsx-runtime"),r=require("react"),s=require("../flag-icon/_FlagIconBase.js"),t=r.forwardRef((function(r,t){var a=r.height,l=r.width;return i.jsx(s.FlagIconBase,e.__assign({height:a,width:l,ref:t,viewBox:"0 0 640 480"},{children:i.jsxs("g",e.__assign({fillRule:"evenodd",strokeWidth:"1pt"},{children:[i.jsx("path",{fill:"#fff",d:"M0 0h640v480H0z"}),i.jsx("path",{fill:"#00267f",d:"M0 0h213.3v480H0z"}),i.jsx("path",{fill:"#f31830",d:"M426.7 0H640v480H426.7z"})]}))}))}));exports.FR=t;