@mailstep/design-system 0.6.2-beta.2 → 0.6.2-beta.3

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 (368) hide show
  1. package/package.json +1 -1
  2. package/ui/Blocks/CommonGrid/CommonGrid.js +38 -33
  3. package/ui/Blocks/CommonGrid/CommonGridContainer.js +33 -28
  4. package/ui/Blocks/CommonGrid/HoC/withReduxActions.js +10 -8
  5. package/ui/Blocks/CommonGrid/StandardButtons.js +20 -11
  6. package/ui/Blocks/CommonGrid/components/ActionHead/ActionHead.js +26 -21
  7. package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownMenu.js +13 -8
  8. package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownSelect.js +48 -20
  9. package/ui/Blocks/CommonGrid/components/ActionHead/index.js +7 -2
  10. package/ui/Blocks/CommonGrid/components/BooleanSelect/BooleanSelect.js +15 -10
  11. package/ui/Blocks/CommonGrid/components/BooleanSelect/index.js +7 -2
  12. package/ui/Blocks/CommonGrid/components/ButtonMore/ButtonMore.js +19 -14
  13. package/ui/Blocks/CommonGrid/components/ButtonMore/index.js +7 -2
  14. package/ui/Blocks/CommonGrid/components/ColumnFilterCell.js +22 -17
  15. package/ui/Blocks/CommonGrid/components/ColumnTitle/ColumnTitle.js +50 -22
  16. package/ui/Blocks/CommonGrid/components/ColumnTitle/index.js +7 -2
  17. package/ui/Blocks/CommonGrid/components/ColumnTitle.js +13 -8
  18. package/ui/Blocks/CommonGrid/components/ControlButtons/ControlButtons.js +38 -9
  19. package/ui/Blocks/CommonGrid/components/ControlButtons/index.js +7 -2
  20. package/ui/Blocks/CommonGrid/components/DataCell.js +18 -13
  21. package/ui/Blocks/CommonGrid/components/DataRow.js +35 -30
  22. package/ui/Blocks/CommonGrid/components/DatePickerRange/DatePickerRange.js +59 -31
  23. package/ui/Blocks/CommonGrid/components/DatePickerRange/index.js +7 -2
  24. package/ui/Blocks/CommonGrid/components/DatePickerRange/utils/sameDate.js +5 -1
  25. package/ui/Blocks/CommonGrid/components/ExtraControlButtons/ExtraControlButtons.js +41 -12
  26. package/ui/Blocks/CommonGrid/components/ExtraControlButtons/index.js +7 -2
  27. package/ui/Blocks/CommonGrid/components/FilterDropdown.js +13 -8
  28. package/ui/Blocks/CommonGrid/components/FilterRow.js +20 -15
  29. package/ui/Blocks/CommonGrid/components/FloatingButton/FloatingButton.js +23 -17
  30. package/ui/Blocks/CommonGrid/components/FloatingButton/index.js +7 -2
  31. package/ui/Blocks/CommonGrid/components/GridSelect/GridSelect.js +15 -10
  32. package/ui/Blocks/CommonGrid/components/GridSelect/index.js +7 -2
  33. package/ui/Blocks/CommonGrid/components/GroupRow.js +15 -10
  34. package/ui/Blocks/CommonGrid/components/HeadCell.js +19 -14
  35. package/ui/Blocks/CommonGrid/components/HeadRow.js +45 -17
  36. package/ui/Blocks/CommonGrid/components/IconList/IconList.js +18 -12
  37. package/ui/Blocks/CommonGrid/components/IconList/index.js +7 -2
  38. package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.js +14 -12
  39. package/ui/Blocks/CommonGrid/components/ManageColumnForm/components/ActionRow.js +24 -17
  40. package/ui/Blocks/CommonGrid/components/ManageColumnForm/index.js +7 -2
  41. package/ui/Blocks/CommonGrid/components/NumberRange/NumberRange.js +28 -23
  42. package/ui/Blocks/CommonGrid/components/NumberRange/index.js +7 -2
  43. package/ui/Blocks/CommonGrid/components/NumberRange/types.js +2 -1
  44. package/ui/Blocks/CommonGrid/components/OversizedScroll.js +39 -11
  45. package/ui/Blocks/CommonGrid/components/ReadEditButtonCell/ReadEditButtonCell.js +12 -10
  46. package/ui/Blocks/CommonGrid/components/ReadEditButtonCell/index.js +7 -2
  47. package/ui/Blocks/CommonGrid/components/Resize.js +12 -7
  48. package/ui/Blocks/CommonGrid/components/Table.js +37 -9
  49. package/ui/Blocks/CommonGrid/components/TablePagination/TablePagination.js +40 -12
  50. package/ui/Blocks/CommonGrid/components/TablePagination/index.js +7 -2
  51. package/ui/Blocks/CommonGrid/components/TextRange/TextRange.js +36 -30
  52. package/ui/Blocks/CommonGrid/components/TextRange/index.js +7 -2
  53. package/ui/Blocks/CommonGrid/components/TextRange/types.js +2 -1
  54. package/ui/Blocks/CommonGrid/components/gridCells/BoolIcon.js +41 -12
  55. package/ui/Blocks/CommonGrid/components/gridCells/ButtonInCell.js +11 -4
  56. package/ui/Blocks/CommonGrid/components/gridCells/Date.js +13 -6
  57. package/ui/Blocks/CommonGrid/components/gridCells/DateTime.js +13 -6
  58. package/ui/Blocks/CommonGrid/components/gridCells/EnumInCell.js +16 -9
  59. package/ui/Blocks/CommonGrid/components/gridCells/HoverBubble.js +15 -8
  60. package/ui/Blocks/CommonGrid/components/gridCells/IconButtonInCell.js +15 -8
  61. package/ui/Blocks/CommonGrid/components/gridCells/ImageCell.js +16 -9
  62. package/ui/Blocks/CommonGrid/components/gridCells/LinkInCell.js +9 -3
  63. package/ui/Blocks/CommonGrid/components/gridCells/RemoveItem.js +18 -11
  64. package/ui/Blocks/CommonGrid/components/gridCells/RowActionsCell.js +20 -13
  65. package/ui/Blocks/CommonGrid/components/gridCells/StringJoin.js +12 -5
  66. package/ui/Blocks/CommonGrid/components/gridCells/SwitchInCell.js +11 -4
  67. package/ui/Blocks/CommonGrid/components/gridCells/ToggleCell.js +40 -10
  68. package/ui/Blocks/CommonGrid/components/gridCells/index.js +31 -14
  69. package/ui/Blocks/CommonGrid/components/icons/Edit.js +5 -3
  70. package/ui/Blocks/CommonGrid/components/icons/EyeOpen.js +5 -3
  71. package/ui/Blocks/CommonGrid/components/icons/Sorting.js +8 -3
  72. package/ui/Blocks/CommonGrid/components/utils.js +7 -3
  73. package/ui/Blocks/CommonGrid/hooks/useAddFilter.js +10 -6
  74. package/ui/Blocks/CommonGrid/hooks/useColumnSizes.js +18 -13
  75. package/ui/Blocks/CommonGrid/hooks/useEditReadAsColumn.js +12 -7
  76. package/ui/Blocks/CommonGrid/hooks/useFloatingButton.js +5 -3
  77. package/ui/Blocks/CommonGrid/hooks/useGetGridHeight.js +11 -9
  78. package/ui/Blocks/CommonGrid/hooks/useGridActionTrigger.js +14 -7
  79. package/ui/Blocks/CommonGrid/hooks/useManageColumn.js +8 -6
  80. package/ui/Blocks/CommonGrid/hooks/useRowsKeyControls.js +8 -3
  81. package/ui/Blocks/CommonGrid/hooks/useToggleAllCheckbox.js +8 -4
  82. package/ui/Blocks/CommonGrid/hooks/useUxReset.js +9 -4
  83. package/ui/Blocks/CommonGrid/index.js +51 -10
  84. package/ui/Blocks/CommonGrid/store/index.js +86 -77
  85. package/ui/Blocks/CommonGrid/store/migrateState.js +3 -1
  86. package/ui/Blocks/CommonGrid/storybook/stories/complexWithPaginationAndRedux.stories.js +24 -17
  87. package/ui/Blocks/CommonGrid/storybook/stories/default.stories.js +19 -12
  88. package/ui/Blocks/CommonGrid/storybook/stories/loading.stories.js +15 -8
  89. package/ui/Blocks/CommonGrid/storybook/stories/manyColumnsNoScrollLayout.stories.js +15 -8
  90. package/ui/Blocks/CommonGrid/storybook/stories/manyColumnsNormalLayout.stories.js +15 -8
  91. package/ui/Blocks/CommonGrid/storybook/stories/styledCommonGrid.stories.js +19 -12
  92. package/ui/Blocks/CommonGrid/storybook/stories/withCustomGridActions.stories.js +17 -10
  93. package/ui/Blocks/CommonGrid/storybook/stories/withForcedCheckboxes.stories.js +19 -12
  94. package/ui/Blocks/CommonGrid/storybook/utils/actions.js +11 -4
  95. package/ui/Blocks/CommonGrid/storybook/utils/columnDefinition.js +17 -11
  96. package/ui/Blocks/CommonGrid/storybook/utils/linguiContainer.js +10 -6
  97. package/ui/Blocks/CommonGrid/storybook/utils/utils.js +35 -26
  98. package/ui/Blocks/CommonGrid/storybook/utils/withRedux.js +17 -10
  99. package/ui/Blocks/CommonGrid/storybook/utils/withRouter.js +6 -4
  100. package/ui/Blocks/CommonGrid/storybook/utils/withTheme.js +3 -1
  101. package/ui/Blocks/CommonGrid/styles.js +39 -10
  102. package/ui/Blocks/CommonGrid/translations.js +5 -3
  103. package/ui/Blocks/CommonGrid/types.js +6 -3
  104. package/ui/Blocks/CommonGrid/utils/index.js +40 -23
  105. package/ui/Blocks/CornerDialog/CornerDialog.js +15 -11
  106. package/ui/Blocks/CornerDialog/index.js +4 -2
  107. package/ui/Blocks/CornerDialog/stories/CornerDialog.stories.js +10 -7
  108. package/ui/Blocks/CornerDialog/styles.js +35 -9
  109. package/ui/Blocks/CornerDialog/types.js +2 -1
  110. package/ui/Blocks/CornerDialog/utils.js +5 -2
  111. package/ui/Blocks/HidePrint/HidePrint.js +10 -5
  112. package/ui/Blocks/ImageList/ImageList.js +42 -15
  113. package/ui/Blocks/ImageList/components/AddPhoto/index.js +11 -7
  114. package/ui/Blocks/ImageList/components/AddPhoto/styles.js +29 -3
  115. package/ui/Blocks/ImageList/components/CloseButton/index.js +9 -5
  116. package/ui/Blocks/ImageList/components/CloseButton/styles.js +29 -3
  117. package/ui/Blocks/ImageList/components/ImageElement/index.js +11 -7
  118. package/ui/Blocks/ImageList/components/ImageElement/styles.js +29 -3
  119. package/ui/Blocks/ImageList/components/ImageTag/index.js +12 -5
  120. package/ui/Blocks/ImageList/components/ImageTag/styles.js +8 -2
  121. package/ui/Blocks/ImageList/index.js +4 -2
  122. package/ui/Blocks/ImageList/stories/ImageList.stories.js +9 -6
  123. package/ui/Blocks/ImageList/styles.js +8 -2
  124. package/ui/Blocks/ImageList/types.js +2 -1
  125. package/ui/Blocks/LightBox/LightBox.js +15 -8
  126. package/ui/Blocks/LightBox/hooks/useLightBox.js +9 -5
  127. package/ui/Blocks/LightBox/index.js +7 -3
  128. package/ui/Blocks/LightBox/stories/LightBox.stories.js +7 -4
  129. package/ui/Blocks/LightBox/styles.js +11 -5
  130. package/ui/Blocks/LightBox/types.js +2 -1
  131. package/ui/Blocks/Modal/Modal.js +20 -17
  132. package/ui/Blocks/Modal/hooks/useClickOutside.js +10 -6
  133. package/ui/Blocks/Modal/hooks/useModal.js +10 -6
  134. package/ui/Blocks/Modal/index.js +9 -4
  135. package/ui/Blocks/Modal/stories/Modal.stories.js +48 -42
  136. package/ui/Blocks/Modal/styles.js +46 -20
  137. package/ui/Blocks/Modal/types.js +2 -1
  138. package/ui/Blocks/Modal/utils.js +4 -1
  139. package/ui/Blocks/Popover/index.js +15 -10
  140. package/ui/Blocks/Tabs/TabContent.js +5 -1
  141. package/ui/Blocks/Tabs/Tabs.js +14 -10
  142. package/ui/Blocks/Tabs/hooks/useTabs.js +8 -4
  143. package/ui/Blocks/Tabs/index.js +9 -4
  144. package/ui/Blocks/Tabs/stories/Tabs.stories.js +9 -6
  145. package/ui/Blocks/Tabs/styles.js +34 -8
  146. package/ui/Blocks/Tabs/types.js +2 -1
  147. package/ui/Elements/Alert/Alert.js +12 -10
  148. package/ui/Elements/Alert/index.js +9 -3
  149. package/ui/Elements/Alert/stories/Alert.stories.js +14 -11
  150. package/ui/Elements/Alert/styles.js +20 -14
  151. package/ui/Elements/Alert/types.js +2 -1
  152. package/ui/Elements/Avatar/Avatar.js +14 -7
  153. package/ui/Elements/Avatar/index.js +7 -3
  154. package/ui/Elements/Avatar/stories/Avatar.stories.js +8 -5
  155. package/ui/Elements/Avatar/types.js +2 -1
  156. package/ui/Elements/Badge/Badge.js +38 -13
  157. package/ui/Elements/Badge/index.js +9 -3
  158. package/ui/Elements/Badge/stories/Badge.stories.js +11 -5
  159. package/ui/Elements/BorderedBox/BorderedBox.js +30 -5
  160. package/ui/Elements/BorderedBox/index.js +9 -3
  161. package/ui/Elements/BorderedBox/stories/BorderedBox.stories.js +7 -4
  162. package/ui/Elements/BorderedBox/types.js +2 -1
  163. package/ui/Elements/Button/Button.js +7 -5
  164. package/ui/Elements/Button/index.js +9 -3
  165. package/ui/Elements/Button/stories/Button.stories.js +16 -13
  166. package/ui/Elements/Button/styles.js +14 -8
  167. package/ui/Elements/Button/types.js +2 -1
  168. package/ui/Elements/Card/Card.js +20 -14
  169. package/ui/Elements/Card/index.js +12 -3
  170. package/ui/Elements/Card/stories/Card.stories.js +11 -8
  171. package/ui/Elements/Card/stories/CardComponent.stories.js +12 -6
  172. package/ui/Elements/Card/styles.js +38 -12
  173. package/ui/Elements/Card/types.js +2 -1
  174. package/ui/Elements/DatePicker/DatePicker.js +53 -25
  175. package/ui/Elements/DatePicker/Datetime/DateTime.js +31 -26
  176. package/ui/Elements/DatePicker/Datetime/components/Timepicker.js +47 -20
  177. package/ui/Elements/DatePicker/Datetime/components/ViewNavigation.js +6 -3
  178. package/ui/Elements/DatePicker/Datetime/types.js +2 -1
  179. package/ui/Elements/DatePicker/Datetime/views/DaysView.js +18 -13
  180. package/ui/Elements/DatePicker/Datetime/views/MonthsView.js +14 -9
  181. package/ui/Elements/DatePicker/Datetime/views/YearsView.js +14 -9
  182. package/ui/Elements/DatePicker/index.js +7 -2
  183. package/ui/Elements/DatePicker/styles.js +29 -3
  184. package/ui/Elements/Dropdown/Dropdown.js +15 -10
  185. package/ui/Elements/Dropdown/index.js +9 -3
  186. package/ui/Elements/Dropdown/stories/Dropdown.stories.js +10 -4
  187. package/ui/Elements/Dropdown/types.js +2 -1
  188. package/ui/Elements/DropdownMenu/DropdownMenu.js +15 -8
  189. package/ui/Elements/DropdownMenu/components/DefaultItem.js +32 -7
  190. package/ui/Elements/DropdownMenu/components/MenuItem.js +15 -10
  191. package/ui/Elements/DropdownMenu/components/MenuList.js +10 -5
  192. package/ui/Elements/DropdownMenu/index.js +5 -1
  193. package/ui/Elements/DropdownMenu/types.js +2 -1
  194. package/ui/Elements/DropdownSelect/DropdownSelect.js +50 -21
  195. package/ui/Elements/DropdownSelect/index.js +10 -3
  196. package/ui/Elements/ErrorMessage/ErrorMessage.js +34 -9
  197. package/ui/Elements/ErrorMessage/index.js +9 -3
  198. package/ui/Elements/ErrorMessage/stories/ErrorMessage.stories.js +11 -5
  199. package/ui/Elements/ErrorMessage/types.js +2 -1
  200. package/ui/Elements/HighlightBox/HighlightBox.js +38 -12
  201. package/ui/Elements/HighlightBox/index.js +7 -2
  202. package/ui/Elements/Icon/BadgeIcon.js +17 -10
  203. package/ui/Elements/Icon/Icon.js +245 -216
  204. package/ui/Elements/Icon/icons/AddPhoto.js +6 -2
  205. package/ui/Elements/Icon/icons/BarcodeScan.js +6 -2
  206. package/ui/Elements/Icon/icons/Box.js +6 -2
  207. package/ui/Elements/Icon/icons/Calendar.js +6 -2
  208. package/ui/Elements/Icon/icons/Cancel.js +6 -2
  209. package/ui/Elements/Icon/icons/CheckedBox.js +6 -2
  210. package/ui/Elements/Icon/icons/Company.js +6 -2
  211. package/ui/Elements/Icon/icons/Complaint.js +6 -2
  212. package/ui/Elements/Icon/icons/Consolidation.js +6 -2
  213. package/ui/Elements/Icon/icons/Dispatch.js +6 -2
  214. package/ui/Elements/Icon/icons/EmptyRack.js +6 -2
  215. package/ui/Elements/Icon/icons/Expeditions.js +6 -2
  216. package/ui/Elements/Icon/icons/FlagCZ.js +6 -2
  217. package/ui/Elements/Icon/icons/FlagEL.js +6 -2
  218. package/ui/Elements/Icon/icons/FlagESP.js +6 -2
  219. package/ui/Elements/Icon/icons/FlagITA.js +6 -2
  220. package/ui/Elements/Icon/icons/FlagRUS.js +6 -2
  221. package/ui/Elements/Icon/icons/FlagSVK.js +6 -2
  222. package/ui/Elements/Icon/icons/FlagUSA.js +6 -2
  223. package/ui/Elements/Icon/icons/Gift.js +6 -2
  224. package/ui/Elements/Icon/icons/Group.js +6 -2
  225. package/ui/Elements/Icon/icons/HamburgerMenu.js +6 -2
  226. package/ui/Elements/Icon/icons/HelpCircle1.js +6 -2
  227. package/ui/Elements/Icon/icons/ImagePlaceholder.js +6 -2
  228. package/ui/Elements/Icon/icons/Income.js +6 -2
  229. package/ui/Elements/Icon/icons/Info.js +6 -2
  230. package/ui/Elements/Icon/icons/Integrations.js +6 -2
  231. package/ui/Elements/Icon/icons/Inventory.js +6 -2
  232. package/ui/Elements/Icon/icons/Inventory2.js +6 -2
  233. package/ui/Elements/Icon/icons/Link.js +6 -2
  234. package/ui/Elements/Icon/icons/Location.js +6 -2
  235. package/ui/Elements/Icon/icons/Logout1.js +6 -2
  236. package/ui/Elements/Icon/icons/MakePhoto.js +6 -2
  237. package/ui/Elements/Icon/icons/MenuItems.js +6 -2
  238. package/ui/Elements/Icon/icons/MobileCancel.js +6 -2
  239. package/ui/Elements/Icon/icons/Notification2.js +6 -2
  240. package/ui/Elements/Icon/icons/OpenBox.js +6 -2
  241. package/ui/Elements/Icon/icons/Plus1.js +6 -2
  242. package/ui/Elements/Icon/icons/Print.js +6 -2
  243. package/ui/Elements/Icon/icons/Product.js +6 -2
  244. package/ui/Elements/Icon/icons/Products.js +6 -2
  245. package/ui/Elements/Icon/icons/Profile.js +6 -2
  246. package/ui/Elements/Icon/icons/Puzzle1.js +6 -2
  247. package/ui/Elements/Icon/icons/QRCode.js +6 -2
  248. package/ui/Elements/Icon/icons/Rack.js +6 -2
  249. package/ui/Elements/Icon/icons/Return.js +6 -2
  250. package/ui/Elements/Icon/icons/Rows.js +6 -2
  251. package/ui/Elements/Icon/icons/Settings2.js +6 -2
  252. package/ui/Elements/Icon/icons/ShoppingBag.js +6 -2
  253. package/ui/Elements/Icon/icons/ThreeDots.js +6 -2
  254. package/ui/Elements/Icon/icons/Transfer.js +6 -2
  255. package/ui/Elements/Icon/icons/Truck.js +6 -2
  256. package/ui/Elements/Icon/icons/TwoBoxes.js +6 -2
  257. package/ui/Elements/Icon/icons/TwoCheckedBoxes.js +6 -2
  258. package/ui/Elements/Icon/icons/TwoUsers.js +6 -2
  259. package/ui/Elements/Icon/icons/index.js +114 -55
  260. package/ui/Elements/Icon/index.js +26 -5
  261. package/ui/Elements/Icon/stories/BadgeIcon.stories.js +12 -6
  262. package/ui/Elements/Icon/stories/Icon.stories.js +12 -9
  263. package/ui/Elements/Icon/types.js +2 -1
  264. package/ui/Elements/Image/Image.js +6 -4
  265. package/ui/Elements/Image/index.js +9 -3
  266. package/ui/Elements/Image/stories/Image.stories.js +15 -9
  267. package/ui/Elements/Image/types.js +2 -1
  268. package/ui/Elements/Label/Label.js +35 -9
  269. package/ui/Elements/Label/index.js +8 -3
  270. package/ui/Elements/Label/stories/Label.stories.js +8 -5
  271. package/ui/Elements/Line/Line.js +10 -5
  272. package/ui/Elements/Line/index.js +9 -3
  273. package/ui/Elements/Line/stories/Line.stories.js +16 -10
  274. package/ui/Elements/Line/types.js +2 -1
  275. package/ui/Elements/Link/Link.js +39 -14
  276. package/ui/Elements/Link/index.js +9 -3
  277. package/ui/Elements/Link/stories/Link.stories.js +13 -10
  278. package/ui/Elements/Logo/Logo.js +30 -25
  279. package/ui/Elements/Logo/index.js +9 -3
  280. package/ui/Elements/Logo/stories/Logo.stories.js +24 -18
  281. package/ui/Elements/Logo/types.js +2 -1
  282. package/ui/Elements/MultiSelect/MultiSelect.js +9 -4
  283. package/ui/Elements/MultiSelect/index.js +7 -2
  284. package/ui/Elements/Pagination/Pagination.js +9 -7
  285. package/ui/Elements/Pagination/index.js +9 -3
  286. package/ui/Elements/Pagination/stories/Pagination.stories.js +8 -5
  287. package/ui/Elements/Pagination/styled.js +41 -12
  288. package/ui/Elements/Portal/index.js +14 -7
  289. package/ui/Elements/ProgressBar/ProgressBar.js +6 -4
  290. package/ui/Elements/ProgressBar/index.js +9 -3
  291. package/ui/Elements/ProgressBar/stories/ProgressBar.stories.js +12 -6
  292. package/ui/Elements/ProgressBar/styles.js +38 -12
  293. package/ui/Elements/Select/Select.js +25 -20
  294. package/ui/Elements/Select/index.js +7 -2
  295. package/ui/Elements/Select/styles.js +13 -7
  296. package/ui/Elements/Select/themes/CustomComponents.js +72 -37
  297. package/ui/Elements/Select/themes/baseStyles.js +12 -6
  298. package/ui/Elements/Select/themes/formStyles.js +27 -23
  299. package/ui/Elements/Select/themes/index.js +20 -16
  300. package/ui/Elements/Select/types.js +2 -1
  301. package/ui/Elements/SimpleLink/SimpleLink.js +31 -6
  302. package/ui/Elements/SimpleLink/index.js +9 -3
  303. package/ui/Elements/SingleSelect/SingleSelect.js +32 -27
  304. package/ui/Elements/SingleSelect/index.js +7 -2
  305. package/ui/Elements/SpaceAround/SpaceAround.js +36 -11
  306. package/ui/Elements/SpaceAround/index.js +9 -3
  307. package/ui/Elements/SpaceAround/stories/SpaceAround.stories.js +8 -5
  308. package/ui/Elements/SpaceAround/types.js +2 -1
  309. package/ui/Elements/Spinner/Spinner.js +12 -8
  310. package/ui/Elements/Spinner/index.js +9 -3
  311. package/ui/Elements/Spinner/stories/Spinner.stories.js +16 -13
  312. package/ui/Elements/Spinner/styles.js +33 -7
  313. package/ui/Elements/Spinner/types.js +2 -1
  314. package/ui/Elements/Tag/Tag.js +31 -6
  315. package/ui/Elements/Tag/index.js +10 -3
  316. package/ui/Elements/Tag/palletes.js +4 -1
  317. package/ui/Elements/Tag/stories/Tag.stories.js +21 -15
  318. package/ui/Elements/Tag/stories/components/predefinedTags.js +11 -6
  319. package/ui/Elements/Tag/types.js +2 -1
  320. package/ui/Elements/Text/Text.js +6 -4
  321. package/ui/Elements/Text/index.js +8 -2
  322. package/ui/Elements/Text/stories/Text.stories.js +15 -9
  323. package/ui/Elements/Text/types.js +2 -1
  324. package/ui/Elements/Toast/Toast.js +15 -10
  325. package/ui/Elements/Toast/index.js +9 -3
  326. package/ui/Elements/Toggle/Toggle.js +38 -13
  327. package/ui/Elements/Toggle/index.js +9 -3
  328. package/ui/Elements/Toggle/stories/Toggle.stories.js +13 -7
  329. package/ui/Elements/Toggle/types.js +2 -1
  330. package/ui/Elements/Typography/Typography.js +44 -28
  331. package/ui/Elements/Typography/index.js +19 -3
  332. package/ui/Elements/Typography/stories/Typography.stories.js +18 -15
  333. package/ui/Forms/Checkbox/Checkbox.js +11 -9
  334. package/ui/Forms/Checkbox/index.js +9 -3
  335. package/ui/Forms/Checkbox/stories/Checkbox.stories.js +13 -7
  336. package/ui/Forms/Checkbox/styles.js +32 -6
  337. package/ui/Forms/Checkbox/types.js +2 -1
  338. package/ui/Forms/Input/Input.js +20 -16
  339. package/ui/Forms/Input/index.js +6 -3
  340. package/ui/Forms/Input/stories/Input.stories.js +14 -11
  341. package/ui/Forms/Input/styles.js +46 -20
  342. package/ui/Forms/Input/types.js +2 -1
  343. package/ui/Forms/RadioButton/RadioButton.js +8 -6
  344. package/ui/Forms/RadioButton/index.js +9 -3
  345. package/ui/Forms/RadioButton/stories/RadioButton.stories.js +13 -7
  346. package/ui/Forms/RadioButton/styles.js +13 -7
  347. package/ui/Forms/RadioButton/types.js +2 -1
  348. package/ui/Forms/TextArea/TextArea.js +13 -8
  349. package/ui/Forms/TextArea/index.js +7 -2
  350. package/ui/Forms/TextArea/styles.js +39 -13
  351. package/ui/System/Fonts/index.js +14 -9
  352. package/ui/ThemeProvider/ThemeProvider.js +13 -7
  353. package/ui/ThemeProvider/index.js +25 -5
  354. package/ui/ThemeProvider/themes/default.js +3 -1
  355. package/ui/ThemeProvider/themes/index.js +12 -7
  356. package/ui/ThemeProvider/themes/light.js +3 -1
  357. package/ui/ThemeProvider/themes/mailwise.js +3 -1
  358. package/ui/ThemeProvider/types.js +2 -1
  359. package/ui/index.js +146 -85
  360. package/ui/index.umd.js +3878 -0
  361. package/ui/utils/CreateRgba/createRgba.js +12 -5
  362. package/ui/utils/CreateRgba/types.js +2 -1
  363. package/ui/utils/KeyPress/KeyPress.js +6 -4
  364. package/ui/utils/KeyPress/KeyPress.stories.js +12 -6
  365. package/ui/utils/KeyPress/index.js +7 -2
  366. package/ui/utils/KeyPress/types.js +2 -1
  367. package/ui/utils/index.js +13 -6
  368. package/ui/index.cjs.js +0 -3878
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx } from "react/jsx-runtime";
13
- export var Cancel = function (props) { return (_jsx("svg", __assign({ width: "11", height: "11", viewBox: "0 0 11 11", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: _jsx("path", { id: "cancel", fillRule: "evenodd", clipRule: "evenodd", d: "M1.61873 0.375917C1.26726 0.0244455 0.697412 0.0244455 0.34594 0.375917C-0.00553197 0.727389 -0.00553197 1.29724 0.34594 1.64871L4.21225 5.51502L0.34594 9.38133C-0.00553159 9.7328 -0.00553156 10.3026 0.34594 10.6541C0.697412 11.0056 1.26726 11.0056 1.61873 10.6541L5.48504 6.78781L9.35135 10.6541C9.70282 11.0056 10.2727 11.0056 10.6241 10.6541C10.9756 10.3026 10.9756 9.7328 10.6241 9.38133L6.75783 5.51502L10.6241 1.64871C10.9756 1.29724 10.9756 0.727391 10.6241 0.375919C10.2727 0.024447 9.70282 0.024447 9.35135 0.375919L5.48504 4.24223L1.61873 0.375917Z", fill: "#22394E" }) }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.Cancel = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var Cancel = function (props) { return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "11", height: "11", viewBox: "0 0 11 11", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: (0, jsx_runtime_1.jsx)("path", { id: "cancel", fillRule: "evenodd", clipRule: "evenodd", d: "M1.61873 0.375917C1.26726 0.0244455 0.697412 0.0244455 0.34594 0.375917C-0.00553197 0.727389 -0.00553197 1.29724 0.34594 1.64871L4.21225 5.51502L0.34594 9.38133C-0.00553159 9.7328 -0.00553156 10.3026 0.34594 10.6541C0.697412 11.0056 1.26726 11.0056 1.61873 10.6541L5.48504 6.78781L9.35135 10.6541C9.70282 11.0056 10.2727 11.0056 10.6241 10.6541C10.9756 10.3026 10.9756 9.7328 10.6241 9.38133L6.75783 5.51502L10.6241 1.64871C10.9756 1.29724 10.9756 0.727391 10.6241 0.375919C10.2727 0.024447 9.70282 0.024447 9.35135 0.375919L5.48504 4.24223L1.61873 0.375917Z", fill: "#22394E" }) }))); };
17
+ exports.Cancel = Cancel;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var CheckedBox = function (props) { return (_jsxs("svg", __assign({ width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", stroke: "#DB2B19" }, props, { children: [_jsx("path", { d: "M2.89474 7.63354V15.8571C2.89474 16.4094 3.34245 16.8571 3.89474 16.8571H10H15.8684C16.4207 16.8571 16.8684 16.4094 16.8684 15.8571V7.63354V7.35404M16.8684 7.35404H17.4903C18.2064 7.35404 18.6904 6.62332 18.411 5.96392L17.8373 4.60989C17.6807 4.24017 17.3181 4 16.9166 4H10M16.8684 7.35404H12.0834C11.6819 7.35404 11.3193 7.11387 11.1627 6.74415L10 4M10 4L2.70404 4C2.25644 4 1.86336 4.29743 1.74169 4.72818L1.35923 6.08222C1.17898 6.72037 1.65846 7.35404 2.32158 7.35404H7.91658C8.31811 7.35404 8.6807 7.11387 8.83735 6.74415L10 4Z", strokeWidth: "1.5" }), _jsx("path", { d: "M13 10L9.37758 14.1399C8.97917 14.5952 8.27083 14.5952 7.87242 14.1399L6 12", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.CheckedBox = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var CheckedBox = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", stroke: "#DB2B19" }, props, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M2.89474 7.63354V15.8571C2.89474 16.4094 3.34245 16.8571 3.89474 16.8571H10H15.8684C16.4207 16.8571 16.8684 16.4094 16.8684 15.8571V7.63354V7.35404M16.8684 7.35404H17.4903C18.2064 7.35404 18.6904 6.62332 18.411 5.96392L17.8373 4.60989C17.6807 4.24017 17.3181 4 16.9166 4H10M16.8684 7.35404H12.0834C11.6819 7.35404 11.3193 7.11387 11.1627 6.74415L10 4M10 4L2.70404 4C2.25644 4 1.86336 4.29743 1.74169 4.72818L1.35923 6.08222C1.17898 6.72037 1.65846 7.35404 2.32158 7.35404H7.91658C8.31811 7.35404 8.6807 7.11387 8.83735 6.74415L10 4Z", strokeWidth: "1.5" }), (0, jsx_runtime_1.jsx)("path", { d: "M13 10L9.37758 14.1399C8.97917 14.5952 8.27083 14.5952 7.87242 14.1399L6 12", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
17
+ exports.CheckedBox = CheckedBox;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var Company = function (props) { return (_jsxs("svg", __assign({ width: "16", height: "16", viewBox: "0 0 16 16", fill: "none" }, props, { children: [_jsxs("g", { clipPath: "url(#clip0_1076_22920)", children: [_jsx("path", { d: "M14.0003 14.6663H5.66699C4.01014 14.6663 2.66699 13.3232 2.66699 11.6663V4.33301C2.66699 2.67615 4.01014 1.33301 5.66699 1.33301H11.0401C12.675 1.33301 14.0003 2.65834 14.0003 4.29323V4.29323V14.6663Z", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("rect", { x: "6", y: "10", width: "4.66667", height: "4.66667", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M5.16699 7.38867H7.00033", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M9.55566 7.38867H11.389", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M5.16699 5.55566H7.00033", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M9.55566 5.55566H11.389", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M5.16699 3.72168H7.00033", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M9.55566 3.72168H11.389", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }), _jsx("defs", { children: _jsx("clipPath", { id: "clip0_1076_22920", children: _jsx("rect", { width: "16", height: "16", fill: "white" }) }) })] }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.Company = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var Company = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "16", height: "16", viewBox: "0 0 16 16", fill: "none" }, props, { children: [(0, jsx_runtime_1.jsxs)("g", { clipPath: "url(#clip0_1076_22920)", children: [(0, jsx_runtime_1.jsx)("path", { d: "M14.0003 14.6663H5.66699C4.01014 14.6663 2.66699 13.3232 2.66699 11.6663V4.33301C2.66699 2.67615 4.01014 1.33301 5.66699 1.33301H11.0401C12.675 1.33301 14.0003 2.65834 14.0003 4.29323V4.29323V14.6663Z", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("rect", { x: "6", y: "10", width: "4.66667", height: "4.66667", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M5.16699 7.38867H7.00033", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M9.55566 7.38867H11.389", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M5.16699 5.55566H7.00033", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M9.55566 5.55566H11.389", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M5.16699 3.72168H7.00033", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M9.55566 3.72168H11.389", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: "clip0_1076_22920", children: (0, jsx_runtime_1.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })] }))); };
17
+ exports.Company = Company;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var Complaint = function (props) { return (_jsxs("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#A3B3C1" }, props, { children: [_jsxs("g", { clipPath: "url(#clip0_7_1621)", children: [_jsx("path", { d: "M19.2501 17.4667C19.2501 18.9578 18.0413 20.1667 16.5501 20.1667H6.36675C4.87558 20.1667 3.66675 18.9578 3.66675 17.4667V4.53333C3.66675 3.04216 4.87558 1.83333 6.36675 1.83333H12.7404C13.3915 1.83333 14.0207 2.06863 14.512 2.49589L18.3218 5.8087C18.9115 6.3215 19.2501 7.06465 19.2501 7.84614V17.4667Z", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M13.2917 2.29166V6.89166C13.2917 7.38871 13.6947 7.79166 14.1917 7.79166H18.7917", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M6.41675 9.16666H10.0834", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M6.41675 11.9167H16.5001", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M6.41675 14.6667H16.5001", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }), _jsx("defs", { children: _jsx("clipPath", { id: "clip0_7_1621", children: _jsx("rect", { width: "22", height: "22", fill: "white" }) }) })] }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.Complaint = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var Complaint = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#A3B3C1" }, props, { children: [(0, jsx_runtime_1.jsxs)("g", { clipPath: "url(#clip0_7_1621)", children: [(0, jsx_runtime_1.jsx)("path", { d: "M19.2501 17.4667C19.2501 18.9578 18.0413 20.1667 16.5501 20.1667H6.36675C4.87558 20.1667 3.66675 18.9578 3.66675 17.4667V4.53333C3.66675 3.04216 4.87558 1.83333 6.36675 1.83333H12.7404C13.3915 1.83333 14.0207 2.06863 14.512 2.49589L18.3218 5.8087C18.9115 6.3215 19.2501 7.06465 19.2501 7.84614V17.4667Z", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M13.2917 2.29166V6.89166C13.2917 7.38871 13.6947 7.79166 14.1917 7.79166H18.7917", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M6.41675 9.16666H10.0834", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M6.41675 11.9167H16.5001", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M6.41675 14.6667H16.5001", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: "clip0_7_1621", children: (0, jsx_runtime_1.jsx)("rect", { width: "22", height: "22", fill: "white" }) }) })] }))); };
17
+ exports.Complaint = Complaint;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx } from "react/jsx-runtime";
13
- export var Consolidation = function (props) { return (_jsx("svg", __assign({ width: "18", height: "16", viewBox: "0 0 18 16", fill: "white", xmlns: "http://www.w3.org/2000/svg" }, props, { children: _jsx("path", { d: "M13.5 1.485H11V3.76509C11 3.87338 10.9125 3.96 10.8031 3.96C10.7688 3.96 10.7344 3.95072 10.7063 3.93525L9.25 3.11231C9.09688 3.02569 8.90625 3.02569 8.75313 3.11231L7.29688 3.93525C7.26562 3.95072 7.23438 3.96 7.2 3.96C7.09062 3.96 7.00313 3.87338 7.00313 3.76509V1.485H4.5V6.435H13.5V1.485ZM13.5 0C14.3281 0 15 0.665156 15 1.485V6.435C15 7.25484 14.3281 7.92 13.5 7.92H4.5C3.67188 7.92 3 7.25484 3 6.435V1.485C3 0.665156 3.67188 0 4.5 0H7H11H13.5ZM5.85625 10.89C5.60938 10.89 5.36875 10.9612 5.1625 11.0973L2.66563 12.7463C2.54375 12.8267 2.39687 12.87 2.25 12.87H0.75C0.334375 12.87 0 12.539 0 12.1275C0 11.716 0.334375 11.385 0.75 11.385H2.02187L4.32812 9.86288C4.78125 9.56278 5.3125 9.405 5.85625 9.405H10.75C11.8531 9.405 12.75 10.2929 12.75 11.385C12.75 11.4067 12.75 11.4252 12.75 11.4469L14.7781 10.2094C15.1125 10.0052 15.4937 9.9 15.8875 9.9H16.1187C17.1594 9.9 18.0031 10.7353 18.0031 11.7655C18.0031 12.3967 17.6781 12.9876 17.1437 13.331L14.1562 15.246C13.55 15.6358 12.8406 15.8431 12.1187 15.8431H0.75C0.334375 15.8431 0 15.5121 0 15.1006C0 14.6891 0.334375 14.3581 0.75 14.3581H12.1156C12.55 14.3581 12.975 14.2343 13.3375 13.9992L16.325 12.0842C16.4344 12.013 16.5 11.8955 16.5 11.7655C16.5 11.5552 16.3281 11.385 16.1156 11.385H15.8844C15.7719 11.385 15.6594 11.4159 15.5625 11.4747L12.6406 13.2536C12.5219 13.3248 12.3875 13.365 12.2469 13.365H10.75H10H8C7.58437 13.365 7.25 13.034 7.25 12.6225C7.25 12.211 7.58437 11.88 8 11.88H10H10.75C11.025 11.88 11.25 11.6573 11.25 11.385C11.25 11.1128 11.025 10.89 10.75 10.89H5.85625Z" }) }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.Consolidation = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var Consolidation = function (props) { return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "18", height: "16", viewBox: "0 0 18 16", fill: "white", xmlns: "http://www.w3.org/2000/svg" }, props, { children: (0, jsx_runtime_1.jsx)("path", { d: "M13.5 1.485H11V3.76509C11 3.87338 10.9125 3.96 10.8031 3.96C10.7688 3.96 10.7344 3.95072 10.7063 3.93525L9.25 3.11231C9.09688 3.02569 8.90625 3.02569 8.75313 3.11231L7.29688 3.93525C7.26562 3.95072 7.23438 3.96 7.2 3.96C7.09062 3.96 7.00313 3.87338 7.00313 3.76509V1.485H4.5V6.435H13.5V1.485ZM13.5 0C14.3281 0 15 0.665156 15 1.485V6.435C15 7.25484 14.3281 7.92 13.5 7.92H4.5C3.67188 7.92 3 7.25484 3 6.435V1.485C3 0.665156 3.67188 0 4.5 0H7H11H13.5ZM5.85625 10.89C5.60938 10.89 5.36875 10.9612 5.1625 11.0973L2.66563 12.7463C2.54375 12.8267 2.39687 12.87 2.25 12.87H0.75C0.334375 12.87 0 12.539 0 12.1275C0 11.716 0.334375 11.385 0.75 11.385H2.02187L4.32812 9.86288C4.78125 9.56278 5.3125 9.405 5.85625 9.405H10.75C11.8531 9.405 12.75 10.2929 12.75 11.385C12.75 11.4067 12.75 11.4252 12.75 11.4469L14.7781 10.2094C15.1125 10.0052 15.4937 9.9 15.8875 9.9H16.1187C17.1594 9.9 18.0031 10.7353 18.0031 11.7655C18.0031 12.3967 17.6781 12.9876 17.1437 13.331L14.1562 15.246C13.55 15.6358 12.8406 15.8431 12.1187 15.8431H0.75C0.334375 15.8431 0 15.5121 0 15.1006C0 14.6891 0.334375 14.3581 0.75 14.3581H12.1156C12.55 14.3581 12.975 14.2343 13.3375 13.9992L16.325 12.0842C16.4344 12.013 16.5 11.8955 16.5 11.7655C16.5 11.5552 16.3281 11.385 16.1156 11.385H15.8844C15.7719 11.385 15.6594 11.4159 15.5625 11.4747L12.6406 13.2536C12.5219 13.3248 12.3875 13.365 12.2469 13.365H10.75H10H8C7.58437 13.365 7.25 13.034 7.25 12.6225C7.25 12.211 7.58437 11.88 8 11.88H10H10.75C11.025 11.88 11.25 11.6573 11.25 11.385C11.25 11.1128 11.025 10.89 10.75 10.89H5.85625Z" }) }))); };
17
+ exports.Consolidation = Consolidation;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx } from "react/jsx-runtime";
13
- export var Dispatch = function (props) { return (_jsx("svg", __assign({ width: "18", height: "15", viewBox: "0 0 18 15", fill: "white", xmlns: "http://www.w3.org/2000/svg" }, props, { children: _jsx("path", { d: "M0.675 0C0.300937 0 0 0.300937 0 0.675C0 1.04906 0.300937 1.35 0.675 1.35H2.025C2.14875 1.35 2.25 1.45125 2.25 1.575V11.475C2.25 12.3441 2.95594 13.05 3.825 13.05H4.5C4.5 13.7953 5.10469 14.4 5.85 14.4C6.59531 14.4 7.2 13.7953 7.2 13.05H12.6C12.6 13.7953 13.2047 14.4 13.95 14.4C14.6953 14.4 15.3 13.7953 15.3 13.05H17.325C17.6991 13.05 18 12.7491 18 12.375C18 12.0009 17.6991 11.7 17.325 11.7H13.95H5.85H3.825C3.70125 11.7 3.6 11.5987 3.6 11.475V1.575C3.6 0.705937 2.89406 0 2.025 0H0.675ZM6.75 2.25H10.35V8.55H6.75V2.25ZM5.4 2.25V8.55C5.4 9.29531 6.00469 9.9 6.75 9.9H10.35C11.0953 9.9 11.7 9.29531 11.7 8.55V2.25C11.7 1.50469 11.0953 0.9 10.35 0.9H6.75C6.00469 0.9 5.4 1.50469 5.4 2.25ZM15.75 2.25V4.05H13.95V2.25H15.75ZM13.95 0.9C13.2047 0.9 12.6 1.50469 12.6 2.25V4.05C12.6 4.79531 13.2047 5.4 13.95 5.4H15.75C16.4953 5.4 17.1 4.79531 17.1 4.05V2.25C17.1 1.50469 16.4953 0.9 15.75 0.9H13.95ZM13.95 7.65H16.65V8.55H13.95V7.65ZM12.6 7.65V8.55C12.6 9.29531 13.2047 9.9 13.95 9.9H16.65C17.3953 9.9 18 9.29531 18 8.55V7.65C18 6.90469 17.3953 6.3 16.65 6.3H13.95C13.2047 6.3 12.6 6.90469 12.6 7.65Z" }) }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.Dispatch = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var Dispatch = function (props) { return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "18", height: "15", viewBox: "0 0 18 15", fill: "white", xmlns: "http://www.w3.org/2000/svg" }, props, { children: (0, jsx_runtime_1.jsx)("path", { d: "M0.675 0C0.300937 0 0 0.300937 0 0.675C0 1.04906 0.300937 1.35 0.675 1.35H2.025C2.14875 1.35 2.25 1.45125 2.25 1.575V11.475C2.25 12.3441 2.95594 13.05 3.825 13.05H4.5C4.5 13.7953 5.10469 14.4 5.85 14.4C6.59531 14.4 7.2 13.7953 7.2 13.05H12.6C12.6 13.7953 13.2047 14.4 13.95 14.4C14.6953 14.4 15.3 13.7953 15.3 13.05H17.325C17.6991 13.05 18 12.7491 18 12.375C18 12.0009 17.6991 11.7 17.325 11.7H13.95H5.85H3.825C3.70125 11.7 3.6 11.5987 3.6 11.475V1.575C3.6 0.705937 2.89406 0 2.025 0H0.675ZM6.75 2.25H10.35V8.55H6.75V2.25ZM5.4 2.25V8.55C5.4 9.29531 6.00469 9.9 6.75 9.9H10.35C11.0953 9.9 11.7 9.29531 11.7 8.55V2.25C11.7 1.50469 11.0953 0.9 10.35 0.9H6.75C6.00469 0.9 5.4 1.50469 5.4 2.25ZM15.75 2.25V4.05H13.95V2.25H15.75ZM13.95 0.9C13.2047 0.9 12.6 1.50469 12.6 2.25V4.05C12.6 4.79531 13.2047 5.4 13.95 5.4H15.75C16.4953 5.4 17.1 4.79531 17.1 4.05V2.25C17.1 1.50469 16.4953 0.9 15.75 0.9H13.95ZM13.95 7.65H16.65V8.55H13.95V7.65ZM12.6 7.65V8.55C12.6 9.29531 13.2047 9.9 13.95 9.9H16.65C17.3953 9.9 18 9.29531 18 8.55V7.65C18 6.90469 17.3953 6.3 16.65 6.3H13.95C13.2047 6.3 12.6 6.90469 12.6 7.65Z" }) }))); };
17
+ exports.Dispatch = Dispatch;
@@ -1,2 +1,6 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- export var EmptyRack = function (props) { return (_jsxs("svg", { width: "18", height: "18", viewBox: "0 0 18 18", fill: "none", stroke: "#DB2B19", xmlns: "http://www.w3.org/2000/svg", children: [_jsx("path", { d: "M1 1L1 16.4545", strokeWidth: "1.54045", strokeLinecap: "round" }), _jsx("path", { d: "M17 15L1 15", strokeWidth: "1.54045", strokeLinecap: "round" }), _jsx("path", { d: "M17 9L1 9", strokeWidth: "1.54045", strokeLinecap: "round" }), _jsx("path", { d: "M17 3.57574L17 16.4545", strokeWidth: "1.54045", strokeLinecap: "round" })] })); };
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EmptyRack = void 0;
4
+ var jsx_runtime_1 = require("react/jsx-runtime");
5
+ var EmptyRack = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", { width: "18", height: "18", viewBox: "0 0 18 18", fill: "none", stroke: "#DB2B19", xmlns: "http://www.w3.org/2000/svg", children: [(0, jsx_runtime_1.jsx)("path", { d: "M1 1L1 16.4545", strokeWidth: "1.54045", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M17 15L1 15", strokeWidth: "1.54045", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M17 9L1 9", strokeWidth: "1.54045", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M17 3.57574L17 16.4545", strokeWidth: "1.54045", strokeLinecap: "round" })] })); };
6
+ exports.EmptyRack = EmptyRack;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var Expeditions = function (props) { return (_jsxs("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#A3B3C1" }, props, { children: [_jsx("path", { d: "M5 4H12.8C12.9105 4 13 4.08954 13 4.2V8.8C13 8.91046 13.0895 9 13.2 9H18.9C18.963 9 19.0222 9.02964 19.06 9.08L20.46 10.9467C20.486 10.9813 20.5 11.0234 20.5 11.0667V14.8C20.5 14.9105 20.4105 15 20.3 15H18", strokeWidth: "1.5", strokeLinecap: "round" }), _jsx("path", { d: "M3 6.5H9", strokeWidth: "1.5", strokeLinecap: "round" }), _jsx("path", { d: "M2 9H6", strokeWidth: "1.5", strokeLinecap: "round" }), _jsx("path", { d: "M2 12H6", strokeWidth: "1.5", strokeLinecap: "round" }), _jsx("path", { d: "M4 15H6", strokeWidth: "1.5", strokeLinecap: "round" }), _jsx("path", { d: "M10 15L14 15", strokeWidth: "1.5", strokeLinecap: "round" }), _jsx("path", { d: "M12.5 5H15.2639C16.0215 5 16.714 5.428 17.0528 6.10557L18.5 9", strokeWidth: "1.5" }), _jsx("circle", { cx: "16", cy: "16", r: "2", strokeWidth: "1.5", strokeLinecap: "round" }), _jsx("circle", { cx: "8", cy: "16", r: "2", strokeWidth: "1.5", strokeLinecap: "round" })] }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.Expeditions = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var Expeditions = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#A3B3C1" }, props, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M5 4H12.8C12.9105 4 13 4.08954 13 4.2V8.8C13 8.91046 13.0895 9 13.2 9H18.9C18.963 9 19.0222 9.02964 19.06 9.08L20.46 10.9467C20.486 10.9813 20.5 11.0234 20.5 11.0667V14.8C20.5 14.9105 20.4105 15 20.3 15H18", strokeWidth: "1.5", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M3 6.5H9", strokeWidth: "1.5", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M2 9H6", strokeWidth: "1.5", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M2 12H6", strokeWidth: "1.5", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M4 15H6", strokeWidth: "1.5", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M10 15L14 15", strokeWidth: "1.5", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M12.5 5H15.2639C16.0215 5 16.714 5.428 17.0528 6.10557L18.5 9", strokeWidth: "1.5" }), (0, jsx_runtime_1.jsx)("circle", { cx: "16", cy: "16", r: "2", strokeWidth: "1.5", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("circle", { cx: "8", cy: "16", r: "2", strokeWidth: "1.5", strokeLinecap: "round" })] }))); };
17
+ exports.Expeditions = Expeditions;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var FlagCZ = function (props) { return (_jsxs("svg", __assign({ width: "28", height: "20", viewBox: "0 0 28 20", fill: "none" }, props, { children: [_jsx("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "#F5F5F5", strokeWidth: "0.5" }), _jsx("mask", { id: "mask0_48_769", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "28", height: "20", children: _jsx("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "white", strokeWidth: "0.5" }) }), _jsxs("g", { mask: "url(#mask0_48_769)", children: [_jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 20H28V10H0V20Z", fill: "#E8252A" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 0L13.3333 10L0 20V0Z", fill: "#17579E" })] })] }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.FlagCZ = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var FlagCZ = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "28", height: "20", viewBox: "0 0 28 20", fill: "none" }, props, { children: [(0, jsx_runtime_1.jsx)("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "#F5F5F5", strokeWidth: "0.5" }), (0, jsx_runtime_1.jsx)("mask", { id: "mask0_48_769", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "28", height: "20", children: (0, jsx_runtime_1.jsx)("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "white", strokeWidth: "0.5" }) }), (0, jsx_runtime_1.jsxs)("g", { mask: "url(#mask0_48_769)", children: [(0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 20H28V10H0V20Z", fill: "#E8252A" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 0L13.3333 10L0 20V0Z", fill: "#17579E" })] })] }))); };
17
+ exports.FlagCZ = FlagCZ;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var FlagEL = function (props) { return (_jsxs("svg", __assign({ width: "28", height: "20", viewBox: "0 0 28 20", fill: "none" }, props, { children: [_jsx("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "#F5F5F5", strokeWidth: "0.5" }), _jsx("mask", { id: "mask0_48_990", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "28", height: "20", children: _jsx("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "white", strokeWidth: "0.5" }) }), _jsx("g", { mask: "url(#mask0_48_990)", children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.33333 0H0V5.33333H5.33333V0ZM13.3333 0H8V5.33333H13.3333L13.3333 8H8V13.3333H13.3333H28V10.6667H13.3333V8H28V5.33333H13.3333L13.3333 2.66667H28V0H13.3333ZM28 16H0V18.6667H28V16ZM5.33333 8H0V13.3333H5.33333V8Z", fill: "#1C6DC1" }) })] }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.FlagEL = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var FlagEL = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "28", height: "20", viewBox: "0 0 28 20", fill: "none" }, props, { children: [(0, jsx_runtime_1.jsx)("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "#F5F5F5", strokeWidth: "0.5" }), (0, jsx_runtime_1.jsx)("mask", { id: "mask0_48_990", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "28", height: "20", children: (0, jsx_runtime_1.jsx)("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "white", strokeWidth: "0.5" }) }), (0, jsx_runtime_1.jsx)("g", { mask: "url(#mask0_48_990)", children: (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.33333 0H0V5.33333H5.33333V0ZM13.3333 0H8V5.33333H13.3333L13.3333 8H8V13.3333H13.3333H28V10.6667H13.3333V8H28V5.33333H13.3333L13.3333 2.66667H28V0H13.3333ZM28 16H0V18.6667H28V16ZM5.33333 8H0V13.3333H5.33333V8Z", fill: "#1C6DC1" }) })] }))); };
17
+ exports.FlagEL = FlagEL;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var FlagESP = function (props) { return (_jsxs("svg", __assign({ width: "28", height: "20", viewBox: "0 0 28 20", fill: "none" }, props, { children: [_jsx("rect", { width: "28", height: "20", rx: "2", fill: "white" }), _jsx("mask", { id: "mask0_48_867", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "28", height: "20", children: _jsx("rect", { width: "28", height: "20", rx: "2", fill: "white" }) }), _jsxs("g", { mask: "url(#mask0_48_867)", children: [_jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 5.33333H28V0H0V5.33333Z", fill: "#DD172C" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 20H28V14.6667H0V20Z", fill: "#DD172C" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 14.6667H28V5.33334H0V14.6667Z", fill: "#FFD133" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.33337 9.33333H8.66671V10H7.33337V9.33333Z", fill: "#FFEDB1" }), _jsx("path", { d: "M6.05898 9.36101C6.04278 9.16667 6.19615 8.99999 6.39116 8.99999H8.27543C8.47044 8.99999 8.6238 9.16666 8.60761 9.36101L8.43633 11.4164C8.39314 11.9347 7.95987 12.3333 7.43978 12.3333H7.2268C6.70671 12.3333 6.27345 11.9347 6.23026 11.4164L6.05898 9.36101Z", stroke: "#A41517", strokeWidth: "0.666667" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6 10H8.66667V10.6667H8L7.33333 12L6.66667 10.6667H6V10Z", fill: "#A41517" }), _jsx("rect", { x: "4", y: "8", width: "1.33333", height: "4.66667", rx: "0.666667", fill: "#A41517" }), _jsx("rect", { x: "9.33337", y: "8", width: "1.33333", height: "4.66667", rx: "0.666667", fill: "#A41517" }), _jsx("path", { d: "M6 7.73332C6 7.14422 6.47756 6.66666 7.06667 6.66666H7.6C8.1891 6.66666 8.66667 7.14422 8.66667 7.73332C8.66667 7.8806 8.54728 7.99999 8.4 7.99999H6.26667C6.11939 7.99999 6 7.8806 6 7.73332Z", fill: "#A41517" })] })] }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.FlagESP = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var FlagESP = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "28", height: "20", viewBox: "0 0 28 20", fill: "none" }, props, { children: [(0, jsx_runtime_1.jsx)("rect", { width: "28", height: "20", rx: "2", fill: "white" }), (0, jsx_runtime_1.jsx)("mask", { id: "mask0_48_867", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "28", height: "20", children: (0, jsx_runtime_1.jsx)("rect", { width: "28", height: "20", rx: "2", fill: "white" }) }), (0, jsx_runtime_1.jsxs)("g", { mask: "url(#mask0_48_867)", children: [(0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 5.33333H28V0H0V5.33333Z", fill: "#DD172C" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 20H28V14.6667H0V20Z", fill: "#DD172C" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 14.6667H28V5.33334H0V14.6667Z", fill: "#FFD133" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.33337 9.33333H8.66671V10H7.33337V9.33333Z", fill: "#FFEDB1" }), (0, jsx_runtime_1.jsx)("path", { d: "M6.05898 9.36101C6.04278 9.16667 6.19615 8.99999 6.39116 8.99999H8.27543C8.47044 8.99999 8.6238 9.16666 8.60761 9.36101L8.43633 11.4164C8.39314 11.9347 7.95987 12.3333 7.43978 12.3333H7.2268C6.70671 12.3333 6.27345 11.9347 6.23026 11.4164L6.05898 9.36101Z", stroke: "#A41517", strokeWidth: "0.666667" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6 10H8.66667V10.6667H8L7.33333 12L6.66667 10.6667H6V10Z", fill: "#A41517" }), (0, jsx_runtime_1.jsx)("rect", { x: "4", y: "8", width: "1.33333", height: "4.66667", rx: "0.666667", fill: "#A41517" }), (0, jsx_runtime_1.jsx)("rect", { x: "9.33337", y: "8", width: "1.33333", height: "4.66667", rx: "0.666667", fill: "#A41517" }), (0, jsx_runtime_1.jsx)("path", { d: "M6 7.73332C6 7.14422 6.47756 6.66666 7.06667 6.66666H7.6C8.1891 6.66666 8.66667 7.14422 8.66667 7.73332C8.66667 7.8806 8.54728 7.99999 8.4 7.99999H6.26667C6.11939 7.99999 6 7.8806 6 7.73332Z", fill: "#A41517" })] })] }))); };
17
+ exports.FlagESP = FlagESP;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var FlagITA = function (props) { return (_jsxs("svg", __assign({ width: "28", height: "20", viewBox: "0 0 28 20", fill: "none" }, props, { children: [_jsx("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "#F5F5F5", strokeWidth: "0.5" }), _jsx("mask", { id: "mask0_48_1148", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "28", height: "20", children: _jsx("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "white", strokeWidth: "0.5" }) }), _jsxs("g", { mask: "url(#mask0_48_1148)", children: [_jsx("rect", { x: "18.6666", width: "9.33333", height: "20", fill: "#E43D4C" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 20H9.33333V0H0V20Z", fill: "#1BB65D" })] })] }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.FlagITA = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var FlagITA = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "28", height: "20", viewBox: "0 0 28 20", fill: "none" }, props, { children: [(0, jsx_runtime_1.jsx)("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "#F5F5F5", strokeWidth: "0.5" }), (0, jsx_runtime_1.jsx)("mask", { id: "mask0_48_1148", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "28", height: "20", children: (0, jsx_runtime_1.jsx)("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "white", strokeWidth: "0.5" }) }), (0, jsx_runtime_1.jsxs)("g", { mask: "url(#mask0_48_1148)", children: [(0, jsx_runtime_1.jsx)("rect", { x: "18.6666", width: "9.33333", height: "20", fill: "#E43D4C" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 20H9.33333V0H0V20Z", fill: "#1BB65D" })] })] }))); };
17
+ exports.FlagITA = FlagITA;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var FlagRUS = function (props) { return (_jsxs("svg", __assign({ width: "28", height: "20", viewBox: "0 0 28 20", fill: "none" }, props, { children: [_jsx("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "#F5F5F5", strokeWidth: "0.5" }), _jsx("mask", { id: "mask0_48_1785", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "28", height: "20", children: _jsx("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "white", strokeWidth: "0.5" }) }), _jsxs("g", { mask: "url(#mask0_48_1785)", children: [_jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 13.3333H28V6.66666H0V13.3333Z", fill: "#0C47B7" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 20H28V13.3333H0V20Z", fill: "#E53B35" })] })] }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.FlagRUS = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var FlagRUS = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "28", height: "20", viewBox: "0 0 28 20", fill: "none" }, props, { children: [(0, jsx_runtime_1.jsx)("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "#F5F5F5", strokeWidth: "0.5" }), (0, jsx_runtime_1.jsx)("mask", { id: "mask0_48_1785", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "28", height: "20", children: (0, jsx_runtime_1.jsx)("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "white", strokeWidth: "0.5" }) }), (0, jsx_runtime_1.jsxs)("g", { mask: "url(#mask0_48_1785)", children: [(0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 13.3333H28V6.66666H0V13.3333Z", fill: "#0C47B7" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 20H28V13.3333H0V20Z", fill: "#E53B35" })] })] }))); };
17
+ exports.FlagRUS = FlagRUS;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var FlagSVK = function (props) { return (_jsxs("svg", __assign({ width: "28", height: "20", viewBox: "0 0 28 20", fill: "none" }, props, { children: [_jsx("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "#F5F5F5", strokeWidth: "0.5" }), _jsx("mask", { id: "mask0_48_1842", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "28", height: "20", children: _jsx("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "white", strokeWidth: "0.5" }) }), _jsxs("g", { mask: "url(#mask0_48_1842)", children: [_jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 13.3333H28V6.66666H0V13.3333Z", fill: "#0C47B7" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 20H28V13.3333H0V20Z", fill: "#E53B35" }), _jsx("path", { d: "M6.94971 3.33333C5.87505 3.33333 4.99249 4.1826 4.95119 5.25647L4.69194 11.9969C4.66847 12.6073 4.92515 13.1948 5.38888 13.5923L8.26456 16.0572C9.2632 16.9132 10.7368 16.9132 11.7355 16.0572L14.6111 13.5923C15.0749 13.1948 15.3315 12.6073 15.3081 11.9969L15.0488 5.25647C15.0075 4.1826 14.125 3.33333 13.0503 3.33333H6.94971Z", fill: "#F73744", stroke: "white", strokeWidth: "1.33333" }), _jsx("mask", { id: "mask1_48_1842", maskUnits: "userSpaceOnUse", x: "4", y: "2", width: "12", height: "16", children: _jsx("path", { d: "M6.94971 3.33333C5.87505 3.33333 4.99249 4.1826 4.95119 5.25647L4.69194 11.9969C4.66847 12.6073 4.92515 13.1948 5.38888 13.5923L8.26456 16.0572C9.2632 16.9132 10.7368 16.9132 11.7355 16.0572L14.6111 13.5923C15.0749 13.1948 15.3315 12.6073 15.3081 11.9969L15.0488 5.25647C15.0075 4.1826 14.125 3.33333 13.0503 3.33333H6.94971Z", fill: "white", stroke: "white", strokeWidth: "1.33333" }) }), _jsxs("g", { mask: "url(#mask1_48_1842)", children: [_jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.33331 11C9.33331 10.8159 9.18407 10.6667 8.99998 10.6667H7.66665C7.48255 10.6667 7.33331 10.5174 7.33331 10.3333V9.66668C7.33331 9.48258 7.48255 9.33334 7.66665 9.33334H8.99998C9.18407 9.33334 9.33331 9.1841 9.33331 9.00001V8.33334C9.33331 8.14925 9.18407 8.00001 8.99998 8.00001H8.33331C8.14922 8.00001 7.99998 7.85077 7.99998 7.66668V7.00001C7.99998 6.81592 8.14922 6.66668 8.33331 6.66668H8.99998C9.18407 6.66668 9.33331 6.51744 9.33331 6.33334V5.66668C9.33331 5.48258 9.48255 5.33334 9.66665 5.33334H10.3333C10.5174 5.33334 10.6666 5.48258 10.6666 5.66668V6.33334C10.6666 6.51744 10.8159 6.66668 11 6.66668H11.6666C11.8507 6.66668 12 6.81592 12 7.00001V7.66668C12 7.85077 11.8507 8.00001 11.6666 8.00001H11C10.8159 8.00001 10.6666 8.14925 10.6666 8.33334V9.00001C10.6666 9.1841 10.8159 9.33334 11 9.33334H12.3333C12.5174 9.33334 12.6666 9.48258 12.6666 9.66668V10.3333C12.6666 10.5174 12.5174 10.6667 12.3333 10.6667H11C10.8159 10.6667 10.6666 10.8159 10.6666 11V13C10.6666 13.1841 10.5174 13.3333 10.3333 13.3333H9.66665C9.48255 13.3333 9.33331 13.1841 9.33331 13V11Z", fill: "white" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.2035 13.4254C10.9889 12.9767 10.5307 12.6667 10 12.6667C9.46934 12.6667 9.01109 12.9767 8.79647 13.4254C7.17545 13.6808 6 14.4384 6 15.3333C6 16.4379 7.79086 17.3333 10 17.3333C12.2091 17.3333 14 16.4379 14 15.3333C14 14.4384 12.8246 13.6808 11.2035 13.4254Z", fill: "#1251A1" })] })] })] }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.FlagSVK = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var FlagSVK = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "28", height: "20", viewBox: "0 0 28 20", fill: "none" }, props, { children: [(0, jsx_runtime_1.jsx)("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "#F5F5F5", strokeWidth: "0.5" }), (0, jsx_runtime_1.jsx)("mask", { id: "mask0_48_1842", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "28", height: "20", children: (0, jsx_runtime_1.jsx)("rect", { x: "0.25", y: "0.25", width: "27.5", height: "19.5", rx: "1.75", fill: "white", stroke: "white", strokeWidth: "0.5" }) }), (0, jsx_runtime_1.jsxs)("g", { mask: "url(#mask0_48_1842)", children: [(0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 13.3333H28V6.66666H0V13.3333Z", fill: "#0C47B7" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 20H28V13.3333H0V20Z", fill: "#E53B35" }), (0, jsx_runtime_1.jsx)("path", { d: "M6.94971 3.33333C5.87505 3.33333 4.99249 4.1826 4.95119 5.25647L4.69194 11.9969C4.66847 12.6073 4.92515 13.1948 5.38888 13.5923L8.26456 16.0572C9.2632 16.9132 10.7368 16.9132 11.7355 16.0572L14.6111 13.5923C15.0749 13.1948 15.3315 12.6073 15.3081 11.9969L15.0488 5.25647C15.0075 4.1826 14.125 3.33333 13.0503 3.33333H6.94971Z", fill: "#F73744", stroke: "white", strokeWidth: "1.33333" }), (0, jsx_runtime_1.jsx)("mask", { id: "mask1_48_1842", maskUnits: "userSpaceOnUse", x: "4", y: "2", width: "12", height: "16", children: (0, jsx_runtime_1.jsx)("path", { d: "M6.94971 3.33333C5.87505 3.33333 4.99249 4.1826 4.95119 5.25647L4.69194 11.9969C4.66847 12.6073 4.92515 13.1948 5.38888 13.5923L8.26456 16.0572C9.2632 16.9132 10.7368 16.9132 11.7355 16.0572L14.6111 13.5923C15.0749 13.1948 15.3315 12.6073 15.3081 11.9969L15.0488 5.25647C15.0075 4.1826 14.125 3.33333 13.0503 3.33333H6.94971Z", fill: "white", stroke: "white", strokeWidth: "1.33333" }) }), (0, jsx_runtime_1.jsxs)("g", { mask: "url(#mask1_48_1842)", children: [(0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.33331 11C9.33331 10.8159 9.18407 10.6667 8.99998 10.6667H7.66665C7.48255 10.6667 7.33331 10.5174 7.33331 10.3333V9.66668C7.33331 9.48258 7.48255 9.33334 7.66665 9.33334H8.99998C9.18407 9.33334 9.33331 9.1841 9.33331 9.00001V8.33334C9.33331 8.14925 9.18407 8.00001 8.99998 8.00001H8.33331C8.14922 8.00001 7.99998 7.85077 7.99998 7.66668V7.00001C7.99998 6.81592 8.14922 6.66668 8.33331 6.66668H8.99998C9.18407 6.66668 9.33331 6.51744 9.33331 6.33334V5.66668C9.33331 5.48258 9.48255 5.33334 9.66665 5.33334H10.3333C10.5174 5.33334 10.6666 5.48258 10.6666 5.66668V6.33334C10.6666 6.51744 10.8159 6.66668 11 6.66668H11.6666C11.8507 6.66668 12 6.81592 12 7.00001V7.66668C12 7.85077 11.8507 8.00001 11.6666 8.00001H11C10.8159 8.00001 10.6666 8.14925 10.6666 8.33334V9.00001C10.6666 9.1841 10.8159 9.33334 11 9.33334H12.3333C12.5174 9.33334 12.6666 9.48258 12.6666 9.66668V10.3333C12.6666 10.5174 12.5174 10.6667 12.3333 10.6667H11C10.8159 10.6667 10.6666 10.8159 10.6666 11V13C10.6666 13.1841 10.5174 13.3333 10.3333 13.3333H9.66665C9.48255 13.3333 9.33331 13.1841 9.33331 13V11Z", fill: "white" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.2035 13.4254C10.9889 12.9767 10.5307 12.6667 10 12.6667C9.46934 12.6667 9.01109 12.9767 8.79647 13.4254C7.17545 13.6808 6 14.4384 6 15.3333C6 16.4379 7.79086 17.3333 10 17.3333C12.2091 17.3333 14 16.4379 14 15.3333C14 14.4384 12.8246 13.6808 11.2035 13.4254Z", fill: "#1251A1" })] })] })] }))); };
17
+ exports.FlagSVK = FlagSVK;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var FlagUSA = function (props) { return (_jsxs("svg", __assign({ width: "28", height: "20", viewBox: "0 0 28 20", fill: "none" }, props, { children: [_jsx("rect", { width: "28", height: "20", rx: "2", fill: "white" }), _jsx("mask", { id: "mask0_48_2135", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "28", height: "20", children: _jsx("rect", { width: "28", height: "20", rx: "2", fill: "white" }) }), _jsxs("g", { mask: "url(#mask0_48_2135)", children: [_jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M28 0H0V1.33333H28V0ZM28 2.66667H0V4H28V2.66667ZM0 5.33333H28V6.66667H0V5.33333ZM28 8H0V9.33333H28V8ZM0 10.6667H28V12H0V10.6667ZM28 13.3333H0V14.6667H28V13.3333ZM0 16H28V17.3333H0V16ZM28 18.6667H0V20H28V18.6667Z", fill: "#D02F44" }), _jsx("rect", { width: "12", height: "9.33333", fill: "#46467F" }), _jsx("g", { filter: "url(#filter0_d_48_2135)", children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.66671 2.00001C2.66671 2.3682 2.36823 2.66668 2.00004 2.66668C1.63185 2.66668 1.33337 2.3682 1.33337 2.00001C1.33337 1.63182 1.63185 1.33334 2.00004 1.33334C2.36823 1.33334 2.66671 1.63182 2.66671 2.00001ZM5.33337 2.00001C5.33337 2.3682 5.0349 2.66668 4.66671 2.66668C4.29852 2.66668 4.00004 2.3682 4.00004 2.00001C4.00004 1.63182 4.29852 1.33334 4.66671 1.33334C5.0349 1.33334 5.33337 1.63182 5.33337 2.00001ZM7.33337 2.66668C7.70156 2.66668 8.00004 2.3682 8.00004 2.00001C8.00004 1.63182 7.70156 1.33334 7.33337 1.33334C6.96518 1.33334 6.66671 1.63182 6.66671 2.00001C6.66671 2.3682 6.96518 2.66668 7.33337 2.66668ZM10.6667 2.00001C10.6667 2.3682 10.3682 2.66668 10 2.66668C9.63185 2.66668 9.33337 2.3682 9.33337 2.00001C9.33337 1.63182 9.63185 1.33334 10 1.33334C10.3682 1.33334 10.6667 1.63182 10.6667 2.00001ZM3.33337 4.00001C3.70156 4.00001 4.00004 3.70153 4.00004 3.33334C4.00004 2.96515 3.70156 2.66668 3.33337 2.66668C2.96518 2.66668 2.66671 2.96515 2.66671 3.33334C2.66671 3.70153 2.96518 4.00001 3.33337 4.00001ZM6.66671 3.33334C6.66671 3.70153 6.36823 4.00001 6.00004 4.00001C5.63185 4.00001 5.33337 3.70153 5.33337 3.33334C5.33337 2.96515 5.63185 2.66668 6.00004 2.66668C6.36823 2.66668 6.66671 2.96515 6.66671 3.33334ZM8.66671 4.00001C9.0349 4.00001 9.33337 3.70153 9.33337 3.33334C9.33337 2.96515 9.0349 2.66668 8.66671 2.66668C8.29852 2.66668 8.00004 2.96515 8.00004 3.33334C8.00004 3.70153 8.29852 4.00001 8.66671 4.00001ZM10.6667 4.66668C10.6667 5.03487 10.3682 5.33334 10 5.33334C9.63185 5.33334 9.33337 5.03487 9.33337 4.66668C9.33337 4.29849 9.63185 4.00001 10 4.00001C10.3682 4.00001 10.6667 4.29849 10.6667 4.66668ZM7.33337 5.33334C7.70156 5.33334 8.00004 5.03487 8.00004 4.66668C8.00004 4.29849 7.70156 4.00001 7.33337 4.00001C6.96518 4.00001 6.66671 4.29849 6.66671 4.66668C6.66671 5.03487 6.96518 5.33334 7.33337 5.33334ZM5.33337 4.66668C5.33337 5.03487 5.0349 5.33334 4.66671 5.33334C4.29852 5.33334 4.00004 5.03487 4.00004 4.66668C4.00004 4.29849 4.29852 4.00001 4.66671 4.00001C5.0349 4.00001 5.33337 4.29849 5.33337 4.66668ZM2.00004 5.33334C2.36823 5.33334 2.66671 5.03487 2.66671 4.66668C2.66671 4.29849 2.36823 4.00001 2.00004 4.00001C1.63185 4.00001 1.33337 4.29849 1.33337 4.66668C1.33337 5.03487 1.63185 5.33334 2.00004 5.33334ZM4.00004 6.00001C4.00004 6.3682 3.70156 6.66668 3.33337 6.66668C2.96518 6.66668 2.66671 6.3682 2.66671 6.00001C2.66671 5.63182 2.96518 5.33334 3.33337 5.33334C3.70156 5.33334 4.00004 5.63182 4.00004 6.00001ZM6.00004 6.66668C6.36823 6.66668 6.66671 6.3682 6.66671 6.00001C6.66671 5.63182 6.36823 5.33334 6.00004 5.33334C5.63185 5.33334 5.33337 5.63182 5.33337 6.00001C5.33337 6.3682 5.63185 6.66668 6.00004 6.66668ZM9.33337 6.00001C9.33337 6.3682 9.0349 6.66668 8.66671 6.66668C8.29852 6.66668 8.00004 6.3682 8.00004 6.00001C8.00004 5.63182 8.29852 5.33334 8.66671 5.33334C9.0349 5.33334 9.33337 5.63182 9.33337 6.00001ZM10 8.00001C10.3682 8.00001 10.6667 7.70153 10.6667 7.33334C10.6667 6.96515 10.3682 6.66668 10 6.66668C9.63185 6.66668 9.33337 6.96515 9.33337 7.33334C9.33337 7.70153 9.63185 8.00001 10 8.00001ZM8.00004 7.33334C8.00004 7.70153 7.70156 8.00001 7.33337 8.00001C6.96518 8.00001 6.66671 7.70153 6.66671 7.33334C6.66671 6.96515 6.96518 6.66668 7.33337 6.66668C7.70156 6.66668 8.00004 6.96515 8.00004 7.33334ZM4.66671 8.00001C5.0349 8.00001 5.33337 7.70153 5.33337 7.33334C5.33337 6.96515 5.0349 6.66668 4.66671 6.66668C4.29852 6.66668 4.00004 6.96515 4.00004 7.33334C4.00004 7.70153 4.29852 8.00001 4.66671 8.00001ZM2.66671 7.33334C2.66671 7.70153 2.36823 8.00001 2.00004 8.00001C1.63185 8.00001 1.33337 7.70153 1.33337 7.33334C1.33337 6.96515 1.63185 6.66668 2.00004 6.66668C2.36823 6.66668 2.66671 6.96515 2.66671 7.33334Z", fill: "url(#paint0_linear_48_2135)" }) })] }), _jsxs("defs", { children: [_jsxs("filter", { id: "filter0_d_48_2135", x: "1.33337", y: "1.33334", width: "9.33337", height: "7.66666", filterUnits: "userSpaceOnUse", colorInterpolationFilters: "sRGB", children: [_jsx("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }), _jsx("feColorMatrix", { in: "SourceAlpha", type: "matrix", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0", result: "hardAlpha" }), _jsx("feOffset", { dy: "1" }), _jsx("feColorMatrix", { type: "matrix", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0" }), _jsx("feBlend", { mode: "normal", in2: "BackgroundImageFix", result: "effect1_dropShadow_48_2135" }), _jsx("feBlend", { mode: "normal", in: "SourceGraphic", in2: "effect1_dropShadow_48_2135", result: "shape" })] }), _jsxs("linearGradient", { id: "paint0_linear_48_2135", x1: "1.33337", y1: "1.33334", x2: "1.33337", y2: "8.00001", gradientUnits: "userSpaceOnUse", children: [_jsx("stop", { stopColor: "white" }), _jsx("stop", { offset: "1", stopColor: "#F0F0F0" })] })] })] }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.FlagUSA = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var FlagUSA = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "28", height: "20", viewBox: "0 0 28 20", fill: "none" }, props, { children: [(0, jsx_runtime_1.jsx)("rect", { width: "28", height: "20", rx: "2", fill: "white" }), (0, jsx_runtime_1.jsx)("mask", { id: "mask0_48_2135", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "28", height: "20", children: (0, jsx_runtime_1.jsx)("rect", { width: "28", height: "20", rx: "2", fill: "white" }) }), (0, jsx_runtime_1.jsxs)("g", { mask: "url(#mask0_48_2135)", children: [(0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M28 0H0V1.33333H28V0ZM28 2.66667H0V4H28V2.66667ZM0 5.33333H28V6.66667H0V5.33333ZM28 8H0V9.33333H28V8ZM0 10.6667H28V12H0V10.6667ZM28 13.3333H0V14.6667H28V13.3333ZM0 16H28V17.3333H0V16ZM28 18.6667H0V20H28V18.6667Z", fill: "#D02F44" }), (0, jsx_runtime_1.jsx)("rect", { width: "12", height: "9.33333", fill: "#46467F" }), (0, jsx_runtime_1.jsx)("g", { filter: "url(#filter0_d_48_2135)", children: (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.66671 2.00001C2.66671 2.3682 2.36823 2.66668 2.00004 2.66668C1.63185 2.66668 1.33337 2.3682 1.33337 2.00001C1.33337 1.63182 1.63185 1.33334 2.00004 1.33334C2.36823 1.33334 2.66671 1.63182 2.66671 2.00001ZM5.33337 2.00001C5.33337 2.3682 5.0349 2.66668 4.66671 2.66668C4.29852 2.66668 4.00004 2.3682 4.00004 2.00001C4.00004 1.63182 4.29852 1.33334 4.66671 1.33334C5.0349 1.33334 5.33337 1.63182 5.33337 2.00001ZM7.33337 2.66668C7.70156 2.66668 8.00004 2.3682 8.00004 2.00001C8.00004 1.63182 7.70156 1.33334 7.33337 1.33334C6.96518 1.33334 6.66671 1.63182 6.66671 2.00001C6.66671 2.3682 6.96518 2.66668 7.33337 2.66668ZM10.6667 2.00001C10.6667 2.3682 10.3682 2.66668 10 2.66668C9.63185 2.66668 9.33337 2.3682 9.33337 2.00001C9.33337 1.63182 9.63185 1.33334 10 1.33334C10.3682 1.33334 10.6667 1.63182 10.6667 2.00001ZM3.33337 4.00001C3.70156 4.00001 4.00004 3.70153 4.00004 3.33334C4.00004 2.96515 3.70156 2.66668 3.33337 2.66668C2.96518 2.66668 2.66671 2.96515 2.66671 3.33334C2.66671 3.70153 2.96518 4.00001 3.33337 4.00001ZM6.66671 3.33334C6.66671 3.70153 6.36823 4.00001 6.00004 4.00001C5.63185 4.00001 5.33337 3.70153 5.33337 3.33334C5.33337 2.96515 5.63185 2.66668 6.00004 2.66668C6.36823 2.66668 6.66671 2.96515 6.66671 3.33334ZM8.66671 4.00001C9.0349 4.00001 9.33337 3.70153 9.33337 3.33334C9.33337 2.96515 9.0349 2.66668 8.66671 2.66668C8.29852 2.66668 8.00004 2.96515 8.00004 3.33334C8.00004 3.70153 8.29852 4.00001 8.66671 4.00001ZM10.6667 4.66668C10.6667 5.03487 10.3682 5.33334 10 5.33334C9.63185 5.33334 9.33337 5.03487 9.33337 4.66668C9.33337 4.29849 9.63185 4.00001 10 4.00001C10.3682 4.00001 10.6667 4.29849 10.6667 4.66668ZM7.33337 5.33334C7.70156 5.33334 8.00004 5.03487 8.00004 4.66668C8.00004 4.29849 7.70156 4.00001 7.33337 4.00001C6.96518 4.00001 6.66671 4.29849 6.66671 4.66668C6.66671 5.03487 6.96518 5.33334 7.33337 5.33334ZM5.33337 4.66668C5.33337 5.03487 5.0349 5.33334 4.66671 5.33334C4.29852 5.33334 4.00004 5.03487 4.00004 4.66668C4.00004 4.29849 4.29852 4.00001 4.66671 4.00001C5.0349 4.00001 5.33337 4.29849 5.33337 4.66668ZM2.00004 5.33334C2.36823 5.33334 2.66671 5.03487 2.66671 4.66668C2.66671 4.29849 2.36823 4.00001 2.00004 4.00001C1.63185 4.00001 1.33337 4.29849 1.33337 4.66668C1.33337 5.03487 1.63185 5.33334 2.00004 5.33334ZM4.00004 6.00001C4.00004 6.3682 3.70156 6.66668 3.33337 6.66668C2.96518 6.66668 2.66671 6.3682 2.66671 6.00001C2.66671 5.63182 2.96518 5.33334 3.33337 5.33334C3.70156 5.33334 4.00004 5.63182 4.00004 6.00001ZM6.00004 6.66668C6.36823 6.66668 6.66671 6.3682 6.66671 6.00001C6.66671 5.63182 6.36823 5.33334 6.00004 5.33334C5.63185 5.33334 5.33337 5.63182 5.33337 6.00001C5.33337 6.3682 5.63185 6.66668 6.00004 6.66668ZM9.33337 6.00001C9.33337 6.3682 9.0349 6.66668 8.66671 6.66668C8.29852 6.66668 8.00004 6.3682 8.00004 6.00001C8.00004 5.63182 8.29852 5.33334 8.66671 5.33334C9.0349 5.33334 9.33337 5.63182 9.33337 6.00001ZM10 8.00001C10.3682 8.00001 10.6667 7.70153 10.6667 7.33334C10.6667 6.96515 10.3682 6.66668 10 6.66668C9.63185 6.66668 9.33337 6.96515 9.33337 7.33334C9.33337 7.70153 9.63185 8.00001 10 8.00001ZM8.00004 7.33334C8.00004 7.70153 7.70156 8.00001 7.33337 8.00001C6.96518 8.00001 6.66671 7.70153 6.66671 7.33334C6.66671 6.96515 6.96518 6.66668 7.33337 6.66668C7.70156 6.66668 8.00004 6.96515 8.00004 7.33334ZM4.66671 8.00001C5.0349 8.00001 5.33337 7.70153 5.33337 7.33334C5.33337 6.96515 5.0349 6.66668 4.66671 6.66668C4.29852 6.66668 4.00004 6.96515 4.00004 7.33334C4.00004 7.70153 4.29852 8.00001 4.66671 8.00001ZM2.66671 7.33334C2.66671 7.70153 2.36823 8.00001 2.00004 8.00001C1.63185 8.00001 1.33337 7.70153 1.33337 7.33334C1.33337 6.96515 1.63185 6.66668 2.00004 6.66668C2.36823 6.66668 2.66671 6.96515 2.66671 7.33334Z", fill: "url(#paint0_linear_48_2135)" }) })] }), (0, jsx_runtime_1.jsxs)("defs", { children: [(0, jsx_runtime_1.jsxs)("filter", { id: "filter0_d_48_2135", x: "1.33337", y: "1.33334", width: "9.33337", height: "7.66666", filterUnits: "userSpaceOnUse", colorInterpolationFilters: "sRGB", children: [(0, jsx_runtime_1.jsx)("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }), (0, jsx_runtime_1.jsx)("feColorMatrix", { in: "SourceAlpha", type: "matrix", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0", result: "hardAlpha" }), (0, jsx_runtime_1.jsx)("feOffset", { dy: "1" }), (0, jsx_runtime_1.jsx)("feColorMatrix", { type: "matrix", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0" }), (0, jsx_runtime_1.jsx)("feBlend", { mode: "normal", in2: "BackgroundImageFix", result: "effect1_dropShadow_48_2135" }), (0, jsx_runtime_1.jsx)("feBlend", { mode: "normal", in: "SourceGraphic", in2: "effect1_dropShadow_48_2135", result: "shape" })] }), (0, jsx_runtime_1.jsxs)("linearGradient", { id: "paint0_linear_48_2135", x1: "1.33337", y1: "1.33334", x2: "1.33337", y2: "8.00001", gradientUnits: "userSpaceOnUse", children: [(0, jsx_runtime_1.jsx)("stop", { stopColor: "white" }), (0, jsx_runtime_1.jsx)("stop", { offset: "1", stopColor: "#F0F0F0" })] })] })] }))); };
17
+ exports.FlagUSA = FlagUSA;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var Gift = function (props) { return (_jsxs("svg", __assign({ width: "18", height: "15", viewBox: "0 0 18 15", stroke: "#DB2B19", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("path", { d: "M1.85556 2.125L3.48063 0.970602C3.76878 0.765903 4.15773 0.777028 4.43371 0.997864L8.6136 4.34248C9.02428 4.67109 9.00625 5.30141 8.57746 5.60601L6.95239 6.76042C6.66423 6.96512 6.27529 6.95399 5.9993 6.73316L1.81941 3.38854C1.40874 3.05993 1.42677 2.4296 1.85556 2.125Z", strokeWidth: "1.5" }), _jsx("path", { d: "M9.85562 5.60601L11.4807 6.76042C11.7688 6.96512 12.1578 6.95399 12.4338 6.73315L16.6137 3.38854C17.0243 3.05993 17.0063 2.4296 16.5775 2.125L14.9524 0.970601C14.6643 0.765902 14.2753 0.777027 13.9994 0.997863L9.81948 4.34248C9.4088 4.67109 9.42683 5.30141 9.85562 5.60601Z", strokeWidth: "1.5" }), _jsx("path", { d: "M3 4.5V13.2083C3 13.6456 3.35444 14 3.79167 14H15.2083C15.6456 14 16 13.6456 16 13.2083V4", strokeWidth: "1.5" }), _jsx("line", { x1: "9.75", y1: "11", x2: "9.75", y2: "14", strokeWidth: "1.5" }), _jsx("line", { x1: "9.75", y1: "6", x2: "9.75", y2: "9", strokeWidth: "1.5" })] }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.Gift = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var Gift = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "18", height: "15", viewBox: "0 0 18 15", stroke: "#DB2B19", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M1.85556 2.125L3.48063 0.970602C3.76878 0.765903 4.15773 0.777028 4.43371 0.997864L8.6136 4.34248C9.02428 4.67109 9.00625 5.30141 8.57746 5.60601L6.95239 6.76042C6.66423 6.96512 6.27529 6.95399 5.9993 6.73316L1.81941 3.38854C1.40874 3.05993 1.42677 2.4296 1.85556 2.125Z", strokeWidth: "1.5" }), (0, jsx_runtime_1.jsx)("path", { d: "M9.85562 5.60601L11.4807 6.76042C11.7688 6.96512 12.1578 6.95399 12.4338 6.73315L16.6137 3.38854C17.0243 3.05993 17.0063 2.4296 16.5775 2.125L14.9524 0.970601C14.6643 0.765902 14.2753 0.777027 13.9994 0.997863L9.81948 4.34248C9.4088 4.67109 9.42683 5.30141 9.85562 5.60601Z", strokeWidth: "1.5" }), (0, jsx_runtime_1.jsx)("path", { d: "M3 4.5V13.2083C3 13.6456 3.35444 14 3.79167 14H15.2083C15.6456 14 16 13.6456 16 13.2083V4", strokeWidth: "1.5" }), (0, jsx_runtime_1.jsx)("line", { x1: "9.75", y1: "11", x2: "9.75", y2: "14", strokeWidth: "1.5" }), (0, jsx_runtime_1.jsx)("line", { x1: "9.75", y1: "6", x2: "9.75", y2: "9", strokeWidth: "1.5" })] }))); };
17
+ exports.Gift = Gift;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx } from "react/jsx-runtime";
13
- export var Group = function (props) { return (_jsx("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "#7A90A1", xmlns: "http://www.w3.org/2000/svg" }, props, { children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11 18C11 19.1 10.1 20 9 20C7.9 20 7 19.1 7 18C7 16.9 7.9 16 9 16C10.1 16 11 16.9 11 18ZM9 10C7.9 10 7 10.9 7 12C7 13.1 7.9 14 9 14C10.1 14 11 13.1 11 12C11 10.9 10.1 10 9 10ZM9 4C7.9 4 7 4.9 7 6C7 7.1 7.9 8 9 8C10.1 8 11 7.1 11 6C11 4.9 10.1 4 9 4ZM15 8C16.1 8 17 7.1 17 6C17 4.9 16.1 4 15 4C13.9 4 13 4.9 13 6C13 7.1 13.9 8 15 8ZM15 10C13.9 10 13 10.9 13 12C13 13.1 13.9 14 15 14C16.1 14 17 13.1 17 12C17 10.9 16.1 10 15 10ZM15 16C13.9 16 13 16.9 13 18C13 19.1 13.9 20 15 20C16.1 20 17 19.1 17 18C17 16.9 16.1 16 15 16Z" }) }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.Group = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var Group = function (props) { return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "#7A90A1", xmlns: "http://www.w3.org/2000/svg" }, props, { children: (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11 18C11 19.1 10.1 20 9 20C7.9 20 7 19.1 7 18C7 16.9 7.9 16 9 16C10.1 16 11 16.9 11 18ZM9 10C7.9 10 7 10.9 7 12C7 13.1 7.9 14 9 14C10.1 14 11 13.1 11 12C11 10.9 10.1 10 9 10ZM9 4C7.9 4 7 4.9 7 6C7 7.1 7.9 8 9 8C10.1 8 11 7.1 11 6C11 4.9 10.1 4 9 4ZM15 8C16.1 8 17 7.1 17 6C17 4.9 16.1 4 15 4C13.9 4 13 4.9 13 6C13 7.1 13.9 8 15 8ZM15 10C13.9 10 13 10.9 13 12C13 13.1 13.9 14 15 14C16.1 14 17 13.1 17 12C17 10.9 16.1 10 15 10ZM15 16C13.9 16 13 16.9 13 18C13 19.1 13.9 20 15 20C16.1 20 17 19.1 17 18C17 16.9 16.1 16 15 16Z" }) }))); };
17
+ exports.Group = Group;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var HamburgerMenu = function (props) { return (_jsxs("svg", __assign({ width: "36", height: "36", viewBox: "0 0 36 36", fill: "none", stroke: "#22394E" }, props, { children: [_jsx("rect", { width: "36", height: "36", rx: "18", fill: "neutral20" }), _jsx("path", { d: "M11 14H26", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M11 18H26", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M11 22H22", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.HamburgerMenu = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var HamburgerMenu = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "36", height: "36", viewBox: "0 0 36 36", fill: "none", stroke: "#22394E" }, props, { children: [(0, jsx_runtime_1.jsx)("rect", { width: "36", height: "36", rx: "18", fill: "neutral20" }), (0, jsx_runtime_1.jsx)("path", { d: "M11 14H26", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M11 18H26", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M11 22H22", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
17
+ exports.HamburgerMenu = HamburgerMenu;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var HelpCircle1 = function (props) { return (_jsxs("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "#374151" }, props, { children: [_jsx("path", { d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M9.09003 9.00002C9.32513 8.33169 9.78918 7.76813 10.4 7.40915C11.0108 7.05018 11.7289 6.91896 12.4272 7.03873C13.1255 7.15851 13.7588 7.52154 14.2151 8.06355C14.6714 8.60555 14.9211 9.29154 14.92 10C14.92 12 11.92 13 11.92 13V14.5", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M12 17H12.01", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.HelpCircle1 = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var HelpCircle1 = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "#374151" }, props, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M9.09003 9.00002C9.32513 8.33169 9.78918 7.76813 10.4 7.40915C11.0108 7.05018 11.7289 6.91896 12.4272 7.03873C13.1255 7.15851 13.7588 7.52154 14.2151 8.06355C14.6714 8.60555 14.9211 9.29154 14.92 10C14.92 12 11.92 13 11.92 13V14.5", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M12 17H12.01", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
17
+ exports.HelpCircle1 = HelpCircle1;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx } from "react/jsx-runtime";
13
- export var ImagePlaceholder = function (props) { return (_jsx("svg", __assign({ width: "18", height: "18", viewBox: "0 0 18 18", fill: "#A3B3C1", xmlns: "http://www.w3.org/2000/svg" }, props, { children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16 0C17.1 0 18 0.9 18 2V16C18 17.1 17.1 18 16 18H2C0.9 18 0 17.1 0 16V2C0 0.9 0.9 0 2 0H16ZM8 13.51L5.5 10.5L2 15H16L11.5 9L8 13.51Z" }) }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.ImagePlaceholder = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var ImagePlaceholder = function (props) { return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "18", height: "18", viewBox: "0 0 18 18", fill: "#A3B3C1", xmlns: "http://www.w3.org/2000/svg" }, props, { children: (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16 0C17.1 0 18 0.9 18 2V16C18 17.1 17.1 18 16 18H2C0.9 18 0 17.1 0 16V2C0 0.9 0.9 0 2 0H16ZM8 13.51L5.5 10.5L2 15H16L11.5 9L8 13.51Z" }) }))); };
17
+ exports.ImagePlaceholder = ImagePlaceholder;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var Income = function (props) { return (_jsxs("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#A3B3C1" }, props, { children: [_jsx("path", { d: "M2.75 2.75H4.58333L4.95 4.58333M4.95 4.58333L6.41667 11.9167M4.95 4.58333H7.33333M6.41667 11.9167H15.5833L19.25 4.58333H16.5M6.41667 11.9167L4.31485 14.0185C3.73738 14.596 4.14637 15.5833 4.96303 15.5833H15.5833M15.5833 15.5833C14.5708 15.5833 13.75 16.4041 13.75 17.4167C13.75 18.4292 14.5708 19.25 15.5833 19.25C16.5959 19.25 17.4167 18.4292 17.4167 17.4167C17.4167 16.4041 16.5959 15.5833 15.5833 15.5833ZM8.25 17.4167C8.25 18.4292 7.42919 19.25 6.41667 19.25C5.40414 19.25 4.58333 18.4292 4.58333 17.4167C4.58333 16.4041 5.40414 15.5833 6.41667 15.5833C7.42919 15.5833 8.25 16.4041 8.25 17.4167Z", strokeWidth: "1.35", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M11.9166 2.75V9.16667M11.9166 9.16667L9.16663 6.41667M11.9166 9.16667L14.6666 6.41667", strokeWidth: "1.35", strokeLinecap: "round" })] }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.Income = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var Income = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#A3B3C1" }, props, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M2.75 2.75H4.58333L4.95 4.58333M4.95 4.58333L6.41667 11.9167M4.95 4.58333H7.33333M6.41667 11.9167H15.5833L19.25 4.58333H16.5M6.41667 11.9167L4.31485 14.0185C3.73738 14.596 4.14637 15.5833 4.96303 15.5833H15.5833M15.5833 15.5833C14.5708 15.5833 13.75 16.4041 13.75 17.4167C13.75 18.4292 14.5708 19.25 15.5833 19.25C16.5959 19.25 17.4167 18.4292 17.4167 17.4167C17.4167 16.4041 16.5959 15.5833 15.5833 15.5833ZM8.25 17.4167C8.25 18.4292 7.42919 19.25 6.41667 19.25C5.40414 19.25 4.58333 18.4292 4.58333 17.4167C4.58333 16.4041 5.40414 15.5833 6.41667 15.5833C7.42919 15.5833 8.25 16.4041 8.25 17.4167Z", strokeWidth: "1.35", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M11.9166 2.75V9.16667M11.9166 9.16667L9.16663 6.41667M11.9166 9.16667L14.6666 6.41667", strokeWidth: "1.35", strokeLinecap: "round" })] }))); };
17
+ exports.Income = Income;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var Info = function (props) { return (_jsxs("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", stroke: "#374151", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("path", { d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M12 16V12", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M12 8H12.01", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.Info = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var Info = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", stroke: "#374151", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M12 16V12", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M12 8H12.01", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
17
+ exports.Info = Info;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx } from "react/jsx-runtime";
13
- export var Integrations = function (props) { return (_jsx("svg", __assign({ width: "16", height: "16", viewBox: "0 0 16 16", fill: "none" }, props, { children: _jsx("path", { d: "M7.33301 2.66683C7.33301 1.93045 7.92994 1.3335 8.66634 1.3335C9.40274 1.3335 9.99967 1.93045 9.99967 2.66683V3.3335C9.99967 3.70168 10.2981 4.00016 10.6663 4.00016H12.6663C13.0345 4.00016 13.333 4.29864 13.333 4.66683V6.66683C13.333 7.03503 13.0345 7.3335 12.6663 7.3335H11.9997C11.2633 7.3335 10.6663 7.93043 10.6663 8.66683C10.6663 9.40323 11.2633 10.0002 11.9997 10.0002H12.6663C13.0345 10.0002 13.333 10.2986 13.333 10.6668V12.6668C13.333 13.035 13.0345 13.3335 12.6663 13.3335H10.6663C10.2981 13.3335 9.99967 13.035 9.99967 12.6668V12.0002C9.99967 11.2638 9.40274 10.6668 8.66634 10.6668C7.92994 10.6668 7.33301 11.2638 7.33301 12.0002V12.6668C7.33301 13.035 7.03454 13.3335 6.66634 13.3335H4.66634C4.29815 13.3335 3.99967 13.035 3.99967 12.6668V10.6668C3.99967 10.2986 3.70119 10.0002 3.33301 10.0002H2.66634C1.92996 10.0002 1.33301 9.40323 1.33301 8.66683C1.33301 7.93043 1.92996 7.3335 2.66634 7.3335H3.33301C3.70119 7.3335 3.99967 7.03503 3.99967 6.66683V4.66683C3.99967 4.29864 4.29815 4.00016 4.66634 4.00016H6.66634C7.03454 4.00016 7.33301 3.70168 7.33301 3.3335V2.66683Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.Integrations = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var Integrations = function (props) { return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "16", height: "16", viewBox: "0 0 16 16", fill: "none" }, props, { children: (0, jsx_runtime_1.jsx)("path", { d: "M7.33301 2.66683C7.33301 1.93045 7.92994 1.3335 8.66634 1.3335C9.40274 1.3335 9.99967 1.93045 9.99967 2.66683V3.3335C9.99967 3.70168 10.2981 4.00016 10.6663 4.00016H12.6663C13.0345 4.00016 13.333 4.29864 13.333 4.66683V6.66683C13.333 7.03503 13.0345 7.3335 12.6663 7.3335H11.9997C11.2633 7.3335 10.6663 7.93043 10.6663 8.66683C10.6663 9.40323 11.2633 10.0002 11.9997 10.0002H12.6663C13.0345 10.0002 13.333 10.2986 13.333 10.6668V12.6668C13.333 13.035 13.0345 13.3335 12.6663 13.3335H10.6663C10.2981 13.3335 9.99967 13.035 9.99967 12.6668V12.0002C9.99967 11.2638 9.40274 10.6668 8.66634 10.6668C7.92994 10.6668 7.33301 11.2638 7.33301 12.0002V12.6668C7.33301 13.035 7.03454 13.3335 6.66634 13.3335H4.66634C4.29815 13.3335 3.99967 13.035 3.99967 12.6668V10.6668C3.99967 10.2986 3.70119 10.0002 3.33301 10.0002H2.66634C1.92996 10.0002 1.33301 9.40323 1.33301 8.66683C1.33301 7.93043 1.92996 7.3335 2.66634 7.3335H3.33301C3.70119 7.3335 3.99967 7.03503 3.99967 6.66683V4.66683C3.99967 4.29864 4.29815 4.00016 4.66634 4.00016H6.66634C7.03454 4.00016 7.33301 3.70168 7.33301 3.3335V2.66683Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }))); };
17
+ exports.Integrations = Integrations;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var Inventory = function (props) { return (_jsxs("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#A3B3C1" }, props, { children: [_jsxs("g", { clipPath: "url(#clip0_7_1616)", children: [_jsx("path", { d: "M19.2501 17.4667C19.2501 18.9578 18.0413 20.1667 16.5501 20.1667H6.36675C4.87558 20.1667 3.66675 18.9578 3.66675 17.4667V4.53335C3.66675 3.04218 4.87558 1.83334 6.36675 1.83334H12.7404C13.3915 1.83334 14.0207 2.06865 14.512 2.49591L18.3218 5.80872C18.9115 6.32151 19.2501 7.06467 19.2501 7.84615V17.4667Z", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M13.2917 2.29169V6.89169C13.2917 7.38874 13.6947 7.79169 14.1917 7.79169H18.7917", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M14.6668 11L11.3337 14.8093C10.9751 15.2191 10.3376 15.219 9.97905 14.8093L8.25012 12.8333", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }), _jsx("defs", { children: _jsx("clipPath", { id: "clip0_7_1616", children: _jsx("rect", { width: "22", height: "22", fill: "white" }) }) })] }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.Inventory = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var Inventory = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#A3B3C1" }, props, { children: [(0, jsx_runtime_1.jsxs)("g", { clipPath: "url(#clip0_7_1616)", children: [(0, jsx_runtime_1.jsx)("path", { d: "M19.2501 17.4667C19.2501 18.9578 18.0413 20.1667 16.5501 20.1667H6.36675C4.87558 20.1667 3.66675 18.9578 3.66675 17.4667V4.53335C3.66675 3.04218 4.87558 1.83334 6.36675 1.83334H12.7404C13.3915 1.83334 14.0207 2.06865 14.512 2.49591L18.3218 5.80872C18.9115 6.32151 19.2501 7.06467 19.2501 7.84615V17.4667Z", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M13.2917 2.29169V6.89169C13.2917 7.38874 13.6947 7.79169 14.1917 7.79169H18.7917", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M14.6668 11L11.3337 14.8093C10.9751 15.2191 10.3376 15.219 9.97905 14.8093L8.25012 12.8333", strokeWidth: "1.35", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: "clip0_7_1616", children: (0, jsx_runtime_1.jsx)("rect", { width: "22", height: "22", fill: "white" }) }) })] }))); };
17
+ exports.Inventory = Inventory;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __assign = (this && this.__assign) || function () {
2
3
  __assign = Object.assign || function(t) {
3
4
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
9
10
  };
10
11
  return __assign.apply(this, arguments);
11
12
  };
12
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- export var Inventory2 = function (props) { return (_jsxs("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "black" }, props, { children: [_jsxs("g", { clipPath: "url(#clip0_316_2925)", children: [_jsx("path", { d: "M21 19C21 20.6569 19.6569 22 18 22H7C5.34315 22 4 20.6569 4 19V5C4 3.34315 5.34315 2 7 2H13.8781C14.6016 2 15.3007 2.26145 15.8466 2.73618L19.9685 6.32047C20.6238 6.89024 21 7.71596 21 8.58428V19Z", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M14.5 2.5V7.5C14.5 8.05228 14.9477 8.5 15.5 8.5H20.5", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M13.5 12.5H17.5", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M13.5 17.5H17.5", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M11.5 10.5L9.70711 12.2929C9.31658 12.6834 8.68342 12.6834 8.29289 12.2929L7.5 11.5", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M11.5 15.5L9.70711 17.2929C9.31658 17.6834 8.68342 17.6834 8.29289 17.2929L7.5 16.5", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }), _jsx("defs", { children: _jsx("clipPath", { id: "clip0_316_2925", children: _jsx("rect", { width: "24", height: "24", fill: "white" }) }) })] }))); };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.Inventory2 = void 0;
15
+ var jsx_runtime_1 = require("react/jsx-runtime");
16
+ var Inventory2 = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "black" }, props, { children: [(0, jsx_runtime_1.jsxs)("g", { clipPath: "url(#clip0_316_2925)", children: [(0, jsx_runtime_1.jsx)("path", { d: "M21 19C21 20.6569 19.6569 22 18 22H7C5.34315 22 4 20.6569 4 19V5C4 3.34315 5.34315 2 7 2H13.8781C14.6016 2 15.3007 2.26145 15.8466 2.73618L19.9685 6.32047C20.6238 6.89024 21 7.71596 21 8.58428V19Z", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M14.5 2.5V7.5C14.5 8.05228 14.9477 8.5 15.5 8.5H20.5", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M13.5 12.5H17.5", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M13.5 17.5H17.5", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M11.5 10.5L9.70711 12.2929C9.31658 12.6834 8.68342 12.6834 8.29289 12.2929L7.5 11.5", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M11.5 15.5L9.70711 17.2929C9.31658 17.6834 8.68342 17.6834 8.29289 17.2929L7.5 16.5", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: "clip0_316_2925", children: (0, jsx_runtime_1.jsx)("rect", { width: "24", height: "24", fill: "white" }) }) })] }))); };
17
+ exports.Inventory2 = Inventory2;