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 IconPersonArrowLeft = function IconPersonArrowLeft(_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: "M17.5001 12C20.5377 12 23.0001 14.4624 23.0001 17.5C23.0001 20.5376 20.5377 23 17.5001 23C14.4626 23 12.0001 20.5376 12.0001 17.5C12.0001 14.4624 14.4626 12 17.5001 12ZM12.0224 13.9993C11.7257 14.4626 11.4862 14.966 11.3137 15.4996L4.25366 15.4999C3.83945 15.4999 3.50366 15.8357 3.50366 16.2499V17.1573C3.50366 17.8129 3.78965 18.4359 4.28683 18.8634C5.54491 19.945 7.44092 20.5011 10.0001 20.5011C10.599 20.5011 11.1616 20.4706 11.6883 20.4101C11.9372 20.9103 12.251 21.374 12.6172 21.7905C11.815 21.9313 10.9421 22.0011 10.0001 22.0011C7.11062 22.0011 4.87181 21.3445 3.30894 20.0008C2.48032 19.2884 2.00366 18.25 2.00366 17.1573V16.2499C2.00366 15.0073 3.01102 13.9999 4.25366 13.9999L12.0224 13.9993ZM16.7193 14.5886L16.6501 14.6465L14.1345 17.1628L14.0938 17.2134L14.0592 17.2708L14.0269 17.3488L14.0154 17.392L14.0041 17.4784L14.008 17.5659L14.0269 17.651L14.0589 17.7287L14.0835 17.7711L14.1344 17.8371L16.6501 20.3536C16.8454 20.5488 17.1619 20.5488 17.3572 20.3536C17.5308 20.18 17.5501 19.9106 17.4151 19.7157L17.3572 19.6465L15.7111 18H20.5001C20.7456 18 20.9497 17.8231 20.9921 17.5899L21.0001 17.5C21.0001 17.2546 20.8232 17.0504 20.59 17.0081L20.5001 17H15.7111L17.3572 15.3536C17.5308 15.18 17.5501 14.9106 17.4151 14.7157L17.3572 14.6465C17.1836 14.4729 16.9142 14.4536 16.7193 14.5886ZM10.0001 2.00464C12.7615 2.00464 15.0001 4.24321 15.0001 7.00464C15.0001 9.76606 12.7615 12.0046 10.0001 12.0046C7.2387 12.0046 5.00012 9.76606 5.00012 7.00464C5.00012 4.24321 7.2387 2.00464 10.0001 2.00464ZM10.0001 3.50464C8.06712 3.50464 6.50012 5.07164 6.50012 7.00464C6.50012 8.93764 8.06712 10.5046 10.0001 10.5046C11.9331 10.5046 13.5001 8.93764 13.5001 7.00464C13.5001 5.07164 11.9331 3.50464 10.0001 3.50464Z",
25
- fill: "#0E121B"
26
- }));
27
- };
28
-
29
- export { IconPersonArrowLeft, IconPersonArrowLeft as default };
3
+ export const IconPersonArrowLeft = ({ 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: "M17.5001 12C20.5377 12 23.0001 14.4624 23.0001 17.5C23.0001 20.5376 20.5377 23 17.5001 23C14.4626 23 12.0001 20.5376 12.0001 17.5C12.0001 14.4624 14.4626 12 17.5001 12ZM12.0224 13.9993C11.7257 14.4626 11.4862 14.966 11.3137 15.4996L4.25366 15.4999C3.83945 15.4999 3.50366 15.8357 3.50366 16.2499V17.1573C3.50366 17.8129 3.78965 18.4359 4.28683 18.8634C5.54491 19.945 7.44092 20.5011 10.0001 20.5011C10.599 20.5011 11.1616 20.4706 11.6883 20.4101C11.9372 20.9103 12.251 21.374 12.6172 21.7905C11.815 21.9313 10.9421 22.0011 10.0001 22.0011C7.11062 22.0011 4.87181 21.3445 3.30894 20.0008C2.48032 19.2884 2.00366 18.25 2.00366 17.1573V16.2499C2.00366 15.0073 3.01102 13.9999 4.25366 13.9999L12.0224 13.9993ZM16.7193 14.5886L16.6501 14.6465L14.1345 17.1628L14.0938 17.2134L14.0592 17.2708L14.0269 17.3488L14.0154 17.392L14.0041 17.4784L14.008 17.5659L14.0269 17.651L14.0589 17.7287L14.0835 17.7711L14.1344 17.8371L16.6501 20.3536C16.8454 20.5488 17.1619 20.5488 17.3572 20.3536C17.5308 20.18 17.5501 19.9106 17.4151 19.7157L17.3572 19.6465L15.7111 18H20.5001C20.7456 18 20.9497 17.8231 20.9921 17.5899L21.0001 17.5C21.0001 17.2546 20.8232 17.0504 20.59 17.0081L20.5001 17H15.7111L17.3572 15.3536C17.5308 15.18 17.5501 14.9106 17.4151 14.7157L17.3572 14.6465C17.1836 14.4729 16.9142 14.4536 16.7193 14.5886ZM10.0001 2.00464C12.7615 2.00464 15.0001 4.24321 15.0001 7.00464C15.0001 9.76606 12.7615 12.0046 10.0001 12.0046C7.2387 12.0046 5.00012 9.76606 5.00012 7.00464C5.00012 4.24321 7.2387 2.00464 10.0001 2.00464ZM10.0001 3.50464C8.06712 3.50464 6.50012 5.07164 6.50012 7.00464C6.50012 8.93764 8.06712 10.5046 10.0001 10.5046C11.9331 10.5046 13.5001 8.93764 13.5001 7.00464C13.5001 5.07164 11.9331 3.50464 10.0001 3.50464Z", fill: "#0E121B" }) }));
8
+ export default IconPersonArrowLeft;
@@ -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 IconPersonArrowLeftFilled = function IconPersonArrowLeftFilled(_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: "M17.5001 12C20.5377 12 23.0001 14.4624 23.0001 17.5C23.0001 20.5376 20.5377 23 17.5001 23C14.4626 23 12.0001 20.5376 12.0001 17.5C12.0001 14.4624 14.4626 12 17.5001 12ZM12.0224 13.9993C11.3753 15.0098 11.0001 16.2111 11.0001 17.5C11.0001 19.1442 11.6106 20.6458 12.6172 21.7905C11.815 21.9313 10.9421 22.0011 10.0001 22.0011C7.11062 22.0011 4.87181 21.3445 3.30894 20.0008C2.48032 19.2884 2.00366 18.25 2.00366 17.1573V16.2499C2.00366 15.0073 3.01102 13.9999 4.25366 13.9999L12.0224 13.9993ZM16.7193 14.5886L16.6501 14.6465L14.1345 17.1628L14.0938 17.2134L14.0592 17.2708L14.0269 17.3488L14.0154 17.392L14.0041 17.4784L14.008 17.5659L14.0269 17.651L14.0589 17.7287L14.0835 17.7711L14.1344 17.8371L16.6501 20.3536C16.8454 20.5488 17.1619 20.5488 17.3572 20.3536C17.5308 20.18 17.5501 19.9106 17.4151 19.7157L17.3572 19.6465L15.7111 18H20.5001C20.7456 18 20.9497 17.8231 20.9921 17.5899L21.0001 17.5C21.0001 17.2546 20.8232 17.0504 20.59 17.0081L20.5001 17H15.7111L17.3572 15.3536C17.5308 15.18 17.5501 14.9106 17.4151 14.7157L17.3572 14.6465C17.1836 14.4729 16.9142 14.4536 16.7193 14.5886ZM10.0001 2.00464C12.7615 2.00464 15.0001 4.24321 15.0001 7.00464C15.0001 9.76606 12.7615 12.0046 10.0001 12.0046C7.2387 12.0046 5.00012 9.76606 5.00012 7.00464C5.00012 4.24321 7.2387 2.00464 10.0001 2.00464Z",
25
- fill: "#0E121B"
26
- }));
27
- };
28
-
29
- export { IconPersonArrowLeftFilled, IconPersonArrowLeftFilled as default };
3
+ export const IconPersonArrowLeftFilled = ({ 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: "M17.5001 12C20.5377 12 23.0001 14.4624 23.0001 17.5C23.0001 20.5376 20.5377 23 17.5001 23C14.4626 23 12.0001 20.5376 12.0001 17.5C12.0001 14.4624 14.4626 12 17.5001 12ZM12.0224 13.9993C11.3753 15.0098 11.0001 16.2111 11.0001 17.5C11.0001 19.1442 11.6106 20.6458 12.6172 21.7905C11.815 21.9313 10.9421 22.0011 10.0001 22.0011C7.11062 22.0011 4.87181 21.3445 3.30894 20.0008C2.48032 19.2884 2.00366 18.25 2.00366 17.1573V16.2499C2.00366 15.0073 3.01102 13.9999 4.25366 13.9999L12.0224 13.9993ZM16.7193 14.5886L16.6501 14.6465L14.1345 17.1628L14.0938 17.2134L14.0592 17.2708L14.0269 17.3488L14.0154 17.392L14.0041 17.4784L14.008 17.5659L14.0269 17.651L14.0589 17.7287L14.0835 17.7711L14.1344 17.8371L16.6501 20.3536C16.8454 20.5488 17.1619 20.5488 17.3572 20.3536C17.5308 20.18 17.5501 19.9106 17.4151 19.7157L17.3572 19.6465L15.7111 18H20.5001C20.7456 18 20.9497 17.8231 20.9921 17.5899L21.0001 17.5C21.0001 17.2546 20.8232 17.0504 20.59 17.0081L20.5001 17H15.7111L17.3572 15.3536C17.5308 15.18 17.5501 14.9106 17.4151 14.7157L17.3572 14.6465C17.1836 14.4729 16.9142 14.4536 16.7193 14.5886ZM10.0001 2.00464C12.7615 2.00464 15.0001 4.24321 15.0001 7.00464C15.0001 9.76606 12.7615 12.0046 10.0001 12.0046C7.2387 12.0046 5.00012 9.76606 5.00012 7.00464C5.00012 4.24321 7.2387 2.00464 10.0001 2.00464Z", fill: "#0E121B" }) }));
8
+ export default IconPersonArrowLeftFilled;
@@ -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 IconPersonArrowRight = function IconPersonArrowRight(_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: "M11.3134 15.4999C11.4857 14.9665 11.7252 14.4631 12.0217 13.9999H4.25229C3.01027 13.9999 2.00342 15.0068 2.00342 16.2488V16.8265C2.00342 17.7193 2.32194 18.5828 2.9017 19.2617C4.468 21.0959 6.85401 22.0011 9.99988 22.0011C10.9311 22.0011 11.7958 21.9218 12.5925 21.7625C12.2333 21.3493 11.9254 20.8903 11.6788 20.3954C11.1552 20.4658 10.5958 20.5011 9.99988 20.5011C7.26157 20.5011 5.29569 19.7553 4.04239 18.2876C3.69453 17.8802 3.50342 17.3622 3.50342 16.8265V16.2488C3.50342 15.8352 3.8387 15.4999 4.25229 15.4999H11.3134ZM9.99988 2.00464C12.7613 2.00464 14.9999 4.24321 14.9999 7.00464C14.9999 9.76606 12.7613 12.0046 9.99988 12.0046C7.23845 12.0046 4.99988 9.76606 4.99988 7.00464C4.99988 4.24321 7.23845 2.00464 9.99988 2.00464ZM9.99988 3.50464C8.06688 3.50464 6.49988 5.07164 6.49988 7.00464C6.49988 8.93764 8.06688 10.5046 9.99988 10.5046C11.9329 10.5046 13.4999 8.93764 13.4999 7.00464C13.4999 5.07164 11.9329 3.50464 9.99988 3.50464ZM22.9999 17.5C22.9999 20.5376 20.5374 23 17.4999 23C14.4623 23 11.9999 20.5376 11.9999 17.5C11.9999 14.4624 14.4623 12 17.4999 12C20.5374 12 22.9999 14.4624 22.9999 17.5ZM18.3534 14.6465C18.1582 14.4512 17.8416 14.4512 17.6463 14.6465C17.4511 14.8418 17.4511 15.1583 17.6463 15.3536L19.2927 17H14.9999C14.7237 17 14.4999 17.2239 14.4999 17.5C14.4999 17.7761 14.7237 18 14.9999 18H19.2928L17.6463 19.6465C17.4511 19.8418 17.4511 20.1583 17.6463 20.3536C17.8416 20.5489 18.1582 20.5489 18.3534 20.3536L20.8534 17.8536C20.9066 17.8004 20.9453 17.7383 20.9695 17.672C20.9881 17.6211 20.9988 17.5664 20.9998 17.5093L20.9999 17.5C20.9999 17.4228 20.9824 17.3498 20.9512 17.2845C20.9359 17.2525 20.917 17.2217 20.8944 17.1928C20.8805 17.175 20.8655 17.1582 20.8493 17.1424L18.3534 14.6465Z",
25
- fill: "#0E121B"
26
- }));
27
- };
28
-
29
- export { IconPersonArrowRight, IconPersonArrowRight as default };
3
+ export const IconPersonArrowRight = ({ 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: "M11.3134 15.4999C11.4857 14.9665 11.7252 14.4631 12.0217 13.9999H4.25229C3.01027 13.9999 2.00342 15.0068 2.00342 16.2488V16.8265C2.00342 17.7193 2.32194 18.5828 2.9017 19.2617C4.468 21.0959 6.85401 22.0011 9.99988 22.0011C10.9311 22.0011 11.7958 21.9218 12.5925 21.7625C12.2333 21.3493 11.9254 20.8903 11.6788 20.3954C11.1552 20.4658 10.5958 20.5011 9.99988 20.5011C7.26157 20.5011 5.29569 19.7553 4.04239 18.2876C3.69453 17.8802 3.50342 17.3622 3.50342 16.8265V16.2488C3.50342 15.8352 3.8387 15.4999 4.25229 15.4999H11.3134ZM9.99988 2.00464C12.7613 2.00464 14.9999 4.24321 14.9999 7.00464C14.9999 9.76606 12.7613 12.0046 9.99988 12.0046C7.23845 12.0046 4.99988 9.76606 4.99988 7.00464C4.99988 4.24321 7.23845 2.00464 9.99988 2.00464ZM9.99988 3.50464C8.06688 3.50464 6.49988 5.07164 6.49988 7.00464C6.49988 8.93764 8.06688 10.5046 9.99988 10.5046C11.9329 10.5046 13.4999 8.93764 13.4999 7.00464C13.4999 5.07164 11.9329 3.50464 9.99988 3.50464ZM22.9999 17.5C22.9999 20.5376 20.5374 23 17.4999 23C14.4623 23 11.9999 20.5376 11.9999 17.5C11.9999 14.4624 14.4623 12 17.4999 12C20.5374 12 22.9999 14.4624 22.9999 17.5ZM18.3534 14.6465C18.1582 14.4512 17.8416 14.4512 17.6463 14.6465C17.4511 14.8418 17.4511 15.1583 17.6463 15.3536L19.2927 17H14.9999C14.7237 17 14.4999 17.2239 14.4999 17.5C14.4999 17.7761 14.7237 18 14.9999 18H19.2928L17.6463 19.6465C17.4511 19.8418 17.4511 20.1583 17.6463 20.3536C17.8416 20.5489 18.1582 20.5489 18.3534 20.3536L20.8534 17.8536C20.9066 17.8004 20.9453 17.7383 20.9695 17.672C20.9881 17.6211 20.9988 17.5664 20.9998 17.5093L20.9999 17.5C20.9999 17.4228 20.9824 17.3498 20.9512 17.2845C20.9359 17.2525 20.917 17.2217 20.8944 17.1928C20.8805 17.175 20.8655 17.1582 20.8493 17.1424L18.3534 14.6465Z", fill: "#0E121B" }) }));
8
+ export default IconPersonArrowRight;
@@ -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 IconPersonArrowRightFilled = function IconPersonArrowRightFilled(_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: "M10.9999 17.5C10.9999 16.2113 11.3749 15.0102 12.0217 13.9999H4.25229C3.01027 13.9999 2.00342 15.0068 2.00342 16.2488V17.1688C2.00342 17.7409 2.18182 18.2987 2.51379 18.7646C4.05595 20.9289 6.57891 22.0011 9.99988 22.0011C10.931 22.0011 11.7957 21.9217 12.5924 21.7624C11.6004 20.6213 10.9999 19.1308 10.9999 17.5ZM9.99988 2.00464C12.7613 2.00464 14.9999 4.24321 14.9999 7.00464C14.9999 9.76606 12.7613 12.0046 9.99988 12.0046C7.23845 12.0046 4.99988 9.76606 4.99988 7.00464C4.99988 4.24321 7.23845 2.00464 9.99988 2.00464ZM22.9999 17.5C22.9999 20.5376 20.5374 23 17.4999 23C14.4623 23 11.9999 20.5376 11.9999 17.5C11.9999 14.4624 14.4623 12 17.4999 12C20.5374 12 22.9999 14.4624 22.9999 17.5ZM18.3534 14.6465C18.1582 14.4512 17.8416 14.4512 17.6463 14.6465C17.4511 14.8418 17.4511 15.1583 17.6463 15.3536L19.2927 17H14.9999C14.7237 17 14.4999 17.2239 14.4999 17.5C14.4999 17.7761 14.7237 18 14.9999 18H19.2928L17.6463 19.6465C17.4511 19.8418 17.4511 20.1583 17.6463 20.3536C17.8416 20.5489 18.1582 20.5489 18.3534 20.3536L20.8534 17.8536C20.9066 17.8004 20.9453 17.7383 20.9695 17.672C20.9881 17.6211 20.9988 17.5664 20.9998 17.5093L20.9999 17.5C20.9999 17.4228 20.9824 17.3498 20.9512 17.2845C20.9359 17.2525 20.917 17.2217 20.8944 17.1928C20.8805 17.175 20.8655 17.1582 20.8493 17.1424L18.3534 14.6465Z",
25
- fill: "#0E121B"
26
- }));
27
- };
28
-
29
- export { IconPersonArrowRightFilled, IconPersonArrowRightFilled as default };
3
+ export const IconPersonArrowRightFilled = ({ 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: "M10.9999 17.5C10.9999 16.2113 11.3749 15.0102 12.0217 13.9999H4.25229C3.01027 13.9999 2.00342 15.0068 2.00342 16.2488V17.1688C2.00342 17.7409 2.18182 18.2987 2.51379 18.7646C4.05595 20.9289 6.57891 22.0011 9.99988 22.0011C10.931 22.0011 11.7957 21.9217 12.5924 21.7624C11.6004 20.6213 10.9999 19.1308 10.9999 17.5ZM9.99988 2.00464C12.7613 2.00464 14.9999 4.24321 14.9999 7.00464C14.9999 9.76606 12.7613 12.0046 9.99988 12.0046C7.23845 12.0046 4.99988 9.76606 4.99988 7.00464C4.99988 4.24321 7.23845 2.00464 9.99988 2.00464ZM22.9999 17.5C22.9999 20.5376 20.5374 23 17.4999 23C14.4623 23 11.9999 20.5376 11.9999 17.5C11.9999 14.4624 14.4623 12 17.4999 12C20.5374 12 22.9999 14.4624 22.9999 17.5ZM18.3534 14.6465C18.1582 14.4512 17.8416 14.4512 17.6463 14.6465C17.4511 14.8418 17.4511 15.1583 17.6463 15.3536L19.2927 17H14.9999C14.7237 17 14.4999 17.2239 14.4999 17.5C14.4999 17.7761 14.7237 18 14.9999 18H19.2928L17.6463 19.6465C17.4511 19.8418 17.4511 20.1583 17.6463 20.3536C17.8416 20.5489 18.1582 20.5489 18.3534 20.3536L20.8534 17.8536C20.9066 17.8004 20.9453 17.7383 20.9695 17.672C20.9881 17.6211 20.9988 17.5664 20.9998 17.5093L20.9999 17.5C20.9999 17.4228 20.9824 17.3498 20.9512 17.2845C20.9359 17.2525 20.917 17.2217 20.8944 17.1928C20.8805 17.175 20.8655 17.1582 20.8493 17.1424L18.3534 14.6465Z", fill: "#0E121B" }) }));
8
+ export default IconPersonArrowRightFilled;
@@ -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 IconPersonBoard = function IconPersonBoard(_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: "M11.4375 9.1875C11.4375 8.46263 10.8499 7.875 10.125 7.875H5.625C4.90013 7.875 4.3125 8.46263 4.3125 9.1875V9.5625C4.3125 10.3717 4.69902 10.804 5.34452 11.2129C5.98137 11.6163 6.86442 11.8125 7.875 11.8125C9.0666 11.8125 9.9562 11.6186 10.552 11.209C11.1618 10.7897 11.4375 10.3509 11.4375 9.5625V9.1875ZM5.4375 9.1875C5.4375 9.08395 5.52145 9 5.625 9H10.125C10.2286 9 10.3125 9.08395 10.3125 9.1875V9.5625C10.3125 9.76231 10.2866 9.80894 10.2359 9.89998C10.2232 9.9229 10.2088 9.94866 10.193 9.98037C10.1153 10.1357 9.99497 10.2635 9.81586 10.367C9.44651 10.5805 8.83424 10.6875 7.875 10.6875C7.11087 10.6875 6.49027 10.5827 6.06736 10.363C5.85835 10.2544 5.70275 10.1204 5.59902 9.96168C5.57492 9.9248 5.55326 9.8963 5.53421 9.87124C5.47183 9.78916 5.4375 9.74399 5.4375 9.5625V9.1875ZM9.75 5.625C9.75 6.66053 8.91053 7.5 7.875 7.5C6.83947 7.5 6 6.66053 6 5.625C6 4.58947 6.83947 3.75 7.875 3.75C8.91053 3.75 9.75 4.58947 9.75 5.625ZM8.625 5.625C8.625 5.21079 8.28921 4.875 7.875 4.875C7.46079 4.875 7.125 5.21079 7.125 5.625C7.125 6.03921 7.46079 6.375 7.875 6.375C8.28921 6.375 8.625 6.03921 8.625 5.625ZM2.25 4.6875C2.25 3.34131 3.34131 2.25 4.6875 2.25H11.0625C12.4087 2.25 13.5 3.34131 13.5 4.6875V11.0625C13.5 12.4087 12.4087 13.5 11.0625 13.5H4.6875C3.34131 13.5 2.25 12.4087 2.25 11.0625V4.6875ZM4.6875 3.375C3.96263 3.375 3.375 3.96263 3.375 4.6875V11.0625C3.375 11.7874 3.96263 12.375 4.6875 12.375H11.0625C11.7874 12.375 12.375 11.7874 12.375 11.0625V4.6875C12.375 3.96263 11.7874 3.375 11.0625 3.375H4.6875ZM6.56249 15.375C5.69954 15.375 4.94132 14.9265 4.50817 14.25H11.4375C12.9908 14.25 14.25 12.9908 14.25 11.4375V4.50815C14.9265 4.9413 15.375 5.69951 15.375 6.56247V11.4375C15.375 13.6121 13.6121 15.375 11.4375 15.375H6.56249Z",
25
- fill: "#72BF44"
26
- }));
27
- };
28
-
29
- export { IconPersonBoard, IconPersonBoard as default };
3
+ export const IconPersonBoard = ({ 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: "M11.4375 9.1875C11.4375 8.46263 10.8499 7.875 10.125 7.875H5.625C4.90013 7.875 4.3125 8.46263 4.3125 9.1875V9.5625C4.3125 10.3717 4.69902 10.804 5.34452 11.2129C5.98137 11.6163 6.86442 11.8125 7.875 11.8125C9.0666 11.8125 9.9562 11.6186 10.552 11.209C11.1618 10.7897 11.4375 10.3509 11.4375 9.5625V9.1875ZM5.4375 9.1875C5.4375 9.08395 5.52145 9 5.625 9H10.125C10.2286 9 10.3125 9.08395 10.3125 9.1875V9.5625C10.3125 9.76231 10.2866 9.80894 10.2359 9.89998C10.2232 9.9229 10.2088 9.94866 10.193 9.98037C10.1153 10.1357 9.99497 10.2635 9.81586 10.367C9.44651 10.5805 8.83424 10.6875 7.875 10.6875C7.11087 10.6875 6.49027 10.5827 6.06736 10.363C5.85835 10.2544 5.70275 10.1204 5.59902 9.96168C5.57492 9.9248 5.55326 9.8963 5.53421 9.87124C5.47183 9.78916 5.4375 9.74399 5.4375 9.5625V9.1875ZM9.75 5.625C9.75 6.66053 8.91053 7.5 7.875 7.5C6.83947 7.5 6 6.66053 6 5.625C6 4.58947 6.83947 3.75 7.875 3.75C8.91053 3.75 9.75 4.58947 9.75 5.625ZM8.625 5.625C8.625 5.21079 8.28921 4.875 7.875 4.875C7.46079 4.875 7.125 5.21079 7.125 5.625C7.125 6.03921 7.46079 6.375 7.875 6.375C8.28921 6.375 8.625 6.03921 8.625 5.625ZM2.25 4.6875C2.25 3.34131 3.34131 2.25 4.6875 2.25H11.0625C12.4087 2.25 13.5 3.34131 13.5 4.6875V11.0625C13.5 12.4087 12.4087 13.5 11.0625 13.5H4.6875C3.34131 13.5 2.25 12.4087 2.25 11.0625V4.6875ZM4.6875 3.375C3.96263 3.375 3.375 3.96263 3.375 4.6875V11.0625C3.375 11.7874 3.96263 12.375 4.6875 12.375H11.0625C11.7874 12.375 12.375 11.7874 12.375 11.0625V4.6875C12.375 3.96263 11.7874 3.375 11.0625 3.375H4.6875ZM6.56249 15.375C5.69954 15.375 4.94132 14.9265 4.50817 14.25H11.4375C12.9908 14.25 14.25 12.9908 14.25 11.4375V4.50815C14.9265 4.9413 15.375 5.69951 15.375 6.56247V11.4375C15.375 13.6121 13.6121 15.375 11.4375 15.375H6.56249Z", fill: "#72BF44" }) }));
8
+ export default IconPersonBoard;
@@ -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 IconPersonFilled = function IconPersonFilled(_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: "M17.7542 13.9999C18.9962 13.9999 20.003 15.0068 20.003 16.2488V17.1673C20.003 17.7406 19.8238 18.2997 19.4905 18.7662C17.9446 20.9294 15.4203 22.0011 12 22.0011C8.57903 22.0011 6.05607 20.9289 4.51391 18.7646C4.18195 18.2987 4.00354 17.7409 4.00354 17.1688V16.2488C4.00354 15.0068 5.0104 13.9999 6.25242 13.9999H17.7542ZM12 2.00464C14.7614 2.00464 17 4.24321 17 7.00464C17 9.76606 14.7614 12.0046 12 12.0046C9.23857 12.0046 7 9.76606 7 7.00464C7 4.24321 9.23857 2.00464 12 2.00464Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconPersonFilled, IconPersonFilled as default };
3
+ export const IconPersonFilled = ({ 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: "M17.7542 13.9999C18.9962 13.9999 20.003 15.0068 20.003 16.2488V17.1673C20.003 17.7406 19.8238 18.2997 19.4905 18.7662C17.9446 20.9294 15.4203 22.0011 12 22.0011C8.57903 22.0011 6.05607 20.9289 4.51391 18.7646C4.18195 18.2987 4.00354 17.7409 4.00354 17.1688V16.2488C4.00354 15.0068 5.0104 13.9999 6.25242 13.9999H17.7542ZM12 2.00464C14.7614 2.00464 17 4.24321 17 7.00464C17 9.76606 14.7614 12.0046 12 12.0046C9.23857 12.0046 7 9.76606 7 7.00464C7 4.24321 9.23857 2.00464 12 2.00464Z", fill: "#222222" }) }) }));
8
+ export default IconPersonFilled;
@@ -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 IconPersonMinus = function IconPersonMinus(_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: "M1.00009 21C1.00009 19.6774 0.988894 18.7943 1.21493 18.0488C1.69969 16.4508 2.95092 15.1996 4.54892 14.7148C5.29437 14.4888 6.1775 14.5 7.50009 14.5H12.0001C12.5524 14.5 13.0001 14.9477 13.0001 15.5C13.0001 16.0523 12.5524 16.5 12.0001 16.5H7.50009C6.03177 16.5 5.51906 16.5106 5.129 16.6289C4.17031 16.9198 3.41986 17.6702 3.129 18.6289C3.01067 19.019 3.00009 19.5317 3.00009 21C3.00009 21.5523 2.55238 22 2.00009 22C1.44781 22 1.00009 21.5523 1.00009 21ZM22.0001 17C22.5524 17 23.0001 17.4477 23.0001 18C23.0001 18.5523 22.5524 19 22.0001 19H16.0001C15.4478 19 15.0001 18.5523 15.0001 18C15.0001 17.4477 15.4478 17 16.0001 17H22.0001ZM13.5001 7.5C13.5001 5.567 11.9331 4 10.0001 4C8.06709 4 6.50009 5.567 6.50009 7.5C6.50009 9.433 8.06709 11 10.0001 11C11.9331 11 13.5001 9.433 13.5001 7.5ZM15.5001 7.5C15.5001 10.5376 13.0377 13 10.0001 13C6.96252 13 4.50009 10.5376 4.50009 7.5C4.50009 4.46243 6.96252 2 10.0001 2C13.0377 2 15.5001 4.46243 15.5001 7.5Z",
25
- fill: "#0E121B"
26
- }));
27
- };
28
-
29
- export { IconPersonMinus, IconPersonMinus as default };
3
+ export const IconPersonMinus = ({ 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: "M1.00009 21C1.00009 19.6774 0.988894 18.7943 1.21493 18.0488C1.69969 16.4508 2.95092 15.1996 4.54892 14.7148C5.29437 14.4888 6.1775 14.5 7.50009 14.5H12.0001C12.5524 14.5 13.0001 14.9477 13.0001 15.5C13.0001 16.0523 12.5524 16.5 12.0001 16.5H7.50009C6.03177 16.5 5.51906 16.5106 5.129 16.6289C4.17031 16.9198 3.41986 17.6702 3.129 18.6289C3.01067 19.019 3.00009 19.5317 3.00009 21C3.00009 21.5523 2.55238 22 2.00009 22C1.44781 22 1.00009 21.5523 1.00009 21ZM22.0001 17C22.5524 17 23.0001 17.4477 23.0001 18C23.0001 18.5523 22.5524 19 22.0001 19H16.0001C15.4478 19 15.0001 18.5523 15.0001 18C15.0001 17.4477 15.4478 17 16.0001 17H22.0001ZM13.5001 7.5C13.5001 5.567 11.9331 4 10.0001 4C8.06709 4 6.50009 5.567 6.50009 7.5C6.50009 9.433 8.06709 11 10.0001 11C11.9331 11 13.5001 9.433 13.5001 7.5ZM15.5001 7.5C15.5001 10.5376 13.0377 13 10.0001 13C6.96252 13 4.50009 10.5376 4.50009 7.5C4.50009 4.46243 6.96252 2 10.0001 2C13.0377 2 15.5001 4.46243 15.5001 7.5Z", fill: "#0E121B" }) }));
8
+ export default IconPersonMinus;
@@ -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 IconPersonStar = function IconPersonStar(_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: "M11.3079 15.4992C11.4803 14.9657 11.7198 14.4624 12.0165 13.9992H5.24692C4.0049 13.9992 2.99805 15.0061 2.99805 16.2481V16.8258C2.99805 17.7185 3.31657 18.582 3.89633 19.2609C5.46263 21.0952 7.84864 22.0004 10.9945 22.0004C11.5944 22.0004 12.1667 21.9674 12.7111 21.9014C12.32 21.4767 11.9848 20.9997 11.7171 20.4821C11.4825 20.4943 11.2416 20.5004 10.9945 20.5004C8.2562 20.5004 6.29032 19.7546 5.03701 18.2869C4.68916 17.8795 4.49805 17.3614 4.49805 16.8258V16.2481C4.49805 15.8345 4.83333 15.4992 5.24692 15.4992H11.3079ZM10.9945 2.00391C13.7559 2.00391 15.9945 4.24248 15.9945 7.00391C15.9945 9.76533 13.7559 12.0039 10.9945 12.0039C8.23308 12.0039 5.99451 9.76533 5.99451 7.00391C5.99451 4.24248 8.23308 2.00391 10.9945 2.00391ZM10.9945 3.50391C9.06151 3.50391 7.49451 5.07091 7.49451 7.00391C7.49451 8.9369 9.06151 10.5039 10.9945 10.5039C12.9275 10.5039 14.4945 8.9369 14.4945 7.00391C14.4945 5.07091 12.9275 3.50391 10.9945 3.50391ZM22.9941 17.5C22.9941 20.5376 20.5317 23 17.4941 23C14.4566 23 11.9941 20.5376 11.9941 17.5C11.9941 14.4624 14.4566 12 17.4941 12C20.5317 12 22.9941 14.4624 22.9941 17.5ZM18.0495 14.4206C17.8747 13.8598 17.1136 13.8598 16.9388 14.4206L16.3818 16.2077H14.5792C14.0135 16.2077 13.7783 16.9623 14.236 17.3089L15.6943 18.4134L15.1372 20.2004C14.9624 20.7612 15.5782 21.2276 16.0358 20.881L17.4941 19.7766L18.9524 20.881C19.4101 21.2276 20.0258 20.7612 19.851 20.2004L19.294 18.4134L20.7523 17.3089C21.21 16.9623 20.9748 16.2077 20.4091 16.2077H18.6065L18.0495 14.4206Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconPersonStar, IconPersonStar as default };
3
+ export const IconPersonStar = ({ 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: "M11.3079 15.4992C11.4803 14.9657 11.7198 14.4624 12.0165 13.9992H5.24692C4.0049 13.9992 2.99805 15.0061 2.99805 16.2481V16.8258C2.99805 17.7185 3.31657 18.582 3.89633 19.2609C5.46263 21.0952 7.84864 22.0004 10.9945 22.0004C11.5944 22.0004 12.1667 21.9674 12.7111 21.9014C12.32 21.4767 11.9848 20.9997 11.7171 20.4821C11.4825 20.4943 11.2416 20.5004 10.9945 20.5004C8.2562 20.5004 6.29032 19.7546 5.03701 18.2869C4.68916 17.8795 4.49805 17.3614 4.49805 16.8258V16.2481C4.49805 15.8345 4.83333 15.4992 5.24692 15.4992H11.3079ZM10.9945 2.00391C13.7559 2.00391 15.9945 4.24248 15.9945 7.00391C15.9945 9.76533 13.7559 12.0039 10.9945 12.0039C8.23308 12.0039 5.99451 9.76533 5.99451 7.00391C5.99451 4.24248 8.23308 2.00391 10.9945 2.00391ZM10.9945 3.50391C9.06151 3.50391 7.49451 5.07091 7.49451 7.00391C7.49451 8.9369 9.06151 10.5039 10.9945 10.5039C12.9275 10.5039 14.4945 8.9369 14.4945 7.00391C14.4945 5.07091 12.9275 3.50391 10.9945 3.50391ZM22.9941 17.5C22.9941 20.5376 20.5317 23 17.4941 23C14.4566 23 11.9941 20.5376 11.9941 17.5C11.9941 14.4624 14.4566 12 17.4941 12C20.5317 12 22.9941 14.4624 22.9941 17.5ZM18.0495 14.4206C17.8747 13.8598 17.1136 13.8598 16.9388 14.4206L16.3818 16.2077H14.5792C14.0135 16.2077 13.7783 16.9623 14.236 17.3089L15.6943 18.4134L15.1372 20.2004C14.9624 20.7612 15.5782 21.2276 16.0358 20.881L17.4941 19.7766L18.9524 20.881C19.4101 21.2276 20.0258 20.7612 19.851 20.2004L19.294 18.4134L20.7523 17.3089C21.21 16.9623 20.9748 16.2077 20.4091 16.2077H18.6065L18.0495 14.4206Z", fill: "#222222" }) }) }));
8
+ export default IconPersonStar;
@@ -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 IconPersonStarFilled = function IconPersonStarFilled(_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: "M10.9941 17.5C10.9941 16.211 11.3693 15.0097 12.0165 13.9992H5.24692C4.0049 13.9992 2.99805 15.0061 2.99805 16.2481V17.1681C2.99805 17.7401 3.17645 18.298 3.50841 18.7639C5.05058 20.9282 7.57354 22.0004 10.9945 22.0004C11.5944 22.0004 12.1667 21.9674 12.711 21.9014C11.6451 20.7436 10.9941 19.1978 10.9941 17.5ZM10.9945 2.00391C13.7559 2.00391 15.9945 4.24248 15.9945 7.00391C15.9945 9.76533 13.7559 12.0039 10.9945 12.0039C8.23308 12.0039 5.99451 9.76533 5.99451 7.00391C5.99451 4.24248 8.23308 2.00391 10.9945 2.00391ZM22.9941 17.5C22.9941 20.5376 20.5317 23 17.4941 23C14.4566 23 11.9941 20.5376 11.9941 17.5C11.9941 14.4624 14.4566 12 17.4941 12C20.5317 12 22.9941 14.4624 22.9941 17.5ZM18.0495 14.4206C17.8747 13.8598 17.1136 13.8598 16.9388 14.4206L16.3818 16.2077H14.5792C14.0135 16.2077 13.7783 16.9623 14.236 17.3089L15.6943 18.4134L15.1372 20.2004C14.9624 20.7612 15.5782 21.2276 16.0358 20.881L17.4941 19.7766L18.9524 20.881C19.4101 21.2276 20.0258 20.7612 19.851 20.2004L19.294 18.4134L20.7523 17.3089C21.21 16.9623 20.9748 16.2077 20.4091 16.2077H18.6065L18.0495 14.4206Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconPersonStarFilled, IconPersonStarFilled as default };
3
+ export const IconPersonStarFilled = ({ 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: "M10.9941 17.5C10.9941 16.211 11.3693 15.0097 12.0165 13.9992H5.24692C4.0049 13.9992 2.99805 15.0061 2.99805 16.2481V17.1681C2.99805 17.7401 3.17645 18.298 3.50841 18.7639C5.05058 20.9282 7.57354 22.0004 10.9945 22.0004C11.5944 22.0004 12.1667 21.9674 12.711 21.9014C11.6451 20.7436 10.9941 19.1978 10.9941 17.5ZM10.9945 2.00391C13.7559 2.00391 15.9945 4.24248 15.9945 7.00391C15.9945 9.76533 13.7559 12.0039 10.9945 12.0039C8.23308 12.0039 5.99451 9.76533 5.99451 7.00391C5.99451 4.24248 8.23308 2.00391 10.9945 2.00391ZM22.9941 17.5C22.9941 20.5376 20.5317 23 17.4941 23C14.4566 23 11.9941 20.5376 11.9941 17.5C11.9941 14.4624 14.4566 12 17.4941 12C20.5317 12 22.9941 14.4624 22.9941 17.5ZM18.0495 14.4206C17.8747 13.8598 17.1136 13.8598 16.9388 14.4206L16.3818 16.2077H14.5792C14.0135 16.2077 13.7783 16.9623 14.236 17.3089L15.6943 18.4134L15.1372 20.2004C14.9624 20.7612 15.5782 21.2276 16.0358 20.881L17.4941 19.7766L18.9524 20.881C19.4101 21.2276 20.0258 20.7612 19.851 20.2004L19.294 18.4134L20.7523 17.3089C21.21 16.9623 20.9748 16.2077 20.4091 16.2077H18.6065L18.0495 14.4206Z", fill: "#222222" }) }) }));
8
+ export default IconPersonStarFilled;
@@ -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 IconPersonSubtract = function IconPersonSubtract(_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: "M11.9942 2.40002C9.34327 2.40002 7.19424 4.54906 7.19424 7.20002C7.19424 9.85099 9.34327 12 11.9942 12C14.6452 12 16.7942 9.85099 16.7942 7.20002C16.7942 4.54906 14.6452 2.40002 11.9942 2.40002ZM8.39424 7.20002C8.39424 5.2118 10.006 3.60002 11.9942 3.60002C13.9825 3.60002 15.5942 5.2118 15.5942 7.20002C15.5942 9.18825 13.9825 10.8 11.9942 10.8C10.006 10.8 8.39424 9.18825 8.39424 7.20002ZM6.00471 13.2C4.67802 13.2 3.59424 14.2643 3.59424 15.6C3.59424 17.6295 4.59361 19.1596 6.15623 20.1559C7.6946 21.1368 9.76855 21.6 11.9942 21.6C12.0966 21.6 12.1987 21.599 12.3004 21.5971C11.9952 21.2271 11.7295 20.8232 11.5098 20.392C9.62936 20.3293 7.98543 19.8991 6.80138 19.1441C5.54096 18.3405 4.79424 17.1706 4.79424 15.6C4.79424 14.9361 5.33167 14.4 6.00471 14.4L11.5139 14.4C11.7334 13.9707 11.9985 13.5686 12.3028 13.2L6.00471 13.2ZM22.7942 17.4C22.7942 20.3824 20.3766 22.8 17.3942 22.8C14.4119 22.8 11.9942 20.3824 11.9942 17.4C11.9942 14.4177 14.4119 12 17.3942 12C20.3766 12 22.7942 14.4177 22.7942 17.4ZM14.3942 17.4C14.3942 17.7314 14.6629 18 14.9942 18H19.7942C20.1256 18 20.3942 17.7314 20.3942 17.4C20.3942 17.0687 20.1256 16.8 19.7942 16.8H14.9942C14.6629 16.8 14.3942 17.0687 14.3942 17.4Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconPersonSubtract, IconPersonSubtract as default };
3
+ export const IconPersonSubtract = ({ 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: "M11.9942 2.40002C9.34327 2.40002 7.19424 4.54906 7.19424 7.20002C7.19424 9.85099 9.34327 12 11.9942 12C14.6452 12 16.7942 9.85099 16.7942 7.20002C16.7942 4.54906 14.6452 2.40002 11.9942 2.40002ZM8.39424 7.20002C8.39424 5.2118 10.006 3.60002 11.9942 3.60002C13.9825 3.60002 15.5942 5.2118 15.5942 7.20002C15.5942 9.18825 13.9825 10.8 11.9942 10.8C10.006 10.8 8.39424 9.18825 8.39424 7.20002ZM6.00471 13.2C4.67802 13.2 3.59424 14.2643 3.59424 15.6C3.59424 17.6295 4.59361 19.1596 6.15623 20.1559C7.6946 21.1368 9.76855 21.6 11.9942 21.6C12.0966 21.6 12.1987 21.599 12.3004 21.5971C11.9952 21.2271 11.7295 20.8232 11.5098 20.392C9.62936 20.3293 7.98543 19.8991 6.80138 19.1441C5.54096 18.3405 4.79424 17.1706 4.79424 15.6C4.79424 14.9361 5.33167 14.4 6.00471 14.4L11.5139 14.4C11.7334 13.9707 11.9985 13.5686 12.3028 13.2L6.00471 13.2ZM22.7942 17.4C22.7942 20.3824 20.3766 22.8 17.3942 22.8C14.4119 22.8 11.9942 20.3824 11.9942 17.4C11.9942 14.4177 14.4119 12 17.3942 12C20.3766 12 22.7942 14.4177 22.7942 17.4ZM14.3942 17.4C14.3942 17.7314 14.6629 18 14.9942 18H19.7942C20.1256 18 20.3942 17.7314 20.3942 17.4C20.3942 17.0687 20.1256 16.8 19.7942 16.8H14.9942C14.6629 16.8 14.3942 17.0687 14.3942 17.4Z", fill: "#222222" }) }) }));
8
+ export default IconPersonSubtract;
@@ -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 IconPersonSubtractFilled = function IconPersonSubtractFilled(_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: "M11.9942 2.40002C9.34327 2.40002 7.19424 4.54906 7.19424 7.20002C7.19424 9.85099 9.34327 12 11.9942 12C14.6452 12 16.7942 9.85099 16.7942 7.20002C16.7942 4.54906 14.6452 2.40002 11.9942 2.40002ZM6.00471 13.2C4.67802 13.2 3.59424 14.2643 3.59424 15.6C3.59424 17.6295 4.59361 19.1596 6.15623 20.1559C7.6946 21.1368 9.76855 21.6 11.9942 21.6C12.0966 21.6 12.1987 21.599 12.3004 21.5971C11.3594 20.4564 10.7942 18.9942 10.7942 17.4C10.7942 15.8045 11.3604 14.3412 12.3028 13.2L6.00471 13.2ZM22.7942 17.4C22.7942 20.3824 20.3766 22.8 17.3942 22.8C14.4119 22.8 11.9942 20.3824 11.9942 17.4C11.9942 14.4177 14.4119 12 17.3942 12C20.3766 12 22.7942 14.4177 22.7942 17.4ZM14.3942 17.4C14.3942 17.7314 14.6629 18 14.9942 18H19.7942C20.1256 18 20.3942 17.7314 20.3942 17.4C20.3942 17.0687 20.1256 16.8 19.7942 16.8H14.9942C14.6629 16.8 14.3942 17.0687 14.3942 17.4Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconPersonSubtractFilled, IconPersonSubtractFilled as default };
3
+ export const IconPersonSubtractFilled = ({ 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: "M11.9942 2.40002C9.34327 2.40002 7.19424 4.54906 7.19424 7.20002C7.19424 9.85099 9.34327 12 11.9942 12C14.6452 12 16.7942 9.85099 16.7942 7.20002C16.7942 4.54906 14.6452 2.40002 11.9942 2.40002ZM6.00471 13.2C4.67802 13.2 3.59424 14.2643 3.59424 15.6C3.59424 17.6295 4.59361 19.1596 6.15623 20.1559C7.6946 21.1368 9.76855 21.6 11.9942 21.6C12.0966 21.6 12.1987 21.599 12.3004 21.5971C11.3594 20.4564 10.7942 18.9942 10.7942 17.4C10.7942 15.8045 11.3604 14.3412 12.3028 13.2L6.00471 13.2ZM22.7942 17.4C22.7942 20.3824 20.3766 22.8 17.3942 22.8C14.4119 22.8 11.9942 20.3824 11.9942 17.4C11.9942 14.4177 14.4119 12 17.3942 12C20.3766 12 22.7942 14.4177 22.7942 17.4ZM14.3942 17.4C14.3942 17.7314 14.6629 18 14.9942 18H19.7942C20.1256 18 20.3942 17.7314 20.3942 17.4C20.3942 17.0687 20.1256 16.8 19.7942 16.8H14.9942C14.6629 16.8 14.3942 17.0687 14.3942 17.4Z", fill: "#222222" }) }) }));
8
+ export default IconPersonSubtractFilled;
@@ -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 IconPhone = function IconPhone(_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: "M15.7441 2C16.9868 2 17.9941 3.00736 17.9941 4.25V19.75C17.9941 20.9926 16.9868 22 15.7441 22H8.24414C7.0015 22 5.99414 20.9926 5.99414 19.75V4.25C5.99414 3.00736 7.0015 2 8.24414 2H15.7441ZM15.7441 3.5H8.24414C7.82993 3.5 7.49414 3.83579 7.49414 4.25V19.75C7.49414 20.1642 7.82993 20.5 8.24414 20.5H15.7441C16.1584 20.5 16.4941 20.1642 16.4941 19.75V4.25C16.4941 3.83579 16.1584 3.5 15.7441 3.5ZM13.243 17.5C13.6572 17.4994 13.9935 17.8347 13.9941 18.2489C13.9948 18.6631 13.6595 18.9994 13.2453 19L10.7453 19.0038C10.3311 19.0044 9.99476 18.6691 9.99414 18.2549C9.99352 17.8407 10.3288 17.5044 10.743 17.5038L13.243 17.5Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconPhone, IconPhone as default };
3
+ export const IconPhone = ({ 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: "M15.7441 2C16.9868 2 17.9941 3.00736 17.9941 4.25V19.75C17.9941 20.9926 16.9868 22 15.7441 22H8.24414C7.0015 22 5.99414 20.9926 5.99414 19.75V4.25C5.99414 3.00736 7.0015 2 8.24414 2H15.7441ZM15.7441 3.5H8.24414C7.82993 3.5 7.49414 3.83579 7.49414 4.25V19.75C7.49414 20.1642 7.82993 20.5 8.24414 20.5H15.7441C16.1584 20.5 16.4941 20.1642 16.4941 19.75V4.25C16.4941 3.83579 16.1584 3.5 15.7441 3.5ZM13.243 17.5C13.6572 17.4994 13.9935 17.8347 13.9941 18.2489C13.9948 18.6631 13.6595 18.9994 13.2453 19L10.7453 19.0038C10.3311 19.0044 9.99476 18.6691 9.99414 18.2549C9.99352 17.8407 10.3288 17.5044 10.743 17.5038L13.243 17.5Z", fill: "#222222" }) }) }));
8
+ export default IconPhone;
@@ -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 IconPhoneFilled = function IconPhoneFilled(_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: "M15.7441 2C16.9868 2 17.9941 3.00736 17.9941 4.25V19.75C17.9941 20.9926 16.9868 22 15.7441 22H8.24414C7.0015 22 5.99414 20.9926 5.99414 19.75V4.25C5.99414 3.00736 7.0015 2 8.24414 2H15.7441ZM13.2441 18H10.7441C10.3299 18 9.99414 18.3358 9.99414 18.75C9.99414 19.1642 10.3299 19.5 10.7441 19.5H13.2441C13.6584 19.5 13.9941 19.1642 13.9941 18.75C13.9941 18.3358 13.6584 18 13.2441 18Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconPhoneFilled, IconPhoneFilled as default };
3
+ export const IconPhoneFilled = ({ 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: "M15.7441 2C16.9868 2 17.9941 3.00736 17.9941 4.25V19.75C17.9941 20.9926 16.9868 22 15.7441 22H8.24414C7.0015 22 5.99414 20.9926 5.99414 19.75V4.25C5.99414 3.00736 7.0015 2 8.24414 2H15.7441ZM13.2441 18H10.7441C10.3299 18 9.99414 18.3358 9.99414 18.75C9.99414 19.1642 10.3299 19.5 10.7441 19.5H13.2441C13.6584 19.5 13.9941 19.1642 13.9941 18.75C13.9941 18.3358 13.6584 18 13.2441 18Z", fill: "#222222" }) }) }));
8
+ export default IconPhoneFilled;
@@ -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 IconPlugConnected = function IconPlugConnected(_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: "M14.6174 4.17813C15.2097 4.94013 15.5624 5.89763 15.5624 6.93751C15.5624 8.64997 14.6059 10.139 13.1979 10.8995C12.7111 11.1625 12.1253 11.0004 11.734 10.6091L7.39079 6.26588C6.99951 5.8746 6.83745 5.28885 7.10042 4.80199C7.8609 3.39406 9.34995 2.43751 11.0624 2.43751C12.1023 2.43751 13.0599 2.79026 13.8219 3.38262L15.5398 1.66475C15.7594 1.44508 16.1156 1.44508 16.3352 1.66475C16.5549 1.88442 16.5549 2.24058 16.3352 2.46025L14.6174 4.17813ZM13.1049 9.62486C13.9151 9.00793 14.4374 8.03296 14.4374 6.93751C14.4374 5.07355 12.9264 3.56251 11.0624 3.56251C9.96697 3.56251 8.99199 4.08486 8.37506 4.89504C8.17562 5.15695 8.23588 5.51998 8.46866 5.75277L12.2472 9.53126C12.4799 9.76405 12.843 9.8243 13.1049 9.62486ZM2.46025 16.3352L4.17804 14.6175C4.94004 15.2098 5.89754 15.5625 6.93742 15.5625C8.64988 15.5625 10.1389 14.6059 10.8994 13.198C11.1624 12.7111 11.0003 12.1254 10.609 11.7341L6.26579 7.39086C5.87451 6.99958 5.28876 6.83753 4.80189 7.1005C3.39396 7.86098 2.43741 9.35003 2.43741 11.0625C2.43741 12.1024 2.79016 13.0599 3.38254 13.822L1.66475 15.5398C1.44508 15.7594 1.44508 16.1156 1.66475 16.3352C1.88442 16.5549 2.24058 16.5549 2.46025 16.3352ZM5.75267 8.46874L9.53117 12.2472C9.76395 12.48 9.82421 12.8431 9.62477 13.105C9.00784 13.9151 8.03287 14.4375 6.93742 14.4375C5.07345 14.4375 3.56242 12.9265 3.56242 11.0625C3.56242 9.96704 4.08477 8.99207 4.89494 8.37514C5.15686 8.1757 5.51989 8.23595 5.75267 8.46874Z",
25
- fill: "#72BF44"
26
- }));
27
- };
28
-
29
- export { IconPlugConnected, IconPlugConnected as default };
3
+ export const IconPlugConnected = ({ 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: "M14.6174 4.17813C15.2097 4.94013 15.5624 5.89763 15.5624 6.93751C15.5624 8.64997 14.6059 10.139 13.1979 10.8995C12.7111 11.1625 12.1253 11.0004 11.734 10.6091L7.39079 6.26588C6.99951 5.8746 6.83745 5.28885 7.10042 4.80199C7.8609 3.39406 9.34995 2.43751 11.0624 2.43751C12.1023 2.43751 13.0599 2.79026 13.8219 3.38262L15.5398 1.66475C15.7594 1.44508 16.1156 1.44508 16.3352 1.66475C16.5549 1.88442 16.5549 2.24058 16.3352 2.46025L14.6174 4.17813ZM13.1049 9.62486C13.9151 9.00793 14.4374 8.03296 14.4374 6.93751C14.4374 5.07355 12.9264 3.56251 11.0624 3.56251C9.96697 3.56251 8.99199 4.08486 8.37506 4.89504C8.17562 5.15695 8.23588 5.51998 8.46866 5.75277L12.2472 9.53126C12.4799 9.76405 12.843 9.8243 13.1049 9.62486ZM2.46025 16.3352L4.17804 14.6175C4.94004 15.2098 5.89754 15.5625 6.93742 15.5625C8.64988 15.5625 10.1389 14.6059 10.8994 13.198C11.1624 12.7111 11.0003 12.1254 10.609 11.7341L6.26579 7.39086C5.87451 6.99958 5.28876 6.83753 4.80189 7.1005C3.39396 7.86098 2.43741 9.35003 2.43741 11.0625C2.43741 12.1024 2.79016 13.0599 3.38254 13.822L1.66475 15.5398C1.44508 15.7594 1.44508 16.1156 1.66475 16.3352C1.88442 16.5549 2.24058 16.5549 2.46025 16.3352ZM5.75267 8.46874L9.53117 12.2472C9.76395 12.48 9.82421 12.8431 9.62477 13.105C9.00784 13.9151 8.03287 14.4375 6.93742 14.4375C5.07345 14.4375 3.56242 12.9265 3.56242 11.0625C3.56242 9.96704 4.08477 8.99207 4.89494 8.37514C5.15686 8.1757 5.51989 8.23595 5.75267 8.46874Z", fill: "#72BF44" }) }));
8
+ export default IconPlugConnected;