hrm_ui_lib 2.1.0 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (574) hide show
  1. package/assets/styles/styles.css +61 -5
  2. package/assets/styles/styles.scss +1 -1
  3. package/components/Alert/Alert.js +11 -52
  4. package/components/Alert/consts.js +12 -14
  5. package/components/Alert/index.js +1 -52
  6. package/components/Alert/types.js +1 -1
  7. package/components/Avatar/Avatar.js +21 -117
  8. package/components/Avatar/AvatarGroup.js +18 -117
  9. package/components/Avatar/index.js +2 -64
  10. package/components/Avatar/types.js +1 -1
  11. package/components/Badge/Badge.js +5 -22
  12. package/components/Badge/index.js +1 -6
  13. package/components/Badge/types.js +1 -1
  14. package/components/BadgeV2/BadgeV2.d.ts +3 -0
  15. package/components/BadgeV2/BadgeV2.js +9 -0
  16. package/components/BadgeV2/index.d.ts +1 -0
  17. package/components/BadgeV2/index.js +1 -0
  18. package/components/BadgeV2/types.d.ts +42 -0
  19. package/components/BadgeV2/types.js +31 -0
  20. package/components/Breadcrumb/Breadcrumb.js +6 -23
  21. package/components/Breadcrumb/index.js +1 -2
  22. package/components/Breadcrumb/types.js +1 -1
  23. package/components/Button/Button.js +29 -52
  24. package/components/Button/consts.js +12 -14
  25. package/components/Button/index.js +1 -52
  26. package/components/Button/types.js +1 -1
  27. package/components/Checkbox/Checkbox.js +45 -52
  28. package/components/Checkbox/index.js +1 -52
  29. package/components/Checkbox/types.js +1 -1
  30. package/components/Chips/Chips.js +23 -65
  31. package/components/Chips/consts.js +10 -12
  32. package/components/Chips/index.js +1 -11
  33. package/components/Chips/types.js +5 -7
  34. package/components/Collapse/CollapseGroup/CollapseGroup.js +22 -73
  35. package/components/Collapse/CollapseItem/CollapseItem.js +11 -86
  36. package/components/Collapse/index.js +2 -16
  37. package/components/Collapse/types.js +1 -1
  38. package/components/Container/Container.js +4 -9
  39. package/components/Container/index.js +1 -2
  40. package/components/Container/types.js +1 -1
  41. package/components/Copy/Copy.js +15 -93
  42. package/components/Copy/index.js +1 -54
  43. package/components/Copy/types.js +1 -1
  44. package/components/Counter/Counter.js +54 -134
  45. package/components/Counter/index.js +1 -61
  46. package/components/Counter/types.js +1 -1
  47. package/components/DatePicker/CustomHeader/CustomHeader.js +16 -191
  48. package/components/DatePicker/CustomHeader/helpers.js +10 -16
  49. package/components/DatePicker/RangeDatePicker/RangeDatePicker.js +7 -129
  50. package/components/DatePicker/RangeDatePicker/RangeDatePickerDesktop.js +71 -172
  51. package/components/DatePicker/RangeDatePicker/RangeDatePickerMobile.js +86 -265
  52. package/components/DatePicker/RangeDatePicker/index.js +1 -124
  53. package/components/DatePicker/SimpleDatePicker/SimpleDatePicker.js +8 -128
  54. package/components/DatePicker/SimpleDatePicker/SimpleDatePickerDesktop.js +45 -202
  55. package/components/DatePicker/SimpleDatePicker/SimpleDatePickerMobile.js +44 -206
  56. package/components/DatePicker/SimpleDatePicker/index.js +1 -123
  57. package/components/DatePicker/TimePicker/MobileModalContent.js +33 -123
  58. package/components/DatePicker/TimePicker/TimePicker.js +7 -75
  59. package/components/DatePicker/TimePicker/TimePickerDesktop.js +42 -128
  60. package/components/DatePicker/TimePicker/TimePickerMobile.js +27 -125
  61. package/components/DatePicker/TimePicker/consts.js +5 -8
  62. package/components/DatePicker/TimePicker/helpers.js +9 -19
  63. package/components/DatePicker/TimePicker/index.js +1 -70
  64. package/components/DatePicker/hooks.js +33 -2171
  65. package/components/DatePicker/index.js +3 -134
  66. package/components/DatePicker/localization.js +43 -6
  67. package/components/DatePicker/types.js +5 -7
  68. package/components/Divider/Divider.js +8 -15
  69. package/components/Divider/index.js +1 -3
  70. package/components/Divider/types.js +1 -1
  71. package/components/Empty/Empty.js +9 -83
  72. package/components/Empty/index.js +1 -54
  73. package/components/Empty/types.js +1 -1
  74. package/components/FileUpload/DropzoneFileUpload/DropzoneFileUpload.js +67 -52
  75. package/components/FileUpload/DropzoneFileUpload/ErrorItem.js +21 -52
  76. package/components/FileUpload/DropzoneFileUpload/FilePreview.js +23 -52
  77. package/components/FileUpload/DropzoneFileUpload/PreviewItem.js +30 -52
  78. package/components/FileUpload/DropzoneFileUpload/helpers.js +79 -52
  79. package/components/FileUpload/DropzoneFileUpload/index.js +1 -52
  80. package/components/FileUpload/FileUpload.js +69 -192
  81. package/components/FileUpload/UploadItems.js +22 -101
  82. package/components/FileUpload/index.js +3 -61
  83. package/components/FileUpload/types.js +6 -10
  84. package/components/FormContainer/FormContainer.js +43 -136
  85. package/components/FormContainer/index.js +1 -55
  86. package/components/FormContainer/types.js +1 -1
  87. package/components/FormField/FormField.js +17 -112
  88. package/components/FormField/index.js +1 -56
  89. package/components/FormField/types.js +1 -1
  90. package/components/Heading/Heading.js +5 -27
  91. package/components/Heading/index.js +1 -5
  92. package/components/Heading/types.js +1 -1
  93. package/components/Image/Image.js +12 -32
  94. package/components/Image/index.js +1 -2
  95. package/components/Image/types.js +1 -1
  96. package/components/Input/Input.js +68 -236
  97. package/components/Input/index.js +1 -58
  98. package/components/Input/types.js +1 -1
  99. package/components/Link/Link.js +14 -40
  100. package/components/Link/index.js +1 -3
  101. package/components/Link/types.js +1 -1
  102. package/components/Menu/Menu.js +47 -161
  103. package/components/Menu/NestedMenu.js +47 -173
  104. package/components/Menu/index.js +2 -72
  105. package/components/Menu/types.js +1 -1
  106. package/components/Modal/Modal.js +70 -52
  107. package/components/Modal/ModalConfirmation.js +30 -137
  108. package/components/Modal/ModalContent.js +10 -52
  109. package/components/Modal/index.js +2 -53
  110. package/components/Modal/types.js +1 -1
  111. package/components/More/More.js +19 -85
  112. package/components/More/index.js +1 -53
  113. package/components/More/types.js +1 -1
  114. package/components/Pagination/Pagination.js +15 -56
  115. package/components/Pagination/consts.js +5 -7
  116. package/components/Pagination/index.js +1 -10
  117. package/components/Pagination/types.js +1 -1
  118. package/components/Popover/Popover.js +41 -52
  119. package/components/Popover/PopoverDesktop.js +16 -69
  120. package/components/Popover/PopoverMobile.js +8 -52
  121. package/components/Popover/index.js +1 -52
  122. package/components/Popover/types.js +1 -1
  123. package/components/Progress/Progress.js +21 -56
  124. package/components/Progress/index.js +1 -2
  125. package/components/Progress/types.js +1 -1
  126. package/components/ProgressStep/ProgressStep.js +9 -38
  127. package/components/ProgressStep/Step.js +51 -98
  128. package/components/ProgressStep/consts.js +7 -9
  129. package/components/ProgressStep/index.js +1 -12
  130. package/components/ProgressStep/types.js +5 -7
  131. package/components/Radio/Radio.js +19 -56
  132. package/components/Radio/RadioGroup.js +21 -111
  133. package/components/Radio/index.js +2 -55
  134. package/components/Radio/types.js +1 -1
  135. package/components/SVGIcons/IconAdd.js +7 -28
  136. package/components/SVGIcons/IconAddCircle.js +7 -31
  137. package/components/SVGIcons/IconAddCircleFilled.js +7 -31
  138. package/components/SVGIcons/IconAddFilled.js +7 -28
  139. package/components/SVGIcons/IconAlert.js +7 -31
  140. package/components/SVGIcons/IconAlertBadge.js +7 -31
  141. package/components/SVGIcons/IconAlertBadgeFilled.js +7 -31
  142. package/components/SVGIcons/IconAlertFilled.js +7 -31
  143. package/components/SVGIcons/IconAm.js +6 -57
  144. package/components/SVGIcons/IconAmd.js +7 -28
  145. package/components/SVGIcons/IconAmdFilled.js +7 -28
  146. package/components/SVGIcons/IconApple.js +7 -31
  147. package/components/SVGIcons/IconArrowDown.js +7 -31
  148. package/components/SVGIcons/IconArrowDownFilled.js +7 -31
  149. package/components/SVGIcons/IconArrowDownLeft.js +7 -31
  150. package/components/SVGIcons/IconArrowDownLeftFilled.js +7 -31
  151. package/components/SVGIcons/IconArrowDownload.js +7 -31
  152. package/components/SVGIcons/IconArrowDownloadFilled.js +7 -31
  153. package/components/SVGIcons/IconArrowEnter.js +7 -28
  154. package/components/SVGIcons/IconArrowEnterFilled.js +7 -28
  155. package/components/SVGIcons/IconArrowExit.js +7 -28
  156. package/components/SVGIcons/IconArrowExitFilled.js +7 -28
  157. package/components/SVGIcons/IconArrowExportLeftToRight.js +7 -31
  158. package/components/SVGIcons/IconArrowExportLeftToRightFilled.js +7 -31
  159. package/components/SVGIcons/IconArrowExportRightToLeft.js +7 -31
  160. package/components/SVGIcons/IconArrowExportRightToLeftFilled.js +7 -31
  161. package/components/SVGIcons/IconArrowExportUp.js +7 -31
  162. package/components/SVGIcons/IconArrowExportUpFilled.js +7 -31
  163. package/components/SVGIcons/IconArrowImport.js +7 -31
  164. package/components/SVGIcons/IconArrowImportFilled.js +7 -31
  165. package/components/SVGIcons/IconArrowLeft.js +7 -31
  166. package/components/SVGIcons/IconArrowLeftFilled.js +7 -31
  167. package/components/SVGIcons/IconArrowRepeatAll.js +7 -31
  168. package/components/SVGIcons/IconArrowRepeatAllFilled.js +7 -31
  169. package/components/SVGIcons/IconArrowReset.js +7 -31
  170. package/components/SVGIcons/IconArrowResetFilled.js +7 -31
  171. package/components/SVGIcons/IconArrowRight.js +7 -31
  172. package/components/SVGIcons/IconArrowRightFilled.js +7 -31
  173. package/components/SVGIcons/IconArrowSort.js +7 -28
  174. package/components/SVGIcons/IconArrowSortFilled.js +7 -28
  175. package/components/SVGIcons/IconArrowSync.js +7 -28
  176. package/components/SVGIcons/IconArrowSyncFilled.js +7 -28
  177. package/components/SVGIcons/IconArrowUp.js +7 -31
  178. package/components/SVGIcons/IconArrowUpFilled.js +7 -31
  179. package/components/SVGIcons/IconArrowUpLeft.js +7 -31
  180. package/components/SVGIcons/IconArrowUpLeftFilled.js +7 -31
  181. package/components/SVGIcons/IconArrowUpRight.js +7 -31
  182. package/components/SVGIcons/IconArrowUpRightFilled.js +7 -31
  183. package/components/SVGIcons/IconAttach.js +7 -31
  184. package/components/SVGIcons/IconAttachFilled.js +7 -31
  185. package/components/SVGIcons/IconBeach.js +7 -28
  186. package/components/SVGIcons/IconBeachFilled.js +7 -28
  187. package/components/SVGIcons/IconBook.js +7 -31
  188. package/components/SVGIcons/IconBookFilled.js +7 -31
  189. package/components/SVGIcons/IconBookmark.js +7 -31
  190. package/components/SVGIcons/IconBookmarkFilled.js +7 -31
  191. package/components/SVGIcons/IconBriefcase.js +7 -31
  192. package/components/SVGIcons/IconBriefcaseFilled.js +7 -31
  193. package/components/SVGIcons/IconBuilding.js +7 -54
  194. package/components/SVGIcons/IconBuildingBank.js +7 -28
  195. package/components/SVGIcons/IconBuildingBankFilled.js +7 -28
  196. package/components/SVGIcons/IconBuildingFilled.js +7 -31
  197. package/components/SVGIcons/IconBulletListAdd.js +7 -31
  198. package/components/SVGIcons/IconBulletListAddFilled.js +7 -31
  199. package/components/SVGIcons/IconCalculator.js +7 -31
  200. package/components/SVGIcons/IconCalculatorFilled.js +7 -31
  201. package/components/SVGIcons/IconCalendarClock.js +7 -28
  202. package/components/SVGIcons/IconCalendarClockFilled.js +7 -28
  203. package/components/SVGIcons/IconCalendarDay.js +7 -31
  204. package/components/SVGIcons/IconCalendarDayFilled.js +7 -31
  205. package/components/SVGIcons/IconCalendarEmpty.js +7 -28
  206. package/components/SVGIcons/IconCalendarLeft.js +7 -28
  207. package/components/SVGIcons/IconCalendarLeftFilled.js +7 -28
  208. package/components/SVGIcons/IconCalendarRight.js +7 -28
  209. package/components/SVGIcons/IconCalendarRightFilled.js +7 -28
  210. package/components/SVGIcons/IconCall.js +7 -31
  211. package/components/SVGIcons/IconCallFilled.js +7 -31
  212. package/components/SVGIcons/IconCard.js +7 -28
  213. package/components/SVGIcons/IconCardFilled.js +7 -28
  214. package/components/SVGIcons/IconCaretDown.js +7 -28
  215. package/components/SVGIcons/IconCaretDownFilled.js +7 -28
  216. package/components/SVGIcons/IconCaretDownRight.js +7 -28
  217. package/components/SVGIcons/IconCaretDownRightFilled.js +7 -28
  218. package/components/SVGIcons/IconCaretLeft.js +7 -28
  219. package/components/SVGIcons/IconCaretLeftFilled.js +7 -28
  220. package/components/SVGIcons/IconCaretRight.js +7 -28
  221. package/components/SVGIcons/IconCaretRightFilled.js +7 -28
  222. package/components/SVGIcons/IconCaretUp.js +7 -28
  223. package/components/SVGIcons/IconCaretUpFilled.js +7 -28
  224. package/components/SVGIcons/IconChat.js +7 -28
  225. package/components/SVGIcons/IconChatFilled.js +7 -28
  226. package/components/SVGIcons/IconChatMultiple.js +7 -28
  227. package/components/SVGIcons/IconChatMultipleFilled.js +7 -28
  228. package/components/SVGIcons/IconCheckboxArrowRight.js +7 -31
  229. package/components/SVGIcons/IconCheckboxArrowRightFilled.js +7 -31
  230. package/components/SVGIcons/IconCheckmark.js +7 -28
  231. package/components/SVGIcons/IconCheckmarkCircle.js +7 -28
  232. package/components/SVGIcons/IconCheckmarkCircleFilled.js +7 -28
  233. package/components/SVGIcons/IconCheckmarkFilled.js +7 -28
  234. package/components/SVGIcons/IconChevronDoubleLeft.js +7 -28
  235. package/components/SVGIcons/IconChevronDoubleRight.js +7 -28
  236. package/components/SVGIcons/IconChevronDown.js +7 -28
  237. package/components/SVGIcons/IconChevronDownFilled.js +7 -28
  238. package/components/SVGIcons/IconChevronLeft.js +7 -28
  239. package/components/SVGIcons/IconChevronLeftFilled.js +7 -28
  240. package/components/SVGIcons/IconChevronRight.js +7 -28
  241. package/components/SVGIcons/IconChevronRightFilled.js +7 -28
  242. package/components/SVGIcons/IconChevronUp.js +7 -28
  243. package/components/SVGIcons/IconChevronUpDown.js +7 -31
  244. package/components/SVGIcons/IconChevronUpDownFilled.js +7 -31
  245. package/components/SVGIcons/IconChevronUpFilled.js +7 -28
  246. package/components/SVGIcons/IconClipboardDay.js +7 -28
  247. package/components/SVGIcons/IconClock.js +7 -31
  248. package/components/SVGIcons/IconClockDismiss.js +7 -28
  249. package/components/SVGIcons/IconClockDismissFilled.js +7 -28
  250. package/components/SVGIcons/IconClockFilled.js +7 -31
  251. package/components/SVGIcons/IconComment.js +7 -31
  252. package/components/SVGIcons/IconCommentFilled.js +7 -31
  253. package/components/SVGIcons/IconContractCard.js +7 -28
  254. package/components/SVGIcons/IconContractCardFilled.js +7 -28
  255. package/components/SVGIcons/IconCopy.js +7 -28
  256. package/components/SVGIcons/IconCopyFilled.js +7 -28
  257. package/components/SVGIcons/IconCubeTree.js +7 -28
  258. package/components/SVGIcons/IconCubeTreeFilled.js +7 -31
  259. package/components/SVGIcons/IconDatabase.js +7 -31
  260. package/components/SVGIcons/IconDatabaseFilled.js +7 -31
  261. package/components/SVGIcons/IconDelete.js +7 -28
  262. package/components/SVGIcons/IconDeleteFilled.js +7 -28
  263. package/components/SVGIcons/IconDeviceMeetingRoom.js +7 -28
  264. package/components/SVGIcons/IconDeviceMeetingRoomFilled.js +7 -28
  265. package/components/SVGIcons/IconDismiss.js +7 -28
  266. package/components/SVGIcons/IconDismissCircle.js +7 -31
  267. package/components/SVGIcons/IconDismissCircleFilled.js +7 -31
  268. package/components/SVGIcons/IconDismissFilled.js +7 -28
  269. package/components/SVGIcons/IconDocument.js +7 -28
  270. package/components/SVGIcons/IconDocumentBulletList.js +7 -31
  271. package/components/SVGIcons/IconDocumentBulletListFilled.js +7 -31
  272. package/components/SVGIcons/IconDocumentEdit.js +7 -28
  273. package/components/SVGIcons/IconDocumentEditFilled.js +7 -28
  274. package/components/SVGIcons/IconDocumentFilled.js +7 -28
  275. package/components/SVGIcons/IconDocumentPerson.js +7 -28
  276. package/components/SVGIcons/IconEdit.js +7 -28
  277. package/components/SVGIcons/IconEditFilled.js +7 -28
  278. package/components/SVGIcons/IconErrorCircle.js +7 -28
  279. package/components/SVGIcons/IconErrorCircleFilled.js +7 -28
  280. package/components/SVGIcons/IconEur.js +7 -28
  281. package/components/SVGIcons/IconEurFilled.js +7 -28
  282. package/components/SVGIcons/IconExpandUpLeft.js +7 -31
  283. package/components/SVGIcons/IconExpandUpLeftFilled.js +7 -31
  284. package/components/SVGIcons/IconExpandUpRight.js +7 -31
  285. package/components/SVGIcons/IconExpandUpRightFilled.js +7 -31
  286. package/components/SVGIcons/IconEyeOff.js +7 -31
  287. package/components/SVGIcons/IconEyeOffFilled.js +7 -31
  288. package/components/SVGIcons/IconEyeOn.js +7 -31
  289. package/components/SVGIcons/IconEyeOnFilled.js +7 -31
  290. package/components/SVGIcons/IconFacebook.js +7 -38
  291. package/components/SVGIcons/IconFilter.js +7 -28
  292. package/components/SVGIcons/IconFilterFilled.js +7 -28
  293. package/components/SVGIcons/IconFlag.js +7 -31
  294. package/components/SVGIcons/IconFlagFilled.js +7 -31
  295. package/components/SVGIcons/IconFolderLink.js +7 -28
  296. package/components/SVGIcons/IconFolderLinkFilled.js +7 -28
  297. package/components/SVGIcons/IconFood.js +7 -28
  298. package/components/SVGIcons/IconFoodFilled.js +7 -28
  299. package/components/SVGIcons/IconGb.js +6 -71
  300. package/components/SVGIcons/IconGlobe.js +7 -28
  301. package/components/SVGIcons/IconGlobeFilled.js +7 -28
  302. package/components/SVGIcons/IconGoogle.js +7 -40
  303. package/components/SVGIcons/IconHandOpenHeart.js +7 -31
  304. package/components/SVGIcons/IconHandOpenHeartFilled.js +7 -31
  305. package/components/SVGIcons/IconHeart.js +7 -31
  306. package/components/SVGIcons/IconHeartFilled.js +7 -31
  307. package/components/SVGIcons/IconHistory.js +7 -31
  308. package/components/SVGIcons/IconHistoryFilled.js +7 -31
  309. package/components/SVGIcons/IconHome.js +7 -31
  310. package/components/SVGIcons/IconHomeFilled.js +7 -31
  311. package/components/SVGIcons/IconImage.js +7 -31
  312. package/components/SVGIcons/IconImageFilled.js +7 -31
  313. package/components/SVGIcons/IconInfo.js +7 -28
  314. package/components/SVGIcons/IconInfoFilled.js +7 -28
  315. package/components/SVGIcons/IconInstagram.js +7 -39
  316. package/components/SVGIcons/IconKeyReset.js +7 -31
  317. package/components/SVGIcons/IconKeyResetFilled.js +7 -31
  318. package/components/SVGIcons/IconLink.js +7 -31
  319. package/components/SVGIcons/IconLinkFilled.js +7 -31
  320. package/components/SVGIcons/IconLinkedin.js +7 -31
  321. package/components/SVGIcons/IconList.js +7 -28
  322. package/components/SVGIcons/IconListFilled.js +7 -31
  323. package/components/SVGIcons/IconLocation.js +7 -31
  324. package/components/SVGIcons/IconLocationFilled.js +7 -31
  325. package/components/SVGIcons/IconLockClosed.js +7 -31
  326. package/components/SVGIcons/IconLockClosedFilled.js +7 -31
  327. package/components/SVGIcons/IconLockOpen.js +7 -31
  328. package/components/SVGIcons/IconLockOpenFilled.js +7 -31
  329. package/components/SVGIcons/IconMail.js +7 -31
  330. package/components/SVGIcons/IconMailAdd.js +7 -31
  331. package/components/SVGIcons/IconMailAddFilled.js +7 -31
  332. package/components/SVGIcons/IconMailArrowForward.js +7 -31
  333. package/components/SVGIcons/IconMailArrowForwardFilled.js +7 -31
  334. package/components/SVGIcons/IconMailFilled.js +7 -31
  335. package/components/SVGIcons/IconMailLink.js +7 -31
  336. package/components/SVGIcons/IconMailLinkFilled.js +7 -31
  337. package/components/SVGIcons/IconMedium.js +7 -31
  338. package/components/SVGIcons/IconMore.js +7 -31
  339. package/components/SVGIcons/IconMoreFilled.js +7 -31
  340. package/components/SVGIcons/IconMoreVertical.js +7 -31
  341. package/components/SVGIcons/IconMoreVerticalFilled.js +7 -31
  342. package/components/SVGIcons/IconNavigation.js +7 -31
  343. package/components/SVGIcons/IconNavigationFilled.js +7 -31
  344. package/components/SVGIcons/IconNotebook.js +7 -31
  345. package/components/SVGIcons/IconNotebookAdd.js +7 -47
  346. package/components/SVGIcons/IconNotebookAddFilled.js +7 -44
  347. package/components/SVGIcons/IconNotebookFilled.js +7 -31
  348. package/components/SVGIcons/IconOnlyEmployee.js +7 -28
  349. package/components/SVGIcons/IconOpen.js +7 -31
  350. package/components/SVGIcons/IconOpenFilled.js +7 -31
  351. package/components/SVGIcons/IconPatient.js +7 -28
  352. package/components/SVGIcons/IconPatientFilled.js +7 -28
  353. package/components/SVGIcons/IconPeople.js +7 -28
  354. package/components/SVGIcons/IconPeopleAdd.js +7 -31
  355. package/components/SVGIcons/IconPeopleAddFilled.js +7 -31
  356. package/components/SVGIcons/IconPeopleFilled.js +7 -31
  357. package/components/SVGIcons/IconPercent.js +7 -33
  358. package/components/SVGIcons/IconPerson.js +7 -31
  359. package/components/SVGIcons/IconPersonAccount.js +7 -28
  360. package/components/SVGIcons/IconPersonAccountFilled.js +7 -28
  361. package/components/SVGIcons/IconPersonAdd.js +7 -31
  362. package/components/SVGIcons/IconPersonAddFilled.js +7 -31
  363. package/components/SVGIcons/IconPersonArrowLeft.js +7 -28
  364. package/components/SVGIcons/IconPersonArrowLeftFilled.js +7 -28
  365. package/components/SVGIcons/IconPersonArrowRight.js +7 -28
  366. package/components/SVGIcons/IconPersonArrowRightFilled.js +7 -28
  367. package/components/SVGIcons/IconPersonBoard.js +7 -28
  368. package/components/SVGIcons/IconPersonFilled.js +7 -31
  369. package/components/SVGIcons/IconPersonMinus.js +7 -28
  370. package/components/SVGIcons/IconPersonStar.js +7 -31
  371. package/components/SVGIcons/IconPersonStarFilled.js +7 -31
  372. package/components/SVGIcons/IconPersonSubtract.js +7 -31
  373. package/components/SVGIcons/IconPersonSubtractFilled.js +7 -31
  374. package/components/SVGIcons/IconPhone.js +7 -31
  375. package/components/SVGIcons/IconPhoneFilled.js +7 -31
  376. package/components/SVGIcons/IconPlugConnected.js +7 -28
  377. package/components/SVGIcons/IconPos.js +7 -33
  378. package/components/SVGIcons/IconPosFilled.js +7 -33
  379. package/components/SVGIcons/IconProhibited.js +7 -31
  380. package/components/SVGIcons/IconProhibitedFilled.js +7 -31
  381. package/components/SVGIcons/IconProjectProduct.js +7 -28
  382. package/components/SVGIcons/IconQuestion.js +7 -31
  383. package/components/SVGIcons/IconQuestionFilled.js +7 -31
  384. package/components/SVGIcons/IconRedo.js +7 -31
  385. package/components/SVGIcons/IconRedoFilled.js +7 -31
  386. package/components/SVGIcons/IconRu.js +6 -60
  387. package/components/SVGIcons/IconRub.js +7 -28
  388. package/components/SVGIcons/IconRubFilled.js +7 -28
  389. package/components/SVGIcons/IconSave.js +7 -31
  390. package/components/SVGIcons/IconSaveFilled.js +7 -31
  391. package/components/SVGIcons/IconSavings.js +7 -31
  392. package/components/SVGIcons/IconSavingsFilled.js +7 -31
  393. package/components/SVGIcons/IconSearch.js +7 -31
  394. package/components/SVGIcons/IconSearchFilled.js +7 -31
  395. package/components/SVGIcons/IconSelectAllOff.js +7 -31
  396. package/components/SVGIcons/IconSelectAllOffFilled.js +7 -31
  397. package/components/SVGIcons/IconSelectAllOn.js +7 -31
  398. package/components/SVGIcons/IconSelectAllOnFilled.js +7 -31
  399. package/components/SVGIcons/IconSend.js +7 -31
  400. package/components/SVGIcons/IconSendFilled.js +7 -31
  401. package/components/SVGIcons/IconSettings.js +7 -28
  402. package/components/SVGIcons/IconSettingsFilled.js +7 -31
  403. package/components/SVGIcons/IconShare.js +7 -31
  404. package/components/SVGIcons/IconShareAndroid.js +7 -31
  405. package/components/SVGIcons/IconShareAndroidFilled.js +7 -31
  406. package/components/SVGIcons/IconShareFilled.js +7 -31
  407. package/components/SVGIcons/IconSignOut.js +7 -31
  408. package/components/SVGIcons/IconSignOutFilled.js +7 -31
  409. package/components/SVGIcons/IconSpinner.js +7 -31
  410. package/components/SVGIcons/IconSpinnerFilled.js +7 -31
  411. package/components/SVGIcons/IconStatus.js +7 -31
  412. package/components/SVGIcons/IconStatusFilled.js +7 -31
  413. package/components/SVGIcons/IconSubtract.js +7 -31
  414. package/components/SVGIcons/IconSubtractCircle.js +7 -31
  415. package/components/SVGIcons/IconSubtractCircleFilled.js +7 -31
  416. package/components/SVGIcons/IconSubtractFilled.js +7 -31
  417. package/components/SVGIcons/IconTableCellEdit.js +7 -35
  418. package/components/SVGIcons/IconTableCellEditFilled.js +7 -41
  419. package/components/SVGIcons/IconTelegram.js +7 -40
  420. package/components/SVGIcons/IconTimer.js +7 -31
  421. package/components/SVGIcons/IconTimerFilled.js +7 -31
  422. package/components/SVGIcons/IconTwitter.js +7 -31
  423. package/components/SVGIcons/IconUndo.js +7 -31
  424. package/components/SVGIcons/IconUndoFilled.js +7 -31
  425. package/components/SVGIcons/IconUnitsEmployee.js +7 -28
  426. package/components/SVGIcons/IconUpload.js +7 -28
  427. package/components/SVGIcons/IconUsd.js +7 -28
  428. package/components/SVGIcons/IconUsdFilled.js +7 -28
  429. package/components/SVGIcons/IconUserMinus.js +7 -31
  430. package/components/SVGIcons/IconVideo.js +7 -28
  431. package/components/SVGIcons/IconVideoFilled.js +7 -28
  432. package/components/SVGIcons/IconWallet.js +7 -31
  433. package/components/SVGIcons/IconWalletFilled.js +7 -31
  434. package/components/SVGIcons/IconWarning.js +7 -28
  435. package/components/SVGIcons/IconWarningFilled.js +7 -28
  436. package/components/SVGIcons/IconYoutube.js +7 -31
  437. package/components/SVGIcons/index.js +302 -305
  438. package/components/SVGIcons/types.js +1 -1
  439. package/components/Select/ButtonSelect/ButtonSelect.js +42 -195
  440. package/components/Select/FilterSelect/FilterDropdown.js +14 -95
  441. package/components/Select/FilterSelect/FilterGroupDropdown.js +18 -82
  442. package/components/Select/FilterSelect/FilterSelect.js +69 -199
  443. package/components/Select/MultiSelect/DesktopWrapper.js +18 -55
  444. package/components/Select/MultiSelect/MobileWrapper.js +12 -77
  445. package/components/Select/MultiSelect/MultiBase/MultiBase.js +60 -211
  446. package/components/Select/MultiSelect/MultiSelect.js +66 -244
  447. package/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.js +94 -264
  448. package/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.js +76 -251
  449. package/components/Select/MultiSelect/OptionsWrapper.js +64 -175
  450. package/components/Select/NestedSelect/NestedSelect.js +55 -197
  451. package/components/Select/ProfileDropdown/index.js +12 -82
  452. package/components/Select/Select/Select.js +85 -254
  453. package/components/Select/Select/SelectDesktop/index.js +66 -219
  454. package/components/Select/Select/SelectMobile/MobileTopContent.js +17 -90
  455. package/components/Select/Select/SelectMobile/index.js +49 -194
  456. package/components/Select/Select/helpers.js +8 -9
  457. package/components/Select/SharedComponents/Actions.js +13 -115
  458. package/components/Select/SharedComponents/ButtonSelectWrapper/Button/Button.js +8 -43
  459. package/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.js +27 -130
  460. package/components/Select/SharedComponents/ContentTop.js +70 -177
  461. package/components/Select/SharedComponents/Footer.js +10 -97
  462. package/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.js +49 -161
  463. package/components/Select/SharedComponents/Loading.js +5 -16
  464. package/components/Select/SharedComponents/index.js +6 -92
  465. package/components/Select/constants.js +7 -9
  466. package/components/Select/index.js +6 -114
  467. package/components/Select/localization.js +28 -30
  468. package/components/Select/types.js +1 -1
  469. package/components/SideSheet/Footer/Footer.js +13 -99
  470. package/components/SideSheet/SideSheet.js +55 -208
  471. package/components/SideSheet/index.js +1 -56
  472. package/components/SideSheet/types.js +1 -1
  473. package/components/Snackbar/Snackbar.js +29 -123
  474. package/components/Snackbar/consts.js +11 -13
  475. package/components/Snackbar/index.js +1 -54
  476. package/components/Snackbar/types.js +1 -1
  477. package/components/Status/Status.js +16 -51
  478. package/components/Status/index.js +1 -8
  479. package/components/Status/types.js +1 -1
  480. package/components/Stepper/Stepper.js +28 -44
  481. package/components/Stepper/index.js +1 -3
  482. package/components/Stepper/types.js +1 -1
  483. package/components/Switcher/Switcher.js +17 -114
  484. package/components/Switcher/index.js +1 -55
  485. package/components/Switcher/types.js +1 -1
  486. package/components/Tab/Tab.js +18 -35
  487. package/components/Tab/TabItem.js +11 -52
  488. package/components/Tab/index.js +1 -11
  489. package/components/Tab/types.js +1 -1
  490. package/components/Table/Header.js +19 -121
  491. package/components/Table/IndeterminateCheckbox.js +13 -76
  492. package/components/Table/Row.js +16 -92
  493. package/components/Table/Table.js +60 -160
  494. package/components/Table/index.js +1 -61
  495. package/components/Table/types.js +1 -1
  496. package/components/Table/utils.js +17 -76
  497. package/components/TableV2/AdvancedPagination.js +61 -270
  498. package/components/TableV2/ColumnHeader.js +29 -61
  499. package/components/TableV2/ColumnSettings.js +31 -162
  500. package/components/TableV2/IndeterminateCheckbox.js +13 -84
  501. package/components/TableV2/Table.js +114 -310
  502. package/components/TableV2/constants/index.js +26 -22
  503. package/components/TableV2/hooks/useTableColumnSettings.js +16 -19
  504. package/components/TableV2/hooks/useTableControl.js +176 -297
  505. package/components/TableV2/index.js +3 -131
  506. package/components/TableV2/loadTableSettings.js +8 -17
  507. package/components/TableV2/types.js +1 -1
  508. package/components/Text/Text.js +5 -34
  509. package/components/Text/index.js +1 -5
  510. package/components/Text/types.js +1 -1
  511. package/components/Textarea/Textarea.js +36 -140
  512. package/components/Textarea/index.js +1 -56
  513. package/components/Textarea/types.js +1 -1
  514. package/components/Tooltip/Tooltip.js +49 -99
  515. package/components/Tooltip/index.js +1 -18
  516. package/components/Tooltip/types.js +11 -13
  517. package/consts/index.js +86 -65
  518. package/context/FormContextProvider.js +4 -10
  519. package/context/index.js +2 -5
  520. package/context/types.js +6 -10
  521. package/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.js +4 -12
  522. package/helperComponents/AnimatePresenceWrapper/index.js +1 -3
  523. package/helperComponents/CodeBlock/CodeBlock.js +4 -178
  524. package/helperComponents/CodeBlock/index.js +1 -3
  525. package/helperComponents/ErrorMessage/ErrorMessage.js +7 -26
  526. package/helperComponents/ErrorMessage/index.js +1 -8
  527. package/helperComponents/ErrorMessage/types.js +1 -1
  528. package/helperComponents/GoToWebPage/GoToWebPage.js +5 -66
  529. package/helperComponents/IconDynamicComponent/IconDynamicComponent.js +11 -25
  530. package/helperComponents/IconDynamicComponent/constants.js +10 -31
  531. package/helperComponents/IconDynamicComponent/index.js +1 -3
  532. package/helperComponents/Label/Label.js +8 -28
  533. package/helperComponents/Label/index.js +1 -6
  534. package/helperComponents/Label/types.js +1 -1
  535. package/helperComponents/Loader/Loader.js +4 -14
  536. package/helperComponents/Loader/index.js +1 -2
  537. package/helperComponents/Loader/types.js +1 -1
  538. package/helperComponents/OptionItem/OptionItem.js +27 -148
  539. package/helperComponents/OptionItem/index.js +1 -64
  540. package/helperComponents/OptionItem/types.js +1 -1
  541. package/helperComponents/index.js +6 -65
  542. package/helpers/check-authorization.js +57 -111
  543. package/helpers/download-file.js +7 -9
  544. package/helpers/format-date.js +14 -42
  545. package/helpers/get-module-prefix.js +3 -5
  546. package/helpers/index.js +7 -59
  547. package/helpers/isDeepEqual.js +11 -17
  548. package/helpers/locale.js +10 -15
  549. package/helpers/storage.js +17 -18
  550. package/hooks/index.js +12 -21
  551. package/hooks/useChangePositionsOnScroll.js +28 -32
  552. package/hooks/useDispatchEventOnScroll.js +8 -13
  553. package/hooks/useFormContext.js +3 -8
  554. package/hooks/useFormProps.js +3 -8
  555. package/hooks/useGetElemPositions.js +14 -16
  556. package/hooks/useGetElemSizes.js +11 -13
  557. package/hooks/useGetHasBottomSpace.js +13 -24
  558. package/hooks/useGetIsMobile.js +33 -45
  559. package/hooks/useGetTooltipPosition.js +66 -82
  560. package/hooks/useGetTooltipStyles.js +45 -87
  561. package/hooks/useHideBodyScroll.js +25 -34
  562. package/hooks/useHideOnScroll.js +19 -24
  563. package/hooks/useOnOutsideClick.js +33 -46
  564. package/hooks/useScreenSize.js +24 -34
  565. package/index.d.ts +1 -0
  566. package/index.js +47 -468
  567. package/package.json +1 -1
  568. package/type/file-upload.js +6 -8
  569. package/type/index.js +4 -4
  570. package/type/locale.js +12 -14
  571. package/type/notification.js +7 -9
  572. package/type/status-code.js +7 -9
  573. package/utils/helpers.js +63 -77
  574. /package/{Alert-BslI0aA0.js → Alert-CNizbUJ6.js} +0 -0
@@ -1,29 +1,8 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
1
+ import { jsx as _jsx } from "react/jsx-runtime";
3
2
  import classNames from 'classnames';
4
-
5
- var IconFoodFilled = function IconFoodFilled(_ref) {
6
- var size = _ref.size,
7
- type = _ref.type,
8
- _ref$className = _ref.className,
9
- className = _ref$className === void 0 ? '' : _ref$className,
10
- onClick = _ref.onClick,
11
- refHandler = _ref.refHandler,
12
- id = _ref.id,
13
- dataId = _ref.dataId;
14
- return /*#__PURE__*/React.createElement("svg", {
15
- xmlns: "http://www.w3.org/2000/svg",
16
- className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
- viewBox: "0 0 24 24",
18
- fill: "none",
19
- onClick: onClick,
20
- ref: refHandler,
21
- id: id,
22
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
- }, /*#__PURE__*/React.createElement("path", {
24
- d: "M18 3C18.5128 3 18.9355 3.38604 18.9933 3.88338L19 4V20C19 20.5523 18.5523 21 18 21C17.4872 21 17.0645 20.614 17.0067 20.1166L17 20V15H16C15.4872 15 15.0645 14.614 15.0067 14.1166L15 14V8C15 5.79086 16.5 3 18 3ZM12 3C12.5128 3 12.9355 3.38604 12.9933 3.88338L13 4V9C13 10.8636 11.7256 12.4295 10.0008 12.8738L10 20C10 20.5523 9.55228 21 9 21C8.48716 21 8.06449 20.614 8.00673 20.1166L8 20L8.00024 12.874C6.33879 12.4465 5.09505 10.9784 5.0052 9.20584L5 9V4C5 3.44772 5.44772 3 6 3C6.51284 3 6.93551 3.38604 6.99327 3.88338L7 4V9C7 9.74025 7.40217 10.3866 7.99993 10.7324L8 4C8 3.44772 8.44772 3 9 3C9.51284 3 9.93551 3.38604 9.99327 3.88338L10 4L10.0011 10.7318C10.5523 10.4125 10.937 9.83745 10.993 9.16897L11 9V4C11 3.44772 11.4477 3 12 3Z",
25
- fill: "#0E121B"
26
- }));
27
- };
28
-
29
- export { IconFoodFilled, IconFoodFilled as default };
3
+ export const IconFoodFilled = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M18 3C18.5128 3 18.9355 3.38604 18.9933 3.88338L19 4V20C19 20.5523 18.5523 21 18 21C17.4872 21 17.0645 20.614 17.0067 20.1166L17 20V15H16C15.4872 15 15.0645 14.614 15.0067 14.1166L15 14V8C15 5.79086 16.5 3 18 3ZM12 3C12.5128 3 12.9355 3.38604 12.9933 3.88338L13 4V9C13 10.8636 11.7256 12.4295 10.0008 12.8738L10 20C10 20.5523 9.55228 21 9 21C8.48716 21 8.06449 20.614 8.00673 20.1166L8 20L8.00024 12.874C6.33879 12.4465 5.09505 10.9784 5.0052 9.20584L5 9V4C5 3.44772 5.44772 3 6 3C6.51284 3 6.93551 3.38604 6.99327 3.88338L7 4V9C7 9.74025 7.40217 10.3866 7.99993 10.7324L8 4C8 3.44772 8.44772 3 9 3C9.51284 3 9.93551 3.38604 9.99327 3.88338L10 4L10.0011 10.7318C10.5523 10.4125 10.937 9.83745 10.993 9.16897L11 9V4C11 3.44772 11.4477 3 12 3Z", fill: "#0E121B" }) }));
8
+ export default IconFoodFilled;
@@ -1,72 +1,7 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
2
  import classNames from 'classnames';
4
-
5
- var IconGb = function IconGb(_ref) {
6
- var size = _ref.size,
7
- _ref$className = _ref.className,
8
- className = _ref$className === void 0 ? '' : _ref$className,
9
- onClick = _ref.onClick,
10
- refHandler = _ref.refHandler,
11
- id = _ref.id,
12
- dataId = _ref.dataId;
13
- return /*#__PURE__*/React.createElement("svg", {
14
- xmlns: "http://www.w3.org/2000/svg",
15
- className: classNames('svg-icon', _defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), className, className)),
16
- viewBox: "0 0 24 24",
17
- fill: "none",
18
- onClick: onClick,
19
- ref: refHandler,
20
- id: id,
21
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
22
- }, /*#__PURE__*/React.createElement("rect", {
23
- y: "3.42999",
24
- width: "24",
25
- height: "17.1429",
26
- rx: "2",
27
- fill: "white"
28
- }), /*#__PURE__*/React.createElement("mask", {
29
- id: "mask0_1993_2165",
30
- style: {
31
- maskType: 'luminance'
32
- },
33
- maskUnits: "userSpaceOnUse",
34
- x: "0",
35
- y: "3",
36
- width: "24",
37
- height: "18"
38
- }, /*#__PURE__*/React.createElement("rect", {
39
- y: "3.42999",
40
- width: "24",
41
- height: "17.1429",
42
- rx: "2",
43
- fill: "white"
44
- })), /*#__PURE__*/React.createElement("g", {
45
- mask: "url(#mask0_1993_2165)"
46
- }, /*#__PURE__*/React.createElement("rect", {
47
- y: "3.42999",
48
- width: "24",
49
- height: "17.1429",
50
- fill: "#0A17A7"
51
- }), /*#__PURE__*/React.createElement("path", {
52
- d: "M-1.09929 1.78735L9.14287 8.69577V2.28718H14.8572V8.69573L25.0992 1.78736L26.3774 3.6823L18.2796 9.14432H24V14.8586H18.2796L26.3774 20.3206L25.0992 22.2155L14.8572 15.3072V21.7157H9.14287V15.3071L-1.09928 22.2156L-2.37744 20.3206L5.72032 14.8586H7.62939e-06V9.14432H5.72034L-2.37744 3.6823L-1.09929 1.78735Z",
53
- fill: "white"
54
- }), /*#__PURE__*/React.createElement("path", {
55
- d: "M27.1356 1.53249C27.2368 1.68629 27.1942 1.89299 27.0404 1.99417L16.1843 9.13605C16.0305 9.23723 15.8238 9.19457 15.7227 9.04078C15.6215 8.88698 15.6641 8.68028 15.8179 8.5791L26.674 1.43722C26.8277 1.33604 27.0344 1.3787 27.1356 1.53249Z",
56
- fill: "#DB1F35"
57
- }), /*#__PURE__*/React.createElement("path", {
58
- d: "M27.1621 21.9165C27.265 21.7639 27.2247 21.5567 27.072 21.4538L17.3401 14.8943C17.1875 14.7914 16.9803 14.8317 16.8774 14.9844C16.7745 15.137 16.8149 15.3442 16.9675 15.4471L26.6994 22.0066C26.852 22.1095 27.0592 22.0692 27.1621 21.9165Z",
59
- fill: "#DB1F35"
60
- }), /*#__PURE__*/React.createElement("path", {
61
- d: "M-3.56564 1.81145C-3.46276 1.65878 -3.25559 1.61843 -3.10293 1.72132L7.04823 8.56255C7.20089 8.66544 7.24124 8.8726 7.13836 9.02526C7.03547 9.17792 6.82831 9.21828 6.67565 9.11539L-3.47551 2.27415C-3.62817 2.17127 -3.66853 1.96411 -3.56564 1.81145Z",
62
- fill: "#DB1F35"
63
- }), /*#__PURE__*/React.createElement("path", {
64
- d: "M-3.56702 22.7375C-3.46528 22.8909 -3.25842 22.9328 -3.105 22.831L8.14717 15.3691C8.30059 15.2674 8.34249 15.0605 8.24074 14.9071C8.139 14.7537 7.93214 14.7118 7.77872 14.8135L-3.47344 22.2754C-3.62687 22.3772 -3.66876 22.584 -3.56702 22.7375Z",
65
- fill: "#DB1F35"
66
- }), /*#__PURE__*/React.createElement("path", {
67
- d: "M0 13.7157H10.2857V20.5728H13.7143V13.7157H24V10.2871H13.7143V3.42999H10.2857V10.2871H0V13.7157Z",
68
- fill: "#E6273E"
69
- })));
70
- };
71
-
72
- export { IconGb, IconGb as default };
3
+ export const IconGb = ({ size, className = '', onClick, refHandler, id, dataId }) => (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [className]: className
6
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: [_jsx("rect", { y: "3.42999", width: "24", height: "17.1429", rx: "2", fill: "white" }), _jsx("mask", { id: "mask0_1993_2165", style: { maskType: 'luminance' }, maskUnits: "userSpaceOnUse", x: "0", y: "3", width: "24", height: "18", children: _jsx("rect", { y: "3.42999", width: "24", height: "17.1429", rx: "2", fill: "white" }) }), _jsxs("g", { mask: "url(#mask0_1993_2165)", children: [_jsx("rect", { y: "3.42999", width: "24", height: "17.1429", fill: "#0A17A7" }), _jsx("path", { d: "M-1.09929 1.78735L9.14287 8.69577V2.28718H14.8572V8.69573L25.0992 1.78736L26.3774 3.6823L18.2796 9.14432H24V14.8586H18.2796L26.3774 20.3206L25.0992 22.2155L14.8572 15.3072V21.7157H9.14287V15.3071L-1.09928 22.2156L-2.37744 20.3206L5.72032 14.8586H7.62939e-06V9.14432H5.72034L-2.37744 3.6823L-1.09929 1.78735Z", fill: "white" }), _jsx("path", { d: "M27.1356 1.53249C27.2368 1.68629 27.1942 1.89299 27.0404 1.99417L16.1843 9.13605C16.0305 9.23723 15.8238 9.19457 15.7227 9.04078C15.6215 8.88698 15.6641 8.68028 15.8179 8.5791L26.674 1.43722C26.8277 1.33604 27.0344 1.3787 27.1356 1.53249Z", fill: "#DB1F35" }), _jsx("path", { d: "M27.1621 21.9165C27.265 21.7639 27.2247 21.5567 27.072 21.4538L17.3401 14.8943C17.1875 14.7914 16.9803 14.8317 16.8774 14.9844C16.7745 15.137 16.8149 15.3442 16.9675 15.4471L26.6994 22.0066C26.852 22.1095 27.0592 22.0692 27.1621 21.9165Z", fill: "#DB1F35" }), _jsx("path", { d: "M-3.56564 1.81145C-3.46276 1.65878 -3.25559 1.61843 -3.10293 1.72132L7.04823 8.56255C7.20089 8.66544 7.24124 8.8726 7.13836 9.02526C7.03547 9.17792 6.82831 9.21828 6.67565 9.11539L-3.47551 2.27415C-3.62817 2.17127 -3.66853 1.96411 -3.56564 1.81145Z", fill: "#DB1F35" }), _jsx("path", { d: "M-3.56702 22.7375C-3.46528 22.8909 -3.25842 22.9328 -3.105 22.831L8.14717 15.3691C8.30059 15.2674 8.34249 15.0605 8.24074 14.9071C8.139 14.7537 7.93214 14.7118 7.77872 14.8135L-3.47344 22.2754C-3.62687 22.3772 -3.66876 22.584 -3.56702 22.7375Z", fill: "#DB1F35" }), _jsx("path", { d: "M0 13.7157H10.2857V20.5728H13.7143V13.7157H24V10.2871H13.7143V3.42999H10.2857V10.2871H0V13.7157Z", fill: "#E6273E" })] })] }));
7
+ export default IconGb;
@@ -1,29 +1,8 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
1
+ import { jsx as _jsx } from "react/jsx-runtime";
3
2
  import classNames from 'classnames';
4
-
5
- var IconGlobe = function IconGlobe(_ref) {
6
- var size = _ref.size,
7
- type = _ref.type,
8
- _ref$className = _ref.className,
9
- className = _ref$className === void 0 ? '' : _ref$className,
10
- onClick = _ref.onClick,
11
- refHandler = _ref.refHandler,
12
- id = _ref.id,
13
- dataId = _ref.dataId;
14
- return /*#__PURE__*/React.createElement("svg", {
15
- xmlns: "http://www.w3.org/2000/svg",
16
- className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
- viewBox: "0 0 24 24",
18
- fill: "none",
19
- onClick: onClick,
20
- ref: refHandler,
21
- id: id,
22
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
- }, /*#__PURE__*/React.createElement("path", {
24
- d: "M12.0001 1.99902C17.5238 1.99902 22.0016 6.47687 22.0016 12.0006C22.0016 17.5243 17.5238 22.0021 12.0001 22.0021C6.47638 22.0021 1.99854 17.5243 1.99854 12.0006C1.99854 6.47687 6.47638 1.99902 12.0001 1.99902ZM14.939 16.5003H9.06118C9.71322 18.9144 10.8466 20.5021 12.0001 20.5021C13.1536 20.5021 14.287 18.9144 14.939 16.5003ZM7.5084 16.5009L4.78591 16.5007C5.74425 18.0338 7.1777 19.2394 8.88008 19.9114C8.3578 19.0915 7.92681 18.0653 7.60981 16.8959L7.5084 16.5009ZM19.2143 16.5007L16.4918 16.5009C16.168 17.8346 15.7004 19.0004 15.119 19.9114C16.716 19.2814 18.0757 18.1824 19.0291 16.7843L19.2143 16.5007ZM7.09351 9.99992H3.7359L3.73115 10.0171C3.57906 10.6535 3.49854 11.3176 3.49854 12.0006C3.49854 13.0567 3.69112 14.0679 4.0431 15.0009L7.21626 15.0005C7.07396 14.0514 6.99854 13.0432 6.99854 12.0006C6.99854 11.3166 7.031 10.6474 7.09351 9.99992ZM15.397 9.99999H8.60316C8.53514 10.6403 8.49853 11.31 8.49853 12.0006C8.49853 13.0601 8.58468 14.0704 8.73827 15.0007H15.2619C15.4155 14.0704 15.5016 13.0601 15.5016 12.0006C15.5016 11.31 15.465 10.6403 15.397 9.99999ZM20.2647 9.99909L16.9067 9.99994C16.9692 10.6474 17.0016 11.3166 17.0016 12.0006C17.0016 13.0432 16.9262 14.0514 16.7839 15.0005L19.9571 15.0009C20.309 14.0679 20.5016 13.0567 20.5016 12.0006C20.5016 11.3112 20.4196 10.6409 20.2647 9.99909ZM8.88114 4.08973L8.85823 4.09844C6.81092 4.91315 5.1549 6.50046 4.25023 8.50033L7.29835 8.50069C7.61171 6.7479 8.15855 5.22198 8.88114 4.08973ZM12.0001 3.49902L11.8844 3.50432C10.619 3.62008 9.39651 5.62205 8.8288 8.50027H15.1714C14.6052 5.63011 13.388 3.63131 12.1264 3.50534L12.0001 3.49902ZM15.1201 4.08979L15.2269 4.26388C15.8961 5.37635 16.4043 6.83623 16.7018 8.50069L19.7499 8.50033C18.8853 6.58892 17.3343 5.05439 15.4113 4.21106L15.1201 4.08979Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconGlobe, IconGlobe as default };
3
+ export const IconGlobe = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M12.0001 1.99902C17.5238 1.99902 22.0016 6.47687 22.0016 12.0006C22.0016 17.5243 17.5238 22.0021 12.0001 22.0021C6.47638 22.0021 1.99854 17.5243 1.99854 12.0006C1.99854 6.47687 6.47638 1.99902 12.0001 1.99902ZM14.939 16.5003H9.06118C9.71322 18.9144 10.8466 20.5021 12.0001 20.5021C13.1536 20.5021 14.287 18.9144 14.939 16.5003ZM7.5084 16.5009L4.78591 16.5007C5.74425 18.0338 7.1777 19.2394 8.88008 19.9114C8.3578 19.0915 7.92681 18.0653 7.60981 16.8959L7.5084 16.5009ZM19.2143 16.5007L16.4918 16.5009C16.168 17.8346 15.7004 19.0004 15.119 19.9114C16.716 19.2814 18.0757 18.1824 19.0291 16.7843L19.2143 16.5007ZM7.09351 9.99992H3.7359L3.73115 10.0171C3.57906 10.6535 3.49854 11.3176 3.49854 12.0006C3.49854 13.0567 3.69112 14.0679 4.0431 15.0009L7.21626 15.0005C7.07396 14.0514 6.99854 13.0432 6.99854 12.0006C6.99854 11.3166 7.031 10.6474 7.09351 9.99992ZM15.397 9.99999H8.60316C8.53514 10.6403 8.49853 11.31 8.49853 12.0006C8.49853 13.0601 8.58468 14.0704 8.73827 15.0007H15.2619C15.4155 14.0704 15.5016 13.0601 15.5016 12.0006C15.5016 11.31 15.465 10.6403 15.397 9.99999ZM20.2647 9.99909L16.9067 9.99994C16.9692 10.6474 17.0016 11.3166 17.0016 12.0006C17.0016 13.0432 16.9262 14.0514 16.7839 15.0005L19.9571 15.0009C20.309 14.0679 20.5016 13.0567 20.5016 12.0006C20.5016 11.3112 20.4196 10.6409 20.2647 9.99909ZM8.88114 4.08973L8.85823 4.09844C6.81092 4.91315 5.1549 6.50046 4.25023 8.50033L7.29835 8.50069C7.61171 6.7479 8.15855 5.22198 8.88114 4.08973ZM12.0001 3.49902L11.8844 3.50432C10.619 3.62008 9.39651 5.62205 8.8288 8.50027H15.1714C14.6052 5.63011 13.388 3.63131 12.1264 3.50534L12.0001 3.49902ZM15.1201 4.08979L15.2269 4.26388C15.8961 5.37635 16.4043 6.83623 16.7018 8.50069L19.7499 8.50033C18.8853 6.58892 17.3343 5.05439 15.4113 4.21106L15.1201 4.08979Z", fill: "#222222" }) }));
8
+ export default IconGlobe;
@@ -1,29 +1,8 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
1
+ import { jsx as _jsx } from "react/jsx-runtime";
3
2
  import classNames from 'classnames';
4
-
5
- var IconGlobeFilled = function IconGlobeFilled(_ref) {
6
- var size = _ref.size,
7
- type = _ref.type,
8
- _ref$className = _ref.className,
9
- className = _ref$className === void 0 ? '' : _ref$className,
10
- onClick = _ref.onClick,
11
- refHandler = _ref.refHandler,
12
- id = _ref.id,
13
- dataId = _ref.dataId;
14
- return /*#__PURE__*/React.createElement("svg", {
15
- xmlns: "http://www.w3.org/2000/svg",
16
- className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
- viewBox: "0 0 24 24",
18
- fill: "none",
19
- onClick: onClick,
20
- ref: refHandler,
21
- id: id,
22
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
- }, /*#__PURE__*/React.createElement("path", {
24
- d: "M8.90435 16.5008H15.0958C14.4759 19.7722 13.2345 21.999 12.0001 21.999C10.8031 21.999 9.59951 19.9051 8.9624 16.7953L8.90435 16.5008H15.0958H8.90435ZM3.06589 16.501L7.37153 16.5008C7.7363 18.583 8.35458 20.3545 9.16372 21.5942C6.60088 20.8373 4.46722 19.0825 3.21224 16.7799L3.06589 16.501ZM16.6286 16.5008L20.9343 16.501C19.703 18.9406 17.5018 20.8071 14.8375 21.5939C15.592 20.4362 16.1807 18.8162 16.5524 16.9129L16.6286 16.5008L20.9343 16.501L16.6286 16.5008ZM16.9315 10.0008L21.8016 10.0002C21.9328 10.6465 22.0016 11.3155 22.0016 12.0005C22.0016 13.0458 21.8413 14.0537 21.5438 15.0009H16.8412C16.9465 14.0433 17.0016 13.0372 17.0016 12.0005C17.0016 11.5462 16.991 11.0977 16.9703 10.6567L16.9315 10.0008L21.8016 10.0002L16.9315 10.0008ZM2.1986 10.0002L7.06862 10.0008C7.02238 10.6508 6.99854 11.319 6.99854 12.0005C6.99854 12.8299 7.03385 13.6396 7.10188 14.4207L7.159 15.0009H2.45637C2.1589 14.0537 1.99854 13.0458 1.99854 12.0005C1.99854 11.3155 2.0674 10.6465 2.1986 10.0002ZM8.57558 10.0002H15.4246C15.4748 10.6459 15.5016 11.3147 15.5016 12.0005C15.5016 12.8381 15.4617 13.6505 15.3878 14.4262L15.3261 15.0009H8.67404C8.56099 14.0551 8.49853 13.0476 8.49853 12.0005C8.49853 11.4862 8.51361 10.9814 8.54234 10.4887L8.57558 10.0002H15.4246H8.57558ZM14.9444 2.57707L14.8365 2.40684C17.8548 3.29781 20.2788 5.57442 21.372 8.50016L16.7811 8.50045C16.4656 6.08353 15.8246 4.00785 14.9444 2.57707L14.8365 2.40684L14.9444 2.57707ZM9.04186 2.44365L9.16364 2.40688C8.28288 3.75639 7.62827 5.736 7.28061 8.06062L7.21905 8.50045L2.62816 8.50016C3.70663 5.6139 6.08022 3.35936 9.04186 2.44365L9.16364 2.40688L9.04186 2.44365ZM12.0001 2.00195C13.3189 2.00195 14.6457 4.5437 15.2141 8.1854L15.2609 8.5002H8.73926C9.27868 4.69102 10.6436 2.00195 12.0001 2.00195Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconGlobeFilled, IconGlobeFilled as default };
3
+ export const IconGlobeFilled = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M8.90435 16.5008H15.0958C14.4759 19.7722 13.2345 21.999 12.0001 21.999C10.8031 21.999 9.59951 19.9051 8.9624 16.7953L8.90435 16.5008H15.0958H8.90435ZM3.06589 16.501L7.37153 16.5008C7.7363 18.583 8.35458 20.3545 9.16372 21.5942C6.60088 20.8373 4.46722 19.0825 3.21224 16.7799L3.06589 16.501ZM16.6286 16.5008L20.9343 16.501C19.703 18.9406 17.5018 20.8071 14.8375 21.5939C15.592 20.4362 16.1807 18.8162 16.5524 16.9129L16.6286 16.5008L20.9343 16.501L16.6286 16.5008ZM16.9315 10.0008L21.8016 10.0002C21.9328 10.6465 22.0016 11.3155 22.0016 12.0005C22.0016 13.0458 21.8413 14.0537 21.5438 15.0009H16.8412C16.9465 14.0433 17.0016 13.0372 17.0016 12.0005C17.0016 11.5462 16.991 11.0977 16.9703 10.6567L16.9315 10.0008L21.8016 10.0002L16.9315 10.0008ZM2.1986 10.0002L7.06862 10.0008C7.02238 10.6508 6.99854 11.319 6.99854 12.0005C6.99854 12.8299 7.03385 13.6396 7.10188 14.4207L7.159 15.0009H2.45637C2.1589 14.0537 1.99854 13.0458 1.99854 12.0005C1.99854 11.3155 2.0674 10.6465 2.1986 10.0002ZM8.57558 10.0002H15.4246C15.4748 10.6459 15.5016 11.3147 15.5016 12.0005C15.5016 12.8381 15.4617 13.6505 15.3878 14.4262L15.3261 15.0009H8.67404C8.56099 14.0551 8.49853 13.0476 8.49853 12.0005C8.49853 11.4862 8.51361 10.9814 8.54234 10.4887L8.57558 10.0002H15.4246H8.57558ZM14.9444 2.57707L14.8365 2.40684C17.8548 3.29781 20.2788 5.57442 21.372 8.50016L16.7811 8.50045C16.4656 6.08353 15.8246 4.00785 14.9444 2.57707L14.8365 2.40684L14.9444 2.57707ZM9.04186 2.44365L9.16364 2.40688C8.28288 3.75639 7.62827 5.736 7.28061 8.06062L7.21905 8.50045L2.62816 8.50016C3.70663 5.6139 6.08022 3.35936 9.04186 2.44365L9.16364 2.40688L9.04186 2.44365ZM12.0001 2.00195C13.3189 2.00195 14.6457 4.5437 15.2141 8.1854L15.2609 8.5002H8.73926C9.27868 4.69102 10.6436 2.00195 12.0001 2.00195Z", fill: "#222222" }) }));
8
+ export default IconGlobeFilled;
@@ -1,41 +1,8 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
2
  import classNames from 'classnames';
4
-
5
- var IconGoogle = function IconGoogle(_ref) {
6
- var size = _ref.size,
7
- type = _ref.type,
8
- _ref$className = _ref.className,
9
- className = _ref$className === void 0 ? '' : _ref$className,
10
- onClick = _ref.onClick,
11
- refHandler = _ref.refHandler,
12
- id = _ref.id,
13
- dataId = _ref.dataId;
14
- return /*#__PURE__*/React.createElement("svg", {
15
- xmlns: "http://www.w3.org/2000/svg",
16
- className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
- viewBox: "0 0 24 24",
18
- fill: "none",
19
- onClick: onClick,
20
- ref: refHandler,
21
- id: id,
22
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
- }, /*#__PURE__*/React.createElement("g", {
24
- id: "Company=Google, Style=Gray, Background=None",
25
- clipPath: "url(#clip0_697_1766)"
26
- }, /*#__PURE__*/React.createElement("path", {
27
- id: "Union",
28
- fillRule: "evenodd",
29
- clipRule: "evenodd",
30
- d: "M16.8426 6.54794C15.6036 5.36623 13.9501 4.72247 12.2392 4.74893C9.10863 4.74893 6.44981 6.86098 5.5018 9.70498V9.70505C4.99913 11.1954 4.99913 12.8092 5.50179 14.2996H5.50619C6.45861 17.1392 9.11303 19.2512 12.2437 19.2512C13.8597 19.2512 15.247 18.8379 16.3223 18.1078V18.1048C17.5878 17.2671 18.452 15.9487 18.721 14.4583H12.2393V9.83734H23.558C23.6991 10.6398 23.7653 11.46 23.7653 12.2757C23.7653 15.9255 22.4609 19.0113 20.1913 21.1013L20.1937 21.1032C18.2051 22.9374 15.4757 24.0001 12.2392 24.0001C7.70204 24.0001 3.55286 21.4427 1.51575 17.3905V17.3905C-0.186243 13.9997 -0.186239 10.0049 1.51576 6.61411H1.51579L1.51575 6.61408C3.55286 2.55749 7.70204 7.62441e-05 12.2392 7.62441e-05C15.22 -0.0351984 18.0992 1.08477 20.2686 3.12188L16.8426 6.54794Z",
31
- fill: "#555555"
32
- })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
33
- id: "clip0_697_1766"
34
- }, /*#__PURE__*/React.createElement("rect", {
35
- width: "24",
36
- height: "24",
37
- fill: "white"
38
- }))));
39
- };
40
-
41
- export { IconGoogle, IconGoogle as default };
3
+ export const IconGoogle = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: [_jsx("g", { id: "Company=Google, Style=Gray, Background=None", clipPath: "url(#clip0_697_1766)", children: _jsx("path", { id: "Union", fillRule: "evenodd", clipRule: "evenodd", d: "M16.8426 6.54794C15.6036 5.36623 13.9501 4.72247 12.2392 4.74893C9.10863 4.74893 6.44981 6.86098 5.5018 9.70498V9.70505C4.99913 11.1954 4.99913 12.8092 5.50179 14.2996H5.50619C6.45861 17.1392 9.11303 19.2512 12.2437 19.2512C13.8597 19.2512 15.247 18.8379 16.3223 18.1078V18.1048C17.5878 17.2671 18.452 15.9487 18.721 14.4583H12.2393V9.83734H23.558C23.6991 10.6398 23.7653 11.46 23.7653 12.2757C23.7653 15.9255 22.4609 19.0113 20.1913 21.1013L20.1937 21.1032C18.2051 22.9374 15.4757 24.0001 12.2392 24.0001C7.70204 24.0001 3.55286 21.4427 1.51575 17.3905V17.3905C-0.186243 13.9997 -0.186239 10.0049 1.51576 6.61411H1.51579L1.51575 6.61408C3.55286 2.55749 7.70204 7.62441e-05 12.2392 7.62441e-05C15.22 -0.0351984 18.0992 1.08477 20.2686 3.12188L16.8426 6.54794Z", fill: "#555555" }) }), _jsx("defs", { children: _jsx("clipPath", { id: "clip0_697_1766", children: _jsx("rect", { width: "24", height: "24", fill: "white" }) }) })] }));
8
+ export default IconGoogle;
@@ -1,32 +1,8 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
1
+ import { jsx as _jsx } from "react/jsx-runtime";
3
2
  import classNames from 'classnames';
4
-
5
- var IconHandOpenHeart = function IconHandOpenHeart(_ref) {
6
- var size = _ref.size,
7
- type = _ref.type,
8
- _ref$className = _ref.className,
9
- className = _ref$className === void 0 ? '' : _ref$className,
10
- onClick = _ref.onClick,
11
- refHandler = _ref.refHandler,
12
- id = _ref.id,
13
- dataId = _ref.dataId;
14
- return /*#__PURE__*/React.createElement("svg", {
15
- xmlns: "http://www.w3.org/2000/svg",
16
- className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
- viewBox: "0 0 24 24",
18
- fill: "none",
19
- onClick: onClick,
20
- ref: refHandler,
21
- id: id,
22
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
- }, /*#__PURE__*/React.createElement("g", {
24
- id: "Size=24, Theme=Regular"
25
- }, /*#__PURE__*/React.createElement("path", {
26
- id: "Shape",
27
- d: "M17.3991 3.60329L16.6453 3.01221C15.4027 2.03792 13.6067 2.24915 12.624 3.48515C11.7454 4.59021 11.8 6.16984 12.7527 7.21165L16.9564 11.8085C17.1942 12.0686 17.604 12.0686 17.8419 11.8085L22.0459 7.2111C22.9983 6.16954 23.053 4.59039 22.1749 3.48543C21.1926 2.24928 19.3967 2.03769 18.154 3.01168L17.3991 3.60329ZM19.0556 15.7079L18.0662 13.0761C18.3103 12.979 18.5372 12.8264 18.7275 12.6183L19.0344 12.2827L20.1596 15.2759C20.4104 15.951 20.453 16.6857 20.2819 17.3853C20.1108 18.0848 19.7338 18.7169 19.1996 19.1999L17.7356 20.5199C17.0022 21.17 16.0515 21.5212 15.0716 21.5039C14.4541 21.5008 13.8429 21.3786 13.2716 21.1439C10.6513 20.1294 7.86134 19.6244 5.05162 19.6559C4.79084 19.6634 4.53286 19.6005 4.3048 19.4738C4.07675 19.3471 3.88704 19.1613 3.75562 18.9359C3.6503 18.7535 3.59485 18.5466 3.59485 18.3359C3.59485 18.1253 3.6503 17.9183 3.75562 17.7359C4.14364 17.1947 4.63505 16.7358 5.20147 16.3857C5.76788 16.0355 6.39807 15.8011 7.05562 15.6959L2.90362 11.5559C2.7291 11.382 2.59063 11.1753 2.49615 10.9478C2.40166 10.7202 2.35303 10.4763 2.35303 10.2299C2.35303 9.98353 2.40166 9.73957 2.49615 9.51202C2.59063 9.28448 2.7291 9.07782 2.90362 8.90391C3.06767 8.74385 3.25858 8.61387 3.46762 8.51991C3.17867 8.2141 3.00116 7.81987 2.96373 7.40081C2.92629 6.98176 3.03111 6.5623 3.26128 6.21012C3.49144 5.85794 3.83354 5.59356 4.23238 5.45962C4.63122 5.32569 5.06355 5.33002 5.45962 5.47191C5.54309 5.18445 5.70029 4.92382 5.91562 4.71591C6.08851 4.54175 6.29416 4.40353 6.5207 4.30921C6.74725 4.21489 6.99022 4.16633 7.23562 4.16633C7.48102 4.16633 7.724 4.21489 7.95054 4.30921C8.17709 4.40353 8.38273 4.54175 8.55562 4.71591C8.64945 4.5032 8.77937 4.30833 8.93962 4.13991C9.29393 3.79323 9.76992 3.5991 10.2656 3.5991C10.5505 3.5991 10.8289 3.66322 11.0814 3.78357C10.9271 4.17631 10.8364 4.5873 10.8089 5.00119L10.7996 4.99191C10.666 4.85824 10.4847 4.78314 10.2956 4.78314C10.202 4.78314 10.1093 4.80158 10.0229 4.8374C9.93638 4.87322 9.85781 4.92572 9.79162 4.99191C9.72544 5.05809 9.67294 5.13667 9.63712 5.22314C9.60129 5.30962 9.58286 5.40231 9.58286 5.49591C9.58286 5.68494 9.65795 5.86624 9.79162 5.99991L10.6316 6.77991L12.2196 8.40694L13.7214 10.0492C13.7347 10.0982 13.7414 10.1489 13.7414 10.1999C13.7414 10.2786 13.7253 10.3565 13.694 10.4287C13.6628 10.501 13.617 10.566 13.5596 10.6199C13.5058 10.6773 13.4407 10.7231 13.3685 10.7543C13.2962 10.7856 13.2183 10.8017 13.1396 10.8017C13.0609 10.8017 12.983 10.7856 12.9108 10.7543C12.8386 10.7231 12.7735 10.6773 12.7196 10.6199L9.71962 7.63191L8.87962 6.79191L7.67962 5.51991C7.55021 5.39665 7.37834 5.32791 7.19962 5.32791C7.02091 5.32791 6.84904 5.39665 6.71962 5.51991C6.59357 5.64787 6.52292 5.82029 6.52292 5.99991C6.52292 6.17953 6.59357 6.35194 6.71962 6.47991L10.0196 9.77991C10.131 9.8913 10.1936 10.0424 10.1936 10.1999C10.1936 10.3574 10.131 10.5085 10.0196 10.6199C9.90823 10.7313 9.75715 10.7939 9.59962 10.7939C9.44209 10.7939 9.29101 10.7313 9.17962 10.6199L6.94762 8.39991L5.26762 6.71991C5.1417 6.5946 4.97127 6.52426 4.79362 6.52426C4.61597 6.52426 4.44555 6.5946 4.31962 6.71991C4.19357 6.84787 4.12292 7.02029 4.12292 7.19991C4.12292 7.37953 4.19357 7.55194 4.31962 7.67991L5.60362 8.95191L8.21962 11.5799C8.33101 11.6913 8.39359 11.8424 8.39359 11.9999C8.39359 12.1574 8.33101 12.3085 8.21962 12.4199C8.10823 12.5313 7.95715 12.5939 7.79962 12.5939C7.64209 12.5939 7.49101 12.5313 7.37962 12.4199L5.99962 11.0519L4.75162 9.80391C4.6257 9.6786 4.45527 9.60826 4.27762 9.60826C4.09997 9.60826 3.92955 9.6786 3.80362 9.80391C3.73855 9.86312 3.68673 9.93543 3.65157 10.0161C3.61641 10.0967 3.59871 10.1839 3.59962 10.2719C3.59317 10.3695 3.60808 10.4672 3.64332 10.5584C3.67855 10.6496 3.73326 10.732 3.80362 10.7999L8.83162 15.7799C8.91455 15.8645 8.97057 15.9718 8.99264 16.0881C9.01471 16.2045 9.00184 16.3248 8.95564 16.4339C8.90944 16.543 8.83199 16.636 8.73304 16.7011C8.63409 16.7662 8.51808 16.8006 8.39962 16.7999C8.39962 16.7999 5.81962 16.7999 4.81162 18.4199C4.81162 18.4679 4.90762 18.5519 5.05162 18.5519C5.10744 18.5455 5.16381 18.5455 5.21962 18.5519C8.13206 18.5482 11.0203 19.0811 13.7396 20.1239C14.2547 20.3663 14.828 20.4577 15.3929 20.3877C15.9579 20.3176 16.4914 20.0888 16.9316 19.7279L18.4316 18.3479C18.7898 18.0221 19.041 17.5957 19.1524 17.1245C19.2638 16.6534 19.23 16.1595 19.0556 15.7079ZM11.6676 16.7358C12.1443 16.4982 12.9146 16.3608 13.7012 16.4919C14.474 16.6207 15.2113 16.9987 15.7007 17.7327C15.8845 18.0085 16.257 18.083 16.5327 17.8991C16.8084 17.7153 16.8829 17.3428 16.6991 17.0671C15.9885 16.0012 14.9258 15.4795 13.8986 15.3082C12.8852 15.1393 11.8555 15.3013 11.1322 15.6618C10.8357 15.8097 10.7151 16.1699 10.8629 16.4665C11.0108 16.7631 11.371 16.8836 11.6676 16.7358Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconHandOpenHeart, IconHandOpenHeart as default };
3
+ export const IconHandOpenHeart = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("g", { id: "Size=24, Theme=Regular", children: _jsx("path", { id: "Shape", d: "M17.3991 3.60329L16.6453 3.01221C15.4027 2.03792 13.6067 2.24915 12.624 3.48515C11.7454 4.59021 11.8 6.16984 12.7527 7.21165L16.9564 11.8085C17.1942 12.0686 17.604 12.0686 17.8419 11.8085L22.0459 7.2111C22.9983 6.16954 23.053 4.59039 22.1749 3.48543C21.1926 2.24928 19.3967 2.03769 18.154 3.01168L17.3991 3.60329ZM19.0556 15.7079L18.0662 13.0761C18.3103 12.979 18.5372 12.8264 18.7275 12.6183L19.0344 12.2827L20.1596 15.2759C20.4104 15.951 20.453 16.6857 20.2819 17.3853C20.1108 18.0848 19.7338 18.7169 19.1996 19.1999L17.7356 20.5199C17.0022 21.17 16.0515 21.5212 15.0716 21.5039C14.4541 21.5008 13.8429 21.3786 13.2716 21.1439C10.6513 20.1294 7.86134 19.6244 5.05162 19.6559C4.79084 19.6634 4.53286 19.6005 4.3048 19.4738C4.07675 19.3471 3.88704 19.1613 3.75562 18.9359C3.6503 18.7535 3.59485 18.5466 3.59485 18.3359C3.59485 18.1253 3.6503 17.9183 3.75562 17.7359C4.14364 17.1947 4.63505 16.7358 5.20147 16.3857C5.76788 16.0355 6.39807 15.8011 7.05562 15.6959L2.90362 11.5559C2.7291 11.382 2.59063 11.1753 2.49615 10.9478C2.40166 10.7202 2.35303 10.4763 2.35303 10.2299C2.35303 9.98353 2.40166 9.73957 2.49615 9.51202C2.59063 9.28448 2.7291 9.07782 2.90362 8.90391C3.06767 8.74385 3.25858 8.61387 3.46762 8.51991C3.17867 8.2141 3.00116 7.81987 2.96373 7.40081C2.92629 6.98176 3.03111 6.5623 3.26128 6.21012C3.49144 5.85794 3.83354 5.59356 4.23238 5.45962C4.63122 5.32569 5.06355 5.33002 5.45962 5.47191C5.54309 5.18445 5.70029 4.92382 5.91562 4.71591C6.08851 4.54175 6.29416 4.40353 6.5207 4.30921C6.74725 4.21489 6.99022 4.16633 7.23562 4.16633C7.48102 4.16633 7.724 4.21489 7.95054 4.30921C8.17709 4.40353 8.38273 4.54175 8.55562 4.71591C8.64945 4.5032 8.77937 4.30833 8.93962 4.13991C9.29393 3.79323 9.76992 3.5991 10.2656 3.5991C10.5505 3.5991 10.8289 3.66322 11.0814 3.78357C10.9271 4.17631 10.8364 4.5873 10.8089 5.00119L10.7996 4.99191C10.666 4.85824 10.4847 4.78314 10.2956 4.78314C10.202 4.78314 10.1093 4.80158 10.0229 4.8374C9.93638 4.87322 9.85781 4.92572 9.79162 4.99191C9.72544 5.05809 9.67294 5.13667 9.63712 5.22314C9.60129 5.30962 9.58286 5.40231 9.58286 5.49591C9.58286 5.68494 9.65795 5.86624 9.79162 5.99991L10.6316 6.77991L12.2196 8.40694L13.7214 10.0492C13.7347 10.0982 13.7414 10.1489 13.7414 10.1999C13.7414 10.2786 13.7253 10.3565 13.694 10.4287C13.6628 10.501 13.617 10.566 13.5596 10.6199C13.5058 10.6773 13.4407 10.7231 13.3685 10.7543C13.2962 10.7856 13.2183 10.8017 13.1396 10.8017C13.0609 10.8017 12.983 10.7856 12.9108 10.7543C12.8386 10.7231 12.7735 10.6773 12.7196 10.6199L9.71962 7.63191L8.87962 6.79191L7.67962 5.51991C7.55021 5.39665 7.37834 5.32791 7.19962 5.32791C7.02091 5.32791 6.84904 5.39665 6.71962 5.51991C6.59357 5.64787 6.52292 5.82029 6.52292 5.99991C6.52292 6.17953 6.59357 6.35194 6.71962 6.47991L10.0196 9.77991C10.131 9.8913 10.1936 10.0424 10.1936 10.1999C10.1936 10.3574 10.131 10.5085 10.0196 10.6199C9.90823 10.7313 9.75715 10.7939 9.59962 10.7939C9.44209 10.7939 9.29101 10.7313 9.17962 10.6199L6.94762 8.39991L5.26762 6.71991C5.1417 6.5946 4.97127 6.52426 4.79362 6.52426C4.61597 6.52426 4.44555 6.5946 4.31962 6.71991C4.19357 6.84787 4.12292 7.02029 4.12292 7.19991C4.12292 7.37953 4.19357 7.55194 4.31962 7.67991L5.60362 8.95191L8.21962 11.5799C8.33101 11.6913 8.39359 11.8424 8.39359 11.9999C8.39359 12.1574 8.33101 12.3085 8.21962 12.4199C8.10823 12.5313 7.95715 12.5939 7.79962 12.5939C7.64209 12.5939 7.49101 12.5313 7.37962 12.4199L5.99962 11.0519L4.75162 9.80391C4.6257 9.6786 4.45527 9.60826 4.27762 9.60826C4.09997 9.60826 3.92955 9.6786 3.80362 9.80391C3.73855 9.86312 3.68673 9.93543 3.65157 10.0161C3.61641 10.0967 3.59871 10.1839 3.59962 10.2719C3.59317 10.3695 3.60808 10.4672 3.64332 10.5584C3.67855 10.6496 3.73326 10.732 3.80362 10.7999L8.83162 15.7799C8.91455 15.8645 8.97057 15.9718 8.99264 16.0881C9.01471 16.2045 9.00184 16.3248 8.95564 16.4339C8.90944 16.543 8.83199 16.636 8.73304 16.7011C8.63409 16.7662 8.51808 16.8006 8.39962 16.7999C8.39962 16.7999 5.81962 16.7999 4.81162 18.4199C4.81162 18.4679 4.90762 18.5519 5.05162 18.5519C5.10744 18.5455 5.16381 18.5455 5.21962 18.5519C8.13206 18.5482 11.0203 19.0811 13.7396 20.1239C14.2547 20.3663 14.828 20.4577 15.3929 20.3877C15.9579 20.3176 16.4914 20.0888 16.9316 19.7279L18.4316 18.3479C18.7898 18.0221 19.041 17.5957 19.1524 17.1245C19.2638 16.6534 19.23 16.1595 19.0556 15.7079ZM11.6676 16.7358C12.1443 16.4982 12.9146 16.3608 13.7012 16.4919C14.474 16.6207 15.2113 16.9987 15.7007 17.7327C15.8845 18.0085 16.257 18.083 16.5327 17.8991C16.8084 17.7153 16.8829 17.3428 16.6991 17.0671C15.9885 16.0012 14.9258 15.4795 13.8986 15.3082C12.8852 15.1393 11.8555 15.3013 11.1322 15.6618C10.8357 15.8097 10.7151 16.1699 10.8629 16.4665C11.0108 16.7631 11.371 16.8836 11.6676 16.7358Z", fill: "#222222" }) }) }));
8
+ export default IconHandOpenHeart;
@@ -1,32 +1,8 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
1
+ import { jsx as _jsx } from "react/jsx-runtime";
3
2
  import classNames from 'classnames';
4
-
5
- var IconHandOpenHeartFilled = function IconHandOpenHeartFilled(_ref) {
6
- var size = _ref.size,
7
- type = _ref.type,
8
- _ref$className = _ref.className,
9
- className = _ref$className === void 0 ? '' : _ref$className,
10
- onClick = _ref.onClick,
11
- refHandler = _ref.refHandler,
12
- id = _ref.id,
13
- dataId = _ref.dataId;
14
- return /*#__PURE__*/React.createElement("svg", {
15
- xmlns: "http://www.w3.org/2000/svg",
16
- className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
- viewBox: "0 0 24 24",
18
- fill: "none",
19
- onClick: onClick,
20
- ref: refHandler,
21
- id: id,
22
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
- }, /*#__PURE__*/React.createElement("g", {
24
- id: "Size=24, Theme=Filled"
25
- }, /*#__PURE__*/React.createElement("path", {
26
- id: "Shape",
27
- d: "M16.0708 12.6185L12.0488 8.22032C12.0244 8.24581 11.9979 8.26988 11.9692 8.29226C11.6796 8.51827 11.267 8.49294 11.0072 8.23322L6.33621 3.56361C5.98468 3.21219 5.41484 3.21227 5.06341 3.56379C4.71199 3.91532 4.71208 4.48516 5.0636 4.83659L9.70108 9.47273C9.97108 9.74265 9.97122 10.1803 9.70139 10.4504C9.43139 10.7207 8.9934 10.7208 8.72327 10.4507L3.9363 5.6637C3.58483 5.31223 3.01498 5.31223 2.66351 5.6637C2.31203 6.01517 2.31203 6.58502 2.66351 6.93649L7.52688 11.7999C7.75522 12.0282 7.75531 12.3984 7.52708 12.6269C7.29868 12.8555 6.92817 12.8556 6.69967 12.6271L3.9363 9.8637C3.58483 9.51223 3.01498 9.51223 2.66351 9.8637C2.31203 10.2152 2.31203 10.785 2.66351 11.1365L7.24971 15.7227C7.06066 15.7576 6.8562 15.8025 6.64315 15.8606C5.70789 16.1155 4.5117 16.6493 3.79754 17.7884C3.4926 18.2748 3.57533 18.8098 3.86276 19.1863C4.13461 19.5425 4.58248 19.7601 5.06016 19.7566C7.64568 19.7378 10.7839 20.2146 13.2834 21.2404C14.7207 21.8303 16.509 21.751 17.7405 20.615L19.2413 19.2307C20.3306 18.2258 20.6928 16.6561 20.154 15.2756L19.0004 12.3201L18.7275 12.6185C18.0139 13.3989 16.7845 13.3989 16.0708 12.6185ZM11.6676 16.7359C11.371 16.8838 11.0108 16.7632 10.8629 16.4666C10.7151 16.1701 10.8357 15.8098 11.1322 15.662C11.8555 15.3014 12.8852 15.1394 13.8986 15.3084C14.9258 15.4796 15.9885 16.0014 16.6991 17.0672C16.8829 17.3429 16.8084 17.7154 16.5327 17.8993C16.257 18.0831 15.8845 18.0086 15.7007 17.7329C15.2113 16.9988 14.474 16.6209 13.7012 16.492C12.9146 16.3609 12.1443 16.4983 11.6676 16.7359ZM11.2054 3.50043C10.832 4.27198 10.7175 5.1327 10.8576 5.95726L8.6636 3.63659C8.31208 3.28516 8.31199 2.71532 8.66341 2.36379C9.01484 2.01227 9.58468 2.01219 9.93621 2.36361C10.2794 2.70674 10.7178 3.08944 11.2054 3.50043ZM17.3991 3.60349L16.6453 3.01241C15.4027 2.03811 13.6067 2.24934 12.624 3.48535C11.7454 4.5904 11.8 6.17003 12.7527 7.21184L16.9564 11.8087C17.1942 12.0688 17.604 12.0688 17.8419 11.8087L22.0459 7.2113C22.9983 6.16974 23.053 4.59059 22.1749 3.48563C21.1926 2.24948 19.3967 2.03788 18.154 3.01187L17.3991 3.60349Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconHandOpenHeartFilled, IconHandOpenHeartFilled as default };
3
+ export const IconHandOpenHeartFilled = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("g", { id: "Size=24, Theme=Filled", children: _jsx("path", { id: "Shape", d: "M16.0708 12.6185L12.0488 8.22032C12.0244 8.24581 11.9979 8.26988 11.9692 8.29226C11.6796 8.51827 11.267 8.49294 11.0072 8.23322L6.33621 3.56361C5.98468 3.21219 5.41484 3.21227 5.06341 3.56379C4.71199 3.91532 4.71208 4.48516 5.0636 4.83659L9.70108 9.47273C9.97108 9.74265 9.97122 10.1803 9.70139 10.4504C9.43139 10.7207 8.9934 10.7208 8.72327 10.4507L3.9363 5.6637C3.58483 5.31223 3.01498 5.31223 2.66351 5.6637C2.31203 6.01517 2.31203 6.58502 2.66351 6.93649L7.52688 11.7999C7.75522 12.0282 7.75531 12.3984 7.52708 12.6269C7.29868 12.8555 6.92817 12.8556 6.69967 12.6271L3.9363 9.8637C3.58483 9.51223 3.01498 9.51223 2.66351 9.8637C2.31203 10.2152 2.31203 10.785 2.66351 11.1365L7.24971 15.7227C7.06066 15.7576 6.8562 15.8025 6.64315 15.8606C5.70789 16.1155 4.5117 16.6493 3.79754 17.7884C3.4926 18.2748 3.57533 18.8098 3.86276 19.1863C4.13461 19.5425 4.58248 19.7601 5.06016 19.7566C7.64568 19.7378 10.7839 20.2146 13.2834 21.2404C14.7207 21.8303 16.509 21.751 17.7405 20.615L19.2413 19.2307C20.3306 18.2258 20.6928 16.6561 20.154 15.2756L19.0004 12.3201L18.7275 12.6185C18.0139 13.3989 16.7845 13.3989 16.0708 12.6185ZM11.6676 16.7359C11.371 16.8838 11.0108 16.7632 10.8629 16.4666C10.7151 16.1701 10.8357 15.8098 11.1322 15.662C11.8555 15.3014 12.8852 15.1394 13.8986 15.3084C14.9258 15.4796 15.9885 16.0014 16.6991 17.0672C16.8829 17.3429 16.8084 17.7154 16.5327 17.8993C16.257 18.0831 15.8845 18.0086 15.7007 17.7329C15.2113 16.9988 14.474 16.6209 13.7012 16.492C12.9146 16.3609 12.1443 16.4983 11.6676 16.7359ZM11.2054 3.50043C10.832 4.27198 10.7175 5.1327 10.8576 5.95726L8.6636 3.63659C8.31208 3.28516 8.31199 2.71532 8.66341 2.36379C9.01484 2.01227 9.58468 2.01219 9.93621 2.36361C10.2794 2.70674 10.7178 3.08944 11.2054 3.50043ZM17.3991 3.60349L16.6453 3.01241C15.4027 2.03811 13.6067 2.24934 12.624 3.48535C11.7454 4.5904 11.8 6.17003 12.7527 7.21184L16.9564 11.8087C17.1942 12.0688 17.604 12.0688 17.8419 11.8087L22.0459 7.2113C22.9983 6.16974 23.053 4.59059 22.1749 3.48563C21.1926 2.24948 19.3967 2.03788 18.154 3.01187L17.3991 3.60349Z", fill: "#222222" }) }) }));
8
+ export default IconHandOpenHeartFilled;
@@ -1,32 +1,8 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
1
+ import { jsx as _jsx } from "react/jsx-runtime";
3
2
  import classNames from 'classnames';
4
-
5
- var IconHeart = function IconHeart(_ref) {
6
- var size = _ref.size,
7
- type = _ref.type,
8
- _ref$className = _ref.className,
9
- className = _ref$className === void 0 ? '' : _ref$className,
10
- onClick = _ref.onClick,
11
- refHandler = _ref.refHandler,
12
- id = _ref.id,
13
- dataId = _ref.dataId;
14
- return /*#__PURE__*/React.createElement("svg", {
15
- xmlns: "http://www.w3.org/2000/svg",
16
- className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
- viewBox: "0 0 24 24",
18
- fill: "none",
19
- onClick: onClick,
20
- ref: refHandler,
21
- id: id,
22
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
- }, /*#__PURE__*/React.createElement("g", {
24
- id: "Size=24, Theme=Regular"
25
- }, /*#__PURE__*/React.createElement("path", {
26
- id: "Shape",
27
- d: "M12.8199 5.57961L11.9992 6.40211L11.1759 5.57886C9.07688 3.4798 5.67361 3.4798 3.57455 5.57886C1.47548 7.67793 1.47548 11.0812 3.57455 13.1803L11.4699 21.0756C11.7628 21.3685 12.2377 21.3685 12.5306 21.0756L20.432 13.1788C22.5264 11.0728 22.53 7.67906 20.4306 5.57961C18.3277 3.47672 14.9228 3.47672 12.8199 5.57961ZM19.3684 12.1211L12.0002 19.4846L4.63521 12.1196C3.12192 10.6063 3.12192 8.15281 4.63521 6.63952C6.14849 5.12624 8.602 5.12624 10.1153 6.63952L11.4727 7.99697C11.7706 8.29483 12.2553 8.28903 12.5459 7.98412L13.8806 6.64027C15.3977 5.12317 17.8528 5.12316 19.3699 6.64027C20.8836 8.15391 20.881 10.6001 19.3684 12.1211Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconHeart, IconHeart as default };
3
+ export const IconHeart = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("g", { id: "Size=24, Theme=Regular", children: _jsx("path", { id: "Shape", d: "M12.8199 5.57961L11.9992 6.40211L11.1759 5.57886C9.07688 3.4798 5.67361 3.4798 3.57455 5.57886C1.47548 7.67793 1.47548 11.0812 3.57455 13.1803L11.4699 21.0756C11.7628 21.3685 12.2377 21.3685 12.5306 21.0756L20.432 13.1788C22.5264 11.0728 22.53 7.67906 20.4306 5.57961C18.3277 3.47672 14.9228 3.47672 12.8199 5.57961ZM19.3684 12.1211L12.0002 19.4846L4.63521 12.1196C3.12192 10.6063 3.12192 8.15281 4.63521 6.63952C6.14849 5.12624 8.602 5.12624 10.1153 6.63952L11.4727 7.99697C11.7706 8.29483 12.2553 8.28903 12.5459 7.98412L13.8806 6.64027C15.3977 5.12317 17.8528 5.12316 19.3699 6.64027C20.8836 8.15391 20.881 10.6001 19.3684 12.1211Z", fill: "#222222" }) }) }));
8
+ export default IconHeart;
@@ -1,32 +1,8 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
1
+ import { jsx as _jsx } from "react/jsx-runtime";
3
2
  import classNames from 'classnames';
4
-
5
- var IconHeartFilled = function IconHeartFilled(_ref) {
6
- var size = _ref.size,
7
- type = _ref.type,
8
- _ref$className = _ref.className,
9
- className = _ref$className === void 0 ? '' : _ref$className,
10
- onClick = _ref.onClick,
11
- refHandler = _ref.refHandler,
12
- id = _ref.id,
13
- dataId = _ref.dataId;
14
- return /*#__PURE__*/React.createElement("svg", {
15
- xmlns: "http://www.w3.org/2000/svg",
16
- className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
- viewBox: "0 0 24 24",
18
- fill: "none",
19
- onClick: onClick,
20
- ref: refHandler,
21
- id: id,
22
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
- }, /*#__PURE__*/React.createElement("g", {
24
- id: "Size=24, Theme=Filled"
25
- }, /*#__PURE__*/React.createElement("path", {
26
- id: "Shape",
27
- d: "M12.8199 5.57961L11.9992 6.40211L11.1759 5.57886C9.07688 3.4798 5.67361 3.4798 3.57455 5.57886C1.47548 7.67793 1.47548 11.0812 3.57455 13.1803L11.4699 21.0756C11.7628 21.3685 12.2377 21.3685 12.5306 21.0756L20.432 13.1788C22.5264 11.0728 22.53 7.67906 20.4306 5.57961C18.3277 3.47672 14.9228 3.47672 12.8199 5.57961Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconHeartFilled, IconHeartFilled as default };
3
+ export const IconHeartFilled = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("g", { id: "Size=24, Theme=Filled", children: _jsx("path", { id: "Shape", d: "M12.8199 5.57961L11.9992 6.40211L11.1759 5.57886C9.07688 3.4798 5.67361 3.4798 3.57455 5.57886C1.47548 7.67793 1.47548 11.0812 3.57455 13.1803L11.4699 21.0756C11.7628 21.3685 12.2377 21.3685 12.5306 21.0756L20.432 13.1788C22.5264 11.0728 22.53 7.67906 20.4306 5.57961C18.3277 3.47672 14.9228 3.47672 12.8199 5.57961Z", fill: "#222222" }) }) }));
8
+ export default IconHeartFilled;
@@ -1,32 +1,8 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
1
+ import { jsx as _jsx } from "react/jsx-runtime";
3
2
  import classNames from 'classnames';
4
-
5
- var IconHistory = function IconHistory(_ref) {
6
- var size = _ref.size,
7
- type = _ref.type,
8
- _ref$className = _ref.className,
9
- className = _ref$className === void 0 ? '' : _ref$className,
10
- onClick = _ref.onClick,
11
- refHandler = _ref.refHandler,
12
- id = _ref.id,
13
- dataId = _ref.dataId;
14
- return /*#__PURE__*/React.createElement("svg", {
15
- xmlns: "http://www.w3.org/2000/svg",
16
- className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
- viewBox: "0 0 24 24",
18
- fill: "none",
19
- onClick: onClick,
20
- ref: refHandler,
21
- id: id,
22
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
- }, /*#__PURE__*/React.createElement("g", {
24
- id: "Size=24, Theme=Regular"
25
- }, /*#__PURE__*/React.createElement("path", {
26
- id: "Shape",
27
- d: "M19.5 12C19.5 7.85786 16.1421 4.5 12 4.5C10.0309 4.5 8.23907 5.25883 6.90093 6.5H8.25C8.66421 6.5 9 6.83579 9 7.25C9 7.66421 8.66421 8 8.25 8H5.25C4.83579 8 4.5 7.66421 4.5 7.25V4.25C4.5 3.83579 4.83579 3.5 5.25 3.5C5.66421 3.5 6 3.83579 6 4.25V5.29168C7.59227 3.86656 9.69494 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 11.5317 3.03576 11.0718 3.10471 10.6228C3.161 10.2562 3.48623 10 3.85708 10C4.31609 10 4.64845 10.4382 4.58123 10.8923C4.52772 11.2538 4.5 11.6236 4.5 12C4.5 16.1421 7.85786 19.5 12 19.5C16.1421 19.5 19.5 16.1421 19.5 12ZM12.5 7.75C12.5 7.33579 12.1642 7 11.75 7C11.3358 7 11 7.33579 11 7.75V12.25C11 12.6642 11.3358 13 11.75 13H14.25C14.6642 13 15 12.6642 15 12.25C15 11.8358 14.6642 11.5 14.25 11.5H12.5V7.75Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconHistory, IconHistory as default };
3
+ export const IconHistory = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("g", { id: "Size=24, Theme=Regular", children: _jsx("path", { id: "Shape", d: "M19.5 12C19.5 7.85786 16.1421 4.5 12 4.5C10.0309 4.5 8.23907 5.25883 6.90093 6.5H8.25C8.66421 6.5 9 6.83579 9 7.25C9 7.66421 8.66421 8 8.25 8H5.25C4.83579 8 4.5 7.66421 4.5 7.25V4.25C4.5 3.83579 4.83579 3.5 5.25 3.5C5.66421 3.5 6 3.83579 6 4.25V5.29168C7.59227 3.86656 9.69494 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 11.5317 3.03576 11.0718 3.10471 10.6228C3.161 10.2562 3.48623 10 3.85708 10C4.31609 10 4.64845 10.4382 4.58123 10.8923C4.52772 11.2538 4.5 11.6236 4.5 12C4.5 16.1421 7.85786 19.5 12 19.5C16.1421 19.5 19.5 16.1421 19.5 12ZM12.5 7.75C12.5 7.33579 12.1642 7 11.75 7C11.3358 7 11 7.33579 11 7.75V12.25C11 12.6642 11.3358 13 11.75 13H14.25C14.6642 13 15 12.6642 15 12.25C15 11.8358 14.6642 11.5 14.25 11.5H12.5V7.75Z", fill: "#222222" }) }) }));
8
+ export default IconHistory;
@@ -1,32 +1,8 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
1
+ import { jsx as _jsx } from "react/jsx-runtime";
3
2
  import classNames from 'classnames';
4
-
5
- var IconHistoryFilled = function IconHistoryFilled(_ref) {
6
- var size = _ref.size,
7
- type = _ref.type,
8
- _ref$className = _ref.className,
9
- className = _ref$className === void 0 ? '' : _ref$className,
10
- onClick = _ref.onClick,
11
- refHandler = _ref.refHandler,
12
- id = _ref.id,
13
- dataId = _ref.dataId;
14
- return /*#__PURE__*/React.createElement("svg", {
15
- xmlns: "http://www.w3.org/2000/svg",
16
- className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
- viewBox: "0 0 24 24",
18
- fill: "none",
19
- onClick: onClick,
20
- ref: refHandler,
21
- id: id,
22
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
- }, /*#__PURE__*/React.createElement("g", {
24
- id: "Size=24, Theme=Filled"
25
- }, /*#__PURE__*/React.createElement("path", {
26
- id: "Shape",
27
- d: "M19.25 12C19.25 7.99594 16.0041 4.75 12 4.75C10.3379 4.75 8.80642 5.30932 7.58352 6.25H8.25C8.80228 6.25 9.25 6.69772 9.25 7.25C9.25 7.80228 8.80228 8.25 8.25 8.25H5.25C4.69772 8.25 4.25 7.80228 4.25 7.25V7H4.21647L4.25 6.94829V4.25C4.25 3.69772 4.69772 3.25 5.25 3.25C5.80228 3.25 6.25 3.69772 6.25 4.25V4.75385C7.82875 3.49939 9.82686 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 11.6174 2.77322 11.2403 2.81834 10.8699C2.88069 10.3581 3.33398 10 3.8496 10C4.44068 10 4.86674 10.5685 4.79864 11.1556C4.76652 11.4326 4.75 11.7144 4.75 12C4.75 16.0041 7.99594 19.25 12 19.25C16.0041 19.25 19.25 16.0041 19.25 12ZM13 8C13 7.44772 12.5523 7 12 7C11.4477 7 11 7.44772 11 8V13C11 13.5523 11.4477 14 12 14H15C15.5523 14 16 13.5523 16 13C16 12.4477 15.5523 12 15 12H13V8Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconHistoryFilled, IconHistoryFilled as default };
3
+ export const IconHistoryFilled = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("g", { id: "Size=24, Theme=Filled", children: _jsx("path", { id: "Shape", d: "M19.25 12C19.25 7.99594 16.0041 4.75 12 4.75C10.3379 4.75 8.80642 5.30932 7.58352 6.25H8.25C8.80228 6.25 9.25 6.69772 9.25 7.25C9.25 7.80228 8.80228 8.25 8.25 8.25H5.25C4.69772 8.25 4.25 7.80228 4.25 7.25V7H4.21647L4.25 6.94829V4.25C4.25 3.69772 4.69772 3.25 5.25 3.25C5.80228 3.25 6.25 3.69772 6.25 4.25V4.75385C7.82875 3.49939 9.82686 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 11.6174 2.77322 11.2403 2.81834 10.8699C2.88069 10.3581 3.33398 10 3.8496 10C4.44068 10 4.86674 10.5685 4.79864 11.1556C4.76652 11.4326 4.75 11.7144 4.75 12C4.75 16.0041 7.99594 19.25 12 19.25C16.0041 19.25 19.25 16.0041 19.25 12ZM13 8C13 7.44772 12.5523 7 12 7C11.4477 7 11 7.44772 11 8V13C11 13.5523 11.4477 14 12 14H15C15.5523 14 16 13.5523 16 13C16 12.4477 15.5523 12 15 12H13V8Z", fill: "#222222" }) }) }));
8
+ export default IconHistoryFilled;
@@ -1,32 +1,8 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
1
+ import { jsx as _jsx } from "react/jsx-runtime";
3
2
  import classNames from 'classnames';
4
-
5
- var IconHome = function IconHome(_ref) {
6
- var size = _ref.size,
7
- type = _ref.type,
8
- _ref$className = _ref.className,
9
- className = _ref$className === void 0 ? '' : _ref$className,
10
- onClick = _ref.onClick,
11
- refHandler = _ref.refHandler,
12
- id = _ref.id,
13
- dataId = _ref.dataId;
14
- return /*#__PURE__*/React.createElement("svg", {
15
- xmlns: "http://www.w3.org/2000/svg",
16
- className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
- viewBox: "0 0 24 24",
18
- fill: "none",
19
- onClick: onClick,
20
- ref: refHandler,
21
- id: id,
22
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
- }, /*#__PURE__*/React.createElement("g", {
24
- id: "Size=24, Theme=Regular"
25
- }, /*#__PURE__*/React.createElement("path", {
26
- id: "Shape",
27
- d: "M10.5495 2.53189C11.3874 1.82531 12.6126 1.82531 13.4505 2.5319L20.2005 8.224C20.7074 8.65152 21 9.2809 21 9.94406V19.7468C21 20.7133 20.2165 21.4968 19.25 21.4968H15.75C14.7835 21.4968 14 20.7133 14 19.7468V14.2468C14 14.1088 13.8881 13.9968 13.75 13.9968H10.25C10.1119 13.9968 9.99999 14.1088 9.99999 14.2468V19.7468C9.99999 20.7133 9.2165 21.4968 8.25 21.4968H4.75C3.7835 21.4968 3 20.7133 3 19.7468V9.94406C3 9.2809 3.29255 8.65152 3.79952 8.224L10.5495 2.53189ZM12.4835 3.6786C12.2042 3.44307 11.7958 3.44307 11.5165 3.6786L4.76651 9.37071C4.59752 9.51321 4.5 9.72301 4.5 9.94406V19.7468C4.5 19.8849 4.61193 19.9968 4.75 19.9968H8.25C8.38807 19.9968 8.49999 19.8849 8.49999 19.7468V14.2468C8.49999 13.2803 9.2835 12.4968 10.25 12.4968H13.75C14.7165 12.4968 15.5 13.2803 15.5 14.2468V19.7468C15.5 19.8849 15.6119 19.9968 15.75 19.9968H19.25C19.3881 19.9968 19.5 19.8849 19.5 19.7468V9.94406C19.5 9.72301 19.4025 9.51321 19.2335 9.37071L12.4835 3.6786Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconHome, IconHome as default };
3
+ export const IconHome = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("g", { id: "Size=24, Theme=Regular", children: _jsx("path", { id: "Shape", d: "M10.5495 2.53189C11.3874 1.82531 12.6126 1.82531 13.4505 2.5319L20.2005 8.224C20.7074 8.65152 21 9.2809 21 9.94406V19.7468C21 20.7133 20.2165 21.4968 19.25 21.4968H15.75C14.7835 21.4968 14 20.7133 14 19.7468V14.2468C14 14.1088 13.8881 13.9968 13.75 13.9968H10.25C10.1119 13.9968 9.99999 14.1088 9.99999 14.2468V19.7468C9.99999 20.7133 9.2165 21.4968 8.25 21.4968H4.75C3.7835 21.4968 3 20.7133 3 19.7468V9.94406C3 9.2809 3.29255 8.65152 3.79952 8.224L10.5495 2.53189ZM12.4835 3.6786C12.2042 3.44307 11.7958 3.44307 11.5165 3.6786L4.76651 9.37071C4.59752 9.51321 4.5 9.72301 4.5 9.94406V19.7468C4.5 19.8849 4.61193 19.9968 4.75 19.9968H8.25C8.38807 19.9968 8.49999 19.8849 8.49999 19.7468V14.2468C8.49999 13.2803 9.2835 12.4968 10.25 12.4968H13.75C14.7165 12.4968 15.5 13.2803 15.5 14.2468V19.7468C15.5 19.8849 15.6119 19.9968 15.75 19.9968H19.25C19.3881 19.9968 19.5 19.8849 19.5 19.7468V9.94406C19.5 9.72301 19.4025 9.51321 19.2335 9.37071L12.4835 3.6786Z", fill: "#222222" }) }) }));
8
+ export default IconHome;