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,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 IconOpenFilled = function IconOpenFilled(_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: "M6.24991 4.75C5.42151 4.75 4.74995 5.42157 4.74995 6.25V17.75C4.74995 18.5784 5.42151 19.25 6.24991 19.25H17.7496C18.578 19.25 19.2496 18.5784 19.2496 17.75V13.75C19.2496 13.1977 19.6973 12.75 20.2496 12.75C20.8018 12.75 21.2495 13.1977 21.2495 13.75V17.75C21.2495 19.683 19.6826 21.25 17.7496 21.25H6.24991C4.31696 21.25 2.75 19.683 2.75 17.75V6.25C2.75 4.317 4.31697 2.75 6.24991 2.75H10.2498C10.8021 2.75 11.2498 3.19772 11.2498 3.75C11.2498 4.30228 10.8021 4.75 10.2498 4.75H6.24991ZM12.7498 3.75C12.7498 3.19772 13.1975 2.75 13.7497 2.75H20.25C20.8023 2.75 21.25 3.19772 21.25 3.75V10.25C21.25 10.8023 20.8023 11.25 20.25 11.25C19.6978 11.25 19.25 10.8023 19.25 10.25V6.16425L14.4568 10.9571C14.0663 11.3476 13.4331 11.3476 13.0426 10.9571C12.6521 10.5665 12.6521 9.93336 13.0427 9.54286L17.8359 4.75H13.7497C13.1975 4.75 12.7498 4.30228 12.7498 3.75Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconOpenFilled, IconOpenFilled as default };
3
+ export const IconOpenFilled = ({ 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: "M6.24991 4.75C5.42151 4.75 4.74995 5.42157 4.74995 6.25V17.75C4.74995 18.5784 5.42151 19.25 6.24991 19.25H17.7496C18.578 19.25 19.2496 18.5784 19.2496 17.75V13.75C19.2496 13.1977 19.6973 12.75 20.2496 12.75C20.8018 12.75 21.2495 13.1977 21.2495 13.75V17.75C21.2495 19.683 19.6826 21.25 17.7496 21.25H6.24991C4.31696 21.25 2.75 19.683 2.75 17.75V6.25C2.75 4.317 4.31697 2.75 6.24991 2.75H10.2498C10.8021 2.75 11.2498 3.19772 11.2498 3.75C11.2498 4.30228 10.8021 4.75 10.2498 4.75H6.24991ZM12.7498 3.75C12.7498 3.19772 13.1975 2.75 13.7497 2.75H20.25C20.8023 2.75 21.25 3.19772 21.25 3.75V10.25C21.25 10.8023 20.8023 11.25 20.25 11.25C19.6978 11.25 19.25 10.8023 19.25 10.25V6.16425L14.4568 10.9571C14.0663 11.3476 13.4331 11.3476 13.0426 10.9571C12.6521 10.5665 12.6521 9.93336 13.0427 9.54286L17.8359 4.75H13.7497C13.1975 4.75 12.7498 4.30228 12.7498 3.75Z", fill: "#222222" }) }) }));
8
+ export default IconOpenFilled;
@@ -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 IconPatient = function IconPatient(_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.75 2C18.9926 2 20 3.00736 20 4.25V19.7546C20 20.9972 18.9926 22.0046 17.75 22.0046H6.25C5.00736 22.0046 4 20.9972 4 19.7546V4.25C4 3.05914 4.92516 2.08436 6.09595 2.00519L6.25 2H17.75ZM18.5 16H5.5V19.7546C5.5 20.1688 5.83579 20.5046 6.25 20.5046H17.75C18.1642 20.5046 18.5 20.1688 18.5 19.7546V16ZM7.75129 17.5H16.25C16.6642 17.5 17 17.8358 17 18.25C17 18.6297 16.7178 18.9435 16.3518 18.9932L16.25 19H7.75129C7.33707 19 7.00129 18.6642 7.00129 18.25C7.00129 17.8703 7.28344 17.5565 7.64952 17.5068L7.75129 17.5H16.25H7.75129ZM17.75 3.5H6.25L6.14823 3.50685C5.78215 3.55651 5.5 3.8703 5.5 4.25V14.5H8V12.2455C8 11.5983 8.49187 11.066 9.12219 11.002L9.25 10.9955H14.75C15.3972 10.9955 15.9295 11.4874 15.9935 12.1177L16 12.2455V14.5H18.5V4.25C18.5 3.83579 18.1642 3.5 17.75 3.5ZM14.5 12.4955H9.5V14.5H14.5V12.4955ZM12 4.99552C13.3807 4.99552 14.5 6.11481 14.5 7.49552C14.5 8.87624 13.3807 9.99552 12 9.99552C10.6193 9.99552 9.5 8.87624 9.5 7.49552C9.5 6.11481 10.6193 4.99552 12 4.99552ZM12 6.49552C11.4477 6.49552 11 6.94324 11 7.49552C11 8.04781 11.4477 8.49552 12 8.49552C12.5523 8.49552 13 8.04781 13 7.49552C13 6.94324 12.5523 6.49552 12 6.49552Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconPatient, IconPatient as default };
3
+ export const IconPatient = ({ 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.75 2C18.9926 2 20 3.00736 20 4.25V19.7546C20 20.9972 18.9926 22.0046 17.75 22.0046H6.25C5.00736 22.0046 4 20.9972 4 19.7546V4.25C4 3.05914 4.92516 2.08436 6.09595 2.00519L6.25 2H17.75ZM18.5 16H5.5V19.7546C5.5 20.1688 5.83579 20.5046 6.25 20.5046H17.75C18.1642 20.5046 18.5 20.1688 18.5 19.7546V16ZM7.75129 17.5H16.25C16.6642 17.5 17 17.8358 17 18.25C17 18.6297 16.7178 18.9435 16.3518 18.9932L16.25 19H7.75129C7.33707 19 7.00129 18.6642 7.00129 18.25C7.00129 17.8703 7.28344 17.5565 7.64952 17.5068L7.75129 17.5H16.25H7.75129ZM17.75 3.5H6.25L6.14823 3.50685C5.78215 3.55651 5.5 3.8703 5.5 4.25V14.5H8V12.2455C8 11.5983 8.49187 11.066 9.12219 11.002L9.25 10.9955H14.75C15.3972 10.9955 15.9295 11.4874 15.9935 12.1177L16 12.2455V14.5H18.5V4.25C18.5 3.83579 18.1642 3.5 17.75 3.5ZM14.5 12.4955H9.5V14.5H14.5V12.4955ZM12 4.99552C13.3807 4.99552 14.5 6.11481 14.5 7.49552C14.5 8.87624 13.3807 9.99552 12 9.99552C10.6193 9.99552 9.5 8.87624 9.5 7.49552C9.5 6.11481 10.6193 4.99552 12 4.99552ZM12 6.49552C11.4477 6.49552 11 6.94324 11 7.49552C11 8.04781 11.4477 8.49552 12 8.49552C12.5523 8.49552 13 8.04781 13 7.49552C13 6.94324 12.5523 6.49552 12 6.49552Z", fill: "#222222" }) }));
8
+ export default IconPatient;
@@ -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 IconPatientFilled = function IconPatientFilled(_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.75 2C18.9926 2 20 3.00736 20 4.25V19.7546C20 20.9972 18.9926 22.0046 17.75 22.0046H6.25C5.00736 22.0046 4 20.9972 4 19.7546V4.25C4 3.05914 4.92516 2.08436 6.09595 2.00519L6.25 2H17.75ZM18.5 16H5.5V19.7546C5.5 20.1688 5.83579 20.5046 6.25 20.5046H17.75C18.1642 20.5046 18.5 20.1688 18.5 19.7546V16ZM7.75129 17.5H16.25C16.6642 17.5 17 17.8358 17 18.25C17 18.6297 16.7178 18.9435 16.3518 18.9932L16.25 19H7.75129C7.33707 19 7.00129 18.6642 7.00129 18.25C7.00129 17.8703 7.28344 17.5565 7.64952 17.5068L7.75129 17.5H16.25H7.75129ZM17.75 3.5H6.25L6.14823 3.50685C5.78215 3.55651 5.5 3.8703 5.5 4.25V14.5H8V12.2455C8 11.5983 8.49187 11.066 9.12219 11.002L9.25 10.9955H14.75C15.3972 10.9955 15.9295 11.4874 15.9935 12.1177L16 12.2455V14.5H18.5V4.25C18.5 3.83579 18.1642 3.5 17.75 3.5ZM12 4.99552C13.3807 4.99552 14.5 6.11481 14.5 7.49552C14.5 8.87624 13.3807 9.99552 12 9.99552C10.6193 9.99552 9.5 8.87624 9.5 7.49552C9.5 6.11481 10.6193 4.99552 12 4.99552Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconPatientFilled, IconPatientFilled as default };
3
+ export const IconPatientFilled = ({ 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.75 2C18.9926 2 20 3.00736 20 4.25V19.7546C20 20.9972 18.9926 22.0046 17.75 22.0046H6.25C5.00736 22.0046 4 20.9972 4 19.7546V4.25C4 3.05914 4.92516 2.08436 6.09595 2.00519L6.25 2H17.75ZM18.5 16H5.5V19.7546C5.5 20.1688 5.83579 20.5046 6.25 20.5046H17.75C18.1642 20.5046 18.5 20.1688 18.5 19.7546V16ZM7.75129 17.5H16.25C16.6642 17.5 17 17.8358 17 18.25C17 18.6297 16.7178 18.9435 16.3518 18.9932L16.25 19H7.75129C7.33707 19 7.00129 18.6642 7.00129 18.25C7.00129 17.8703 7.28344 17.5565 7.64952 17.5068L7.75129 17.5H16.25H7.75129ZM17.75 3.5H6.25L6.14823 3.50685C5.78215 3.55651 5.5 3.8703 5.5 4.25V14.5H8V12.2455C8 11.5983 8.49187 11.066 9.12219 11.002L9.25 10.9955H14.75C15.3972 10.9955 15.9295 11.4874 15.9935 12.1177L16 12.2455V14.5H18.5V4.25C18.5 3.83579 18.1642 3.5 17.75 3.5ZM12 4.99552C13.3807 4.99552 14.5 6.11481 14.5 7.49552C14.5 8.87624 13.3807 9.99552 12 9.99552C10.6193 9.99552 9.5 8.87624 9.5 7.49552C9.5 6.11481 10.6193 4.99552 12 4.99552Z", fill: "#222222" }) }));
8
+ export default IconPatientFilled;
@@ -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 IconPeople = function IconPeople(_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: "M5.5 8C5.5 6.61929 6.61929 5.5 8 5.5C9.38071 5.5 10.5 6.61929 10.5 8C10.5 9.38071 9.38071 10.5 8 10.5C6.61929 10.5 5.5 9.38071 5.5 8ZM8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4ZM15.5 9C15.5 8.17157 16.1716 7.5 17 7.5C17.8284 7.5 18.5 8.17157 18.5 9C18.5 9.82843 17.8284 10.5 17 10.5C16.1716 10.5 15.5 9.82843 15.5 9ZM17 6C15.3431 6 14 7.34315 14 9C14 10.6569 15.3431 12 17 12C18.6569 12 20 10.6569 20 9C20 7.34315 18.6569 6 17 6ZM14.2484 19.0377C14.9507 19.3232 15.8517 19.5 17.001 19.5C19.2833 19.5 20.5867 18.8027 21.2979 17.9421C21.643 17.5244 21.8186 17.1027 21.9077 16.7795C21.9521 16.6181 21.9754 16.48 21.9875 16.377C21.9936 16.3254 21.997 16.2821 21.9988 16.2487C21.9997 16.232 22.0003 16.2177 22.0006 16.2059L22.0009 16.1903L22.001 16.1839L22.001 16.1811L22.001 16.1786C22.001 14.9754 21.0256 14 19.8224 14H14.1796C14.1521 14 14.1248 14.0005 14.0977 14.0015C14.4916 14.4126 14.7787 14.927 14.914 15.5H19.8224C20.194 15.5 20.4958 15.7986 20.5009 16.1689C20.5006 16.1746 20.4997 16.1855 20.4979 16.2011C20.4934 16.2387 20.4835 16.3015 20.4615 16.3812C20.4177 16.5402 20.3277 16.7613 20.1416 16.9865C19.7903 17.4116 18.9687 18 17.001 18C16.0209 18 15.3252 17.854 14.8302 17.655C14.7231 18.0551 14.5452 18.5378 14.2484 19.0377ZM4.25 14C3.00736 14 2 15.0074 2 16.25V16.5011L2 16.5022L2.00001 16.5048L2.00007 16.5111L2.00035 16.5277C2.00064 16.5406 2.00117 16.5571 2.0021 16.5771C2.00396 16.6169 2.00745 16.6705 2.01398 16.7358C2.02701 16.8661 2.05233 17.045 2.10165 17.2564C2.19995 17.6776 2.39654 18.2404 2.79183 18.8051C3.61066 19.9749 5.17178 21 8 21C10.8282 21 12.3893 19.9749 13.2082 18.8051C13.6035 18.2404 13.8001 17.6776 13.8983 17.2564C13.9477 17.045 13.973 16.8661 13.986 16.7358C13.9926 16.6705 13.996 16.6169 13.9979 16.5771C13.9988 16.5571 13.9994 16.5406 13.9996 16.5277L13.9999 16.5111L14 16.5048L14 16.5022L14 16.25C14 15.0074 12.9926 14 11.75 14H4.25ZM3.50047 16.5072L3.5 16.4947V16.25C3.5 15.8358 3.83579 15.5 4.25 15.5H11.75C12.1642 15.5 12.5 15.8358 12.5 16.25V16.4946L12.4995 16.5072C12.4988 16.5222 12.4972 16.5493 12.4935 16.5865C12.486 16.6612 12.4703 16.7753 12.4376 16.9155C12.3718 17.1974 12.2403 17.5721 11.9793 17.9449C11.4857 18.6501 10.4218 19.5 8 19.5C5.57822 19.5 4.51434 18.6501 4.02067 17.9449C3.75971 17.5721 3.62818 17.1974 3.56241 16.9155C3.5297 16.7753 3.514 16.6612 3.50653 16.5865C3.50281 16.5493 3.50117 16.5222 3.50047 16.5072Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconPeople, IconPeople as default };
3
+ export const IconPeople = ({ 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: "M5.5 8C5.5 6.61929 6.61929 5.5 8 5.5C9.38071 5.5 10.5 6.61929 10.5 8C10.5 9.38071 9.38071 10.5 8 10.5C6.61929 10.5 5.5 9.38071 5.5 8ZM8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4ZM15.5 9C15.5 8.17157 16.1716 7.5 17 7.5C17.8284 7.5 18.5 8.17157 18.5 9C18.5 9.82843 17.8284 10.5 17 10.5C16.1716 10.5 15.5 9.82843 15.5 9ZM17 6C15.3431 6 14 7.34315 14 9C14 10.6569 15.3431 12 17 12C18.6569 12 20 10.6569 20 9C20 7.34315 18.6569 6 17 6ZM14.2484 19.0377C14.9507 19.3232 15.8517 19.5 17.001 19.5C19.2833 19.5 20.5867 18.8027 21.2979 17.9421C21.643 17.5244 21.8186 17.1027 21.9077 16.7795C21.9521 16.6181 21.9754 16.48 21.9875 16.377C21.9936 16.3254 21.997 16.2821 21.9988 16.2487C21.9997 16.232 22.0003 16.2177 22.0006 16.2059L22.0009 16.1903L22.001 16.1839L22.001 16.1811L22.001 16.1786C22.001 14.9754 21.0256 14 19.8224 14H14.1796C14.1521 14 14.1248 14.0005 14.0977 14.0015C14.4916 14.4126 14.7787 14.927 14.914 15.5H19.8224C20.194 15.5 20.4958 15.7986 20.5009 16.1689C20.5006 16.1746 20.4997 16.1855 20.4979 16.2011C20.4934 16.2387 20.4835 16.3015 20.4615 16.3812C20.4177 16.5402 20.3277 16.7613 20.1416 16.9865C19.7903 17.4116 18.9687 18 17.001 18C16.0209 18 15.3252 17.854 14.8302 17.655C14.7231 18.0551 14.5452 18.5378 14.2484 19.0377ZM4.25 14C3.00736 14 2 15.0074 2 16.25V16.5011L2 16.5022L2.00001 16.5048L2.00007 16.5111L2.00035 16.5277C2.00064 16.5406 2.00117 16.5571 2.0021 16.5771C2.00396 16.6169 2.00745 16.6705 2.01398 16.7358C2.02701 16.8661 2.05233 17.045 2.10165 17.2564C2.19995 17.6776 2.39654 18.2404 2.79183 18.8051C3.61066 19.9749 5.17178 21 8 21C10.8282 21 12.3893 19.9749 13.2082 18.8051C13.6035 18.2404 13.8001 17.6776 13.8983 17.2564C13.9477 17.045 13.973 16.8661 13.986 16.7358C13.9926 16.6705 13.996 16.6169 13.9979 16.5771C13.9988 16.5571 13.9994 16.5406 13.9996 16.5277L13.9999 16.5111L14 16.5048L14 16.5022L14 16.25C14 15.0074 12.9926 14 11.75 14H4.25ZM3.50047 16.5072L3.5 16.4947V16.25C3.5 15.8358 3.83579 15.5 4.25 15.5H11.75C12.1642 15.5 12.5 15.8358 12.5 16.25V16.4946L12.4995 16.5072C12.4988 16.5222 12.4972 16.5493 12.4935 16.5865C12.486 16.6612 12.4703 16.7753 12.4376 16.9155C12.3718 17.1974 12.2403 17.5721 11.9793 17.9449C11.4857 18.6501 10.4218 19.5 8 19.5C5.57822 19.5 4.51434 18.6501 4.02067 17.9449C3.75971 17.5721 3.62818 17.1974 3.56241 16.9155C3.5297 16.7753 3.514 16.6612 3.50653 16.5865C3.50281 16.5493 3.50117 16.5222 3.50047 16.5072Z", fill: "#222222" }) }));
8
+ export default IconPeople;
@@ -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 IconPeopleAdd = function IconPeopleAdd(_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: "M5.5 7C5.5 5.61929 6.61929 4.5 8 4.5C9.38071 4.5 10.5 5.61929 10.5 7C10.5 8.38071 9.38071 9.5 8 9.5C6.61929 9.5 5.5 8.38071 5.5 7ZM8 3C5.79086 3 4 4.79086 4 7C4 9.20914 5.79086 11 8 11C10.2091 11 12 9.20914 12 7C12 4.79086 10.2091 3 8 3ZM15.5 8C15.5 7.17157 16.1716 6.5 17 6.5C17.8284 6.5 18.5 7.17157 18.5 8C18.5 8.82843 17.8284 9.5 17 9.5C16.1716 9.5 15.5 8.82843 15.5 8ZM17 5C15.3431 5 14 6.34315 14 8C14 9.65685 15.3431 11 17 11C18.6569 11 20 9.65685 20 8C20 6.34315 18.6569 5 17 5ZM4.25 13C3.00736 13 2 14.0074 2 15.25V15.5011L2 15.5022L2.00001 15.5048L2.00007 15.5111L2.00035 15.5277C2.00064 15.5406 2.00117 15.5571 2.0021 15.5771C2.00396 15.6169 2.00745 15.6705 2.01398 15.7358C2.02701 15.8661 2.05233 16.045 2.10165 16.2564C2.19995 16.6776 2.39654 17.2404 2.79183 17.8051C3.61066 18.9749 5.17178 20 8 20C9.36897 20 10.4411 19.7598 11.2758 19.3793C11.1268 18.8851 11.035 18.366 11.0082 17.8299C10.3633 18.2108 9.41267 18.5 8 18.5C5.57822 18.5 4.51434 17.6501 4.02067 16.9449C3.75971 16.5721 3.62818 16.1974 3.56241 15.9155C3.5297 15.7753 3.514 15.6612 3.50653 15.5865C3.50281 15.5493 3.50117 15.5222 3.50047 15.5072L3.5 15.4947V15.25C3.5 14.8358 3.83579 14.5 4.25 14.5H11.7322C11.9807 14.0233 12.2865 13.5813 12.6405 13.1831C12.3674 13.0653 12.0663 13 11.75 13H4.25ZM23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23C20.5376 23 23 20.5376 23 17.5ZM18.0006 18L18.0011 20.5035C18.0011 20.7797 17.7773 21.0035 17.5011 21.0035C17.225 21.0035 17.0011 20.7797 17.0011 20.5035L17.0006 18H14.4956C14.2197 18 13.9961 17.7762 13.9961 17.5C13.9961 17.2239 14.2197 17 14.4956 17H17.0005L17 14.4993C17 14.2231 17.2239 13.9993 17.5 13.9993C17.7761 13.9993 18 14.2231 18 14.4993L18.0005 17H20.4966C20.7725 17 20.9961 17.2239 20.9961 17.5C20.9961 17.7762 20.7725 18 20.4966 18H18.0006Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconPeopleAdd, IconPeopleAdd as default };
3
+ export const IconPeopleAdd = ({ 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: "M5.5 7C5.5 5.61929 6.61929 4.5 8 4.5C9.38071 4.5 10.5 5.61929 10.5 7C10.5 8.38071 9.38071 9.5 8 9.5C6.61929 9.5 5.5 8.38071 5.5 7ZM8 3C5.79086 3 4 4.79086 4 7C4 9.20914 5.79086 11 8 11C10.2091 11 12 9.20914 12 7C12 4.79086 10.2091 3 8 3ZM15.5 8C15.5 7.17157 16.1716 6.5 17 6.5C17.8284 6.5 18.5 7.17157 18.5 8C18.5 8.82843 17.8284 9.5 17 9.5C16.1716 9.5 15.5 8.82843 15.5 8ZM17 5C15.3431 5 14 6.34315 14 8C14 9.65685 15.3431 11 17 11C18.6569 11 20 9.65685 20 8C20 6.34315 18.6569 5 17 5ZM4.25 13C3.00736 13 2 14.0074 2 15.25V15.5011L2 15.5022L2.00001 15.5048L2.00007 15.5111L2.00035 15.5277C2.00064 15.5406 2.00117 15.5571 2.0021 15.5771C2.00396 15.6169 2.00745 15.6705 2.01398 15.7358C2.02701 15.8661 2.05233 16.045 2.10165 16.2564C2.19995 16.6776 2.39654 17.2404 2.79183 17.8051C3.61066 18.9749 5.17178 20 8 20C9.36897 20 10.4411 19.7598 11.2758 19.3793C11.1268 18.8851 11.035 18.366 11.0082 17.8299C10.3633 18.2108 9.41267 18.5 8 18.5C5.57822 18.5 4.51434 17.6501 4.02067 16.9449C3.75971 16.5721 3.62818 16.1974 3.56241 15.9155C3.5297 15.7753 3.514 15.6612 3.50653 15.5865C3.50281 15.5493 3.50117 15.5222 3.50047 15.5072L3.5 15.4947V15.25C3.5 14.8358 3.83579 14.5 4.25 14.5H11.7322C11.9807 14.0233 12.2865 13.5813 12.6405 13.1831C12.3674 13.0653 12.0663 13 11.75 13H4.25ZM23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23C20.5376 23 23 20.5376 23 17.5ZM18.0006 18L18.0011 20.5035C18.0011 20.7797 17.7773 21.0035 17.5011 21.0035C17.225 21.0035 17.0011 20.7797 17.0011 20.5035L17.0006 18H14.4956C14.2197 18 13.9961 17.7762 13.9961 17.5C13.9961 17.2239 14.2197 17 14.4956 17H17.0005L17 14.4993C17 14.2231 17.2239 13.9993 17.5 13.9993C17.7761 13.9993 18 14.2231 18 14.4993L18.0005 17H20.4966C20.7725 17 20.9961 17.2239 20.9961 17.5C20.9961 17.7762 20.7725 18 20.4966 18H18.0006Z", fill: "#222222" }) }) }));
8
+ export default IconPeopleAdd;
@@ -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 IconPeopleAddFilled = function IconPeopleAddFilled(_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: "M8 11C10.2091 11 12 9.20914 12 7C12 4.79086 10.2091 3 8 3C5.79086 3 4 4.79086 4 7C4 9.20914 5.79086 11 8 11ZM17 11C18.6569 11 20 9.65685 20 8C20 6.34315 18.6569 5 17 5C15.3431 5 14 6.34315 14 8C14 9.65685 15.3431 11 17 11ZM4.25 13C3.00736 13 2 14.0074 2 15.25V15.5C2 15.5 2 20 8 20C9.38985 20 10.4578 19.7585 11.2783 19.3875C11.0973 18.7901 11 18.1564 11 17.5C11 15.8431 11.6199 14.3311 12.6405 13.1831C12.3674 13.0653 12.0663 13 11.75 13H4.25ZM23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23C20.5376 23 23 20.5376 23 17.5ZM18.0006 18L18.0011 20.5035C18.0011 20.7797 17.7773 21.0035 17.5011 21.0035C17.225 21.0035 17.0011 20.7797 17.0011 20.5035L17.0006 18H14.4956C14.2197 18 13.9961 17.7762 13.9961 17.5C13.9961 17.2239 14.2197 17 14.4956 17H17.0005L17 14.4993C17 14.2231 17.2239 13.9993 17.5 13.9993C17.7761 13.9993 18 14.2231 18 14.4993L18.0005 17H20.4966C20.7725 17 20.9961 17.2239 20.9961 17.5C20.9961 17.7762 20.7725 18 20.4966 18H18.0006Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconPeopleAddFilled, IconPeopleAddFilled as default };
3
+ export const IconPeopleAddFilled = ({ 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: "M8 11C10.2091 11 12 9.20914 12 7C12 4.79086 10.2091 3 8 3C5.79086 3 4 4.79086 4 7C4 9.20914 5.79086 11 8 11ZM17 11C18.6569 11 20 9.65685 20 8C20 6.34315 18.6569 5 17 5C15.3431 5 14 6.34315 14 8C14 9.65685 15.3431 11 17 11ZM4.25 13C3.00736 13 2 14.0074 2 15.25V15.5C2 15.5 2 20 8 20C9.38985 20 10.4578 19.7585 11.2783 19.3875C11.0973 18.7901 11 18.1564 11 17.5C11 15.8431 11.6199 14.3311 12.6405 13.1831C12.3674 13.0653 12.0663 13 11.75 13H4.25ZM23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23C20.5376 23 23 20.5376 23 17.5ZM18.0006 18L18.0011 20.5035C18.0011 20.7797 17.7773 21.0035 17.5011 21.0035C17.225 21.0035 17.0011 20.7797 17.0011 20.5035L17.0006 18H14.4956C14.2197 18 13.9961 17.7762 13.9961 17.5C13.9961 17.2239 14.2197 17 14.4956 17H17.0005L17 14.4993C17 14.2231 17.2239 13.9993 17.5 13.9993C17.7761 13.9993 18 14.2231 18 14.4993L18.0005 17H20.4966C20.7725 17 20.9961 17.2239 20.9961 17.5C20.9961 17.7762 20.7725 18 20.4966 18H18.0006Z", fill: "#222222" }) }) }));
8
+ export default IconPeopleAddFilled;
@@ -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 IconPeopleFilled = function IconPeopleFilled(_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: "M8 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12ZM17 12C18.6569 12 20 10.6569 20 9C20 7.34315 18.6569 6 17 6C15.3431 6 14 7.34315 14 9C14 10.6569 15.3431 12 17 12ZM4.25 14C3.00736 14 2 15.0074 2 16.25V16.5C2 16.5 2 21 8 21C14 21 14 16.5 14 16.5V16.25C14 15.0074 12.9926 14 11.75 14H4.25ZM17.0002 19.5C15.829 19.5 14.9321 19.3189 14.2453 19.0416C14.5873 18.4667 14.7719 17.9142 14.8724 17.4836C14.9328 17.2247 14.9645 17.0027 14.9813 16.8353C14.9897 16.7512 14.9944 16.68 14.997 16.6237C14.9983 16.5955 14.9991 16.5709 14.9996 16.5503L15.0001 16.5222L15.0002 16.5103L15.0002 16.505L15.0002 16.5024C15.0002 16.4992 15.0002 16.5 15.0002 16.5V16.25C15.0002 15.3779 14.6567 14.5861 14.0977 14.0023C14.1316 14.0008 14.1658 14 14.2002 14H19.8002C21.0152 14 22.0002 14.985 22.0002 16.2C22.0002 16.2 22.0002 19.5 17.0002 19.5Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconPeopleFilled, IconPeopleFilled as default };
3
+ export const IconPeopleFilled = ({ 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: "M8 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12ZM17 12C18.6569 12 20 10.6569 20 9C20 7.34315 18.6569 6 17 6C15.3431 6 14 7.34315 14 9C14 10.6569 15.3431 12 17 12ZM4.25 14C3.00736 14 2 15.0074 2 16.25V16.5C2 16.5 2 21 8 21C14 21 14 16.5 14 16.5V16.25C14 15.0074 12.9926 14 11.75 14H4.25ZM17.0002 19.5C15.829 19.5 14.9321 19.3189 14.2453 19.0416C14.5873 18.4667 14.7719 17.9142 14.8724 17.4836C14.9328 17.2247 14.9645 17.0027 14.9813 16.8353C14.9897 16.7512 14.9944 16.68 14.997 16.6237C14.9983 16.5955 14.9991 16.5709 14.9996 16.5503L15.0001 16.5222L15.0002 16.5103L15.0002 16.505L15.0002 16.5024C15.0002 16.4992 15.0002 16.5 15.0002 16.5V16.25C15.0002 15.3779 14.6567 14.5861 14.0977 14.0023C14.1316 14.0008 14.1658 14 14.2002 14H19.8002C21.0152 14 22.0002 14.985 22.0002 16.2C22.0002 16.2 22.0002 19.5 17.0002 19.5Z", fill: "#222222" }) }) }));
8
+ export default IconPeopleFilled;
@@ -1,34 +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 IconPercent = function IconPercent(_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: "Theme=Line"
25
- }, /*#__PURE__*/React.createElement("path", {
26
- id: "shape",
27
- fillRule: "evenodd",
28
- clipRule: "evenodd",
29
- d: "M6.5 5C5.67157 5 5 5.67157 5 6.5C5 7.32843 5.67157 8 6.5 8C7.32843 8 8 7.32843 8 6.5C8 5.67157 7.32843 5 6.5 5ZM3 6.5C3 4.567 4.567 3 6.5 3C8.433 3 10 4.567 10 6.5C10 8.433 8.433 10 6.5 10C4.567 10 3 8.433 3 6.5ZM19.7071 5.70711L5.70711 19.7071C5.31658 20.0976 4.68342 20.0976 4.29289 19.7071C3.90237 19.3166 3.90237 18.6834 4.29289 18.2929L18.2929 4.29289C18.6834 3.90237 19.3166 3.90237 19.7071 4.29289C20.0976 4.68342 20.0976 5.31658 19.7071 5.70711ZM16 17.5C16 16.6716 16.6716 16 17.5 16C18.3284 16 19 16.6716 19 17.5C19 18.3284 18.3284 19 17.5 19C16.6716 19 16 18.3284 16 17.5ZM17.5 14C15.567 14 14 15.567 14 17.5C14 19.433 15.567 21 17.5 21C19.433 21 21 19.433 21 17.5C21 15.567 19.433 14 17.5 14Z",
30
- fill: "#222222"
31
- })));
32
- };
33
-
34
- export { IconPercent, IconPercent as default };
3
+ export const IconPercent = ({ 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: "Theme=Line", children: _jsx("path", { id: "shape", fillRule: "evenodd", clipRule: "evenodd", d: "M6.5 5C5.67157 5 5 5.67157 5 6.5C5 7.32843 5.67157 8 6.5 8C7.32843 8 8 7.32843 8 6.5C8 5.67157 7.32843 5 6.5 5ZM3 6.5C3 4.567 4.567 3 6.5 3C8.433 3 10 4.567 10 6.5C10 8.433 8.433 10 6.5 10C4.567 10 3 8.433 3 6.5ZM19.7071 5.70711L5.70711 19.7071C5.31658 20.0976 4.68342 20.0976 4.29289 19.7071C3.90237 19.3166 3.90237 18.6834 4.29289 18.2929L18.2929 4.29289C18.6834 3.90237 19.3166 3.90237 19.7071 4.29289C20.0976 4.68342 20.0976 5.31658 19.7071 5.70711ZM16 17.5C16 16.6716 16.6716 16 17.5 16C18.3284 16 19 16.6716 19 17.5C19 18.3284 18.3284 19 17.5 19C16.6716 19 16 18.3284 16 17.5ZM17.5 14C15.567 14 14 15.567 14 17.5C14 19.433 15.567 21 17.5 21C19.433 21 21 19.433 21 17.5C21 15.567 19.433 14 17.5 14Z", fill: "#222222" }) }) }));
8
+ export default IconPercent;
@@ -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 IconPerson = function IconPerson(_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.7542 13.9999C18.9962 13.9999 20.003 15.0068 20.003 16.2488V16.8242C20.003 17.7185 19.6835 18.5833 19.1019 19.2627C17.5326 21.0962 15.1454 22.0011 12 22.0011C8.85414 22.0011 6.46812 21.0959 4.90182 19.2617C4.32206 18.5828 4.00354 17.7193 4.00354 16.8265V16.2488C4.00354 15.0068 5.0104 13.9999 6.25242 13.9999H17.7542ZM17.7542 15.4999H6.25242C5.83882 15.4999 5.50354 15.8352 5.50354 16.2488V16.8265C5.50354 17.3622 5.69465 17.8802 6.04251 18.2876C7.29582 19.7553 9.26169 20.5011 12 20.5011C14.7383 20.5011 16.7059 19.7553 17.9624 18.2873C18.3113 17.8797 18.503 17.3608 18.503 16.8242V16.2488C18.503 15.8352 18.1678 15.4999 17.7542 15.4999ZM12 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.00464ZM12 3.50464C10.067 3.50464 8.5 5.07164 8.5 7.00464C8.5 8.93764 10.067 10.5046 12 10.5046C13.933 10.5046 15.5 8.93764 15.5 7.00464C15.5 5.07164 13.933 3.50464 12 3.50464Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconPerson, IconPerson as default };
3
+ export const IconPerson = ({ 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.7542 13.9999C18.9962 13.9999 20.003 15.0068 20.003 16.2488V16.8242C20.003 17.7185 19.6835 18.5833 19.1019 19.2627C17.5326 21.0962 15.1454 22.0011 12 22.0011C8.85414 22.0011 6.46812 21.0959 4.90182 19.2617C4.32206 18.5828 4.00354 17.7193 4.00354 16.8265V16.2488C4.00354 15.0068 5.0104 13.9999 6.25242 13.9999H17.7542ZM17.7542 15.4999H6.25242C5.83882 15.4999 5.50354 15.8352 5.50354 16.2488V16.8265C5.50354 17.3622 5.69465 17.8802 6.04251 18.2876C7.29582 19.7553 9.26169 20.5011 12 20.5011C14.7383 20.5011 16.7059 19.7553 17.9624 18.2873C18.3113 17.8797 18.503 17.3608 18.503 16.8242V16.2488C18.503 15.8352 18.1678 15.4999 17.7542 15.4999ZM12 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.00464ZM12 3.50464C10.067 3.50464 8.5 5.07164 8.5 7.00464C8.5 8.93764 10.067 10.5046 12 10.5046C13.933 10.5046 15.5 8.93764 15.5 7.00464C15.5 5.07164 13.933 3.50464 12 3.50464Z", fill: "#222222" }) }) }));
8
+ export default IconPerson;
@@ -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 IconPersonAccount = function IconPersonAccount(_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: "M13 14.0503V14.0002H4.25278C3.01076 14.0002 2.00391 15.007 2.00391 16.2491V16.8267C2.00391 17.7195 2.32242 18.583 2.90219 19.2619C4.46849 21.0962 6.8545 22.0013 10.0004 22.0013C10.3579 22.0013 10.7055 21.9896 11.0434 21.9662C11.0149 21.8153 11 21.6595 11 21.5002V20.4658C10.679 20.4895 10.3458 20.5013 10.0004 20.5013C7.26206 20.5013 5.29618 19.7555 4.04287 18.2878C3.69502 17.8805 3.50391 17.3624 3.50391 16.8267V16.2491C3.50391 15.8355 3.83919 15.5002 4.25278 15.5002H11.2081C11.5294 14.7648 12.1944 14.2138 13 14.0503ZM10.0004 2.00488C12.7618 2.00488 15.0004 4.24346 15.0004 7.00488C15.0004 9.76631 12.7618 12.0049 10.0004 12.0049C7.23894 12.0049 5.00036 9.76631 5.00036 7.00488C5.00036 4.24346 7.23894 2.00488 10.0004 2.00488ZM10.0004 3.50488C8.06737 3.50488 6.50036 5.07189 6.50036 7.00488C6.50036 8.93788 8.06737 10.5049 10.0004 10.5049C11.9334 10.5049 13.5004 8.93788 13.5004 7.00488C13.5004 5.07189 11.9334 3.50488 10.0004 3.50488ZM14 15.0003H13.5C12.6716 15.0003 12 15.6719 12 16.5003V21.5002C12 22.3287 12.6716 23.0002 13.5 23.0002H21.5C22.3284 23.0002 23 22.3287 23 21.5002V16.5003C23 15.6719 22.3284 15.0003 21.5 15.0003H21V13.7502C21 12.7837 20.2165 12.0002 19.25 12.0002H15.75C14.7835 12.0002 14 12.7837 14 13.7502V15.0003ZM15.5 13.7502C15.5 13.6122 15.6119 13.5002 15.75 13.5002H19.25C19.3881 13.5002 19.5 13.6122 19.5 13.7502V15.0003H15.5V13.7502Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconPersonAccount, IconPersonAccount as default };
3
+ export const IconPersonAccount = ({ 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: "M13 14.0503V14.0002H4.25278C3.01076 14.0002 2.00391 15.007 2.00391 16.2491V16.8267C2.00391 17.7195 2.32242 18.583 2.90219 19.2619C4.46849 21.0962 6.8545 22.0013 10.0004 22.0013C10.3579 22.0013 10.7055 21.9896 11.0434 21.9662C11.0149 21.8153 11 21.6595 11 21.5002V20.4658C10.679 20.4895 10.3458 20.5013 10.0004 20.5013C7.26206 20.5013 5.29618 19.7555 4.04287 18.2878C3.69502 17.8805 3.50391 17.3624 3.50391 16.8267V16.2491C3.50391 15.8355 3.83919 15.5002 4.25278 15.5002H11.2081C11.5294 14.7648 12.1944 14.2138 13 14.0503ZM10.0004 2.00488C12.7618 2.00488 15.0004 4.24346 15.0004 7.00488C15.0004 9.76631 12.7618 12.0049 10.0004 12.0049C7.23894 12.0049 5.00036 9.76631 5.00036 7.00488C5.00036 4.24346 7.23894 2.00488 10.0004 2.00488ZM10.0004 3.50488C8.06737 3.50488 6.50036 5.07189 6.50036 7.00488C6.50036 8.93788 8.06737 10.5049 10.0004 10.5049C11.9334 10.5049 13.5004 8.93788 13.5004 7.00488C13.5004 5.07189 11.9334 3.50488 10.0004 3.50488ZM14 15.0003H13.5C12.6716 15.0003 12 15.6719 12 16.5003V21.5002C12 22.3287 12.6716 23.0002 13.5 23.0002H21.5C22.3284 23.0002 23 22.3287 23 21.5002V16.5003C23 15.6719 22.3284 15.0003 21.5 15.0003H21V13.7502C21 12.7837 20.2165 12.0002 19.25 12.0002H15.75C14.7835 12.0002 14 12.7837 14 13.7502V15.0003ZM15.5 13.7502C15.5 13.6122 15.6119 13.5002 15.75 13.5002H19.25C19.3881 13.5002 19.5 13.6122 19.5 13.7502V15.0003H15.5V13.7502Z", fill: "#222222" }) }));
8
+ export default IconPersonAccount;
@@ -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 IconPersonAccountFilled = function IconPersonAccountFilled(_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: "M13 14.0503V14.0002H4.25278C3.01076 14.0002 2.00391 15.007 2.00391 16.2491V17.169C2.00391 17.7411 2.18231 18.2989 2.51427 18.7648C4.05643 20.9292 6.5794 22.0013 10.0004 22.0013C10.3578 22.0013 10.7055 21.9896 11.0433 21.9662C11.0149 21.8152 11 21.6595 11 21.5002V16.5003C11 15.2908 11.8589 14.2819 13 14.0503ZM10.0004 2.00488C12.7618 2.00488 15.0004 4.24346 15.0004 7.00488C15.0004 9.76631 12.7618 12.0049 10.0004 12.0049C7.23894 12.0049 5.00036 9.76631 5.00036 7.00488C5.00036 4.24346 7.23894 2.00488 10.0004 2.00488ZM14 15.0003H13.5C12.6716 15.0003 12 15.6719 12 16.5003V21.5002C12 22.3287 12.6716 23.0002 13.5 23.0002H21.5C22.3284 23.0002 23 22.3287 23 21.5002V16.5003C23 15.6719 22.3284 15.0003 21.5 15.0003H21V13.7502C21 12.7837 20.2165 12.0002 19.25 12.0002H15.75C14.7835 12.0002 14 12.7837 14 13.7502V15.0003ZM15.5 13.7502C15.5 13.6122 15.6119 13.5002 15.75 13.5002H19.25C19.3881 13.5002 19.5 13.6122 19.5 13.7502V15.0003H15.5V13.7502Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconPersonAccountFilled, IconPersonAccountFilled as default };
3
+ export const IconPersonAccountFilled = ({ 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: "M13 14.0503V14.0002H4.25278C3.01076 14.0002 2.00391 15.007 2.00391 16.2491V17.169C2.00391 17.7411 2.18231 18.2989 2.51427 18.7648C4.05643 20.9292 6.5794 22.0013 10.0004 22.0013C10.3578 22.0013 10.7055 21.9896 11.0433 21.9662C11.0149 21.8152 11 21.6595 11 21.5002V16.5003C11 15.2908 11.8589 14.2819 13 14.0503ZM10.0004 2.00488C12.7618 2.00488 15.0004 4.24346 15.0004 7.00488C15.0004 9.76631 12.7618 12.0049 10.0004 12.0049C7.23894 12.0049 5.00036 9.76631 5.00036 7.00488C5.00036 4.24346 7.23894 2.00488 10.0004 2.00488ZM14 15.0003H13.5C12.6716 15.0003 12 15.6719 12 16.5003V21.5002C12 22.3287 12.6716 23.0002 13.5 23.0002H21.5C22.3284 23.0002 23 22.3287 23 21.5002V16.5003C23 15.6719 22.3284 15.0003 21.5 15.0003H21V13.7502C21 12.7837 20.2165 12.0002 19.25 12.0002H15.75C14.7835 12.0002 14 12.7837 14 13.7502V15.0003ZM15.5 13.7502C15.5 13.6122 15.6119 13.5002 15.75 13.5002H19.25C19.3881 13.5002 19.5 13.6122 19.5 13.7502V15.0003H15.5V13.7502Z", fill: "#222222" }) }));
8
+ export default IconPersonAccountFilled;
@@ -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 IconPersonAdd = function IconPersonAdd(_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.5004 12C20.5379 12 23.0004 14.4624 23.0004 17.5C23.0004 20.5376 20.5379 23 17.5004 23C14.4628 23 12.0004 20.5376 12.0004 17.5C12.0004 14.4624 14.4628 12 17.5004 12ZM12.0226 13.9993C11.7259 14.4626 11.4864 14.966 11.314 15.4996L4.25278 15.4999C3.83919 15.4999 3.50391 15.8352 3.50391 16.2488V16.8265C3.50391 17.3622 3.69502 17.8802 4.04287 18.2876C5.29618 19.7553 7.26206 20.5011 10.0004 20.5011C10.5968 20.5011 11.1567 20.4657 11.6806 20.3952C11.9258 20.8901 12.2333 21.3486 12.5921 21.7615C11.7966 21.9217 10.9317 22.0011 10.0004 22.0011C6.8545 22.0011 4.46849 21.0959 2.90219 19.2617C2.32242 18.5828 2.00391 17.7193 2.00391 16.8265V16.2488C2.00391 15.0068 3.01076 13.9999 4.25278 13.9999L12.0226 13.9993ZM17.5004 14L17.4105 14.0081C17.2064 14.0451 17.0455 14.206 17.0084 14.4101L17.0004 14.5L16.9994 17H14.5043L14.4144 17.0081C14.2103 17.0451 14.0494 17.206 14.0123 17.4101L14.0043 17.5L14.0123 17.5899C14.0494 17.794 14.2103 17.9549 14.4144 17.992L14.5043 18H16.9994L17.0004 20.5L17.0084 20.5899C17.0455 20.794 17.2064 20.9549 17.4105 20.9919L17.5004 21L17.5902 20.9919C17.7943 20.9549 17.9553 20.794 17.9923 20.5899L18.0004 20.5L17.9994 18H20.5043L20.5941 17.992C20.7982 17.9549 20.9592 17.794 20.9962 17.5899L21.0043 17.5L20.9962 17.4101C20.9592 17.206 20.7982 17.0451 20.5941 17.0081L20.5043 17H17.9994L18.0004 14.5L17.9923 14.4101C17.9553 14.206 17.7943 14.0451 17.5902 14.0081L17.5004 14ZM10.0004 2.00464C12.7618 2.00464 15.0004 4.24321 15.0004 7.00464C15.0004 9.76606 12.7618 12.0046 10.0004 12.0046C7.23894 12.0046 5.00036 9.76606 5.00036 7.00464C5.00036 4.24321 7.23894 2.00464 10.0004 2.00464ZM10.0004 3.50464C8.06737 3.50464 6.50036 5.07164 6.50036 7.00464C6.50036 8.93764 8.06737 10.5046 10.0004 10.5046C11.9334 10.5046 13.5004 8.93764 13.5004 7.00464C13.5004 5.07164 11.9334 3.50464 10.0004 3.50464Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconPersonAdd, IconPersonAdd as default };
3
+ export const IconPersonAdd = ({ 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.5004 12C20.5379 12 23.0004 14.4624 23.0004 17.5C23.0004 20.5376 20.5379 23 17.5004 23C14.4628 23 12.0004 20.5376 12.0004 17.5C12.0004 14.4624 14.4628 12 17.5004 12ZM12.0226 13.9993C11.7259 14.4626 11.4864 14.966 11.314 15.4996L4.25278 15.4999C3.83919 15.4999 3.50391 15.8352 3.50391 16.2488V16.8265C3.50391 17.3622 3.69502 17.8802 4.04287 18.2876C5.29618 19.7553 7.26206 20.5011 10.0004 20.5011C10.5968 20.5011 11.1567 20.4657 11.6806 20.3952C11.9258 20.8901 12.2333 21.3486 12.5921 21.7615C11.7966 21.9217 10.9317 22.0011 10.0004 22.0011C6.8545 22.0011 4.46849 21.0959 2.90219 19.2617C2.32242 18.5828 2.00391 17.7193 2.00391 16.8265V16.2488C2.00391 15.0068 3.01076 13.9999 4.25278 13.9999L12.0226 13.9993ZM17.5004 14L17.4105 14.0081C17.2064 14.0451 17.0455 14.206 17.0084 14.4101L17.0004 14.5L16.9994 17H14.5043L14.4144 17.0081C14.2103 17.0451 14.0494 17.206 14.0123 17.4101L14.0043 17.5L14.0123 17.5899C14.0494 17.794 14.2103 17.9549 14.4144 17.992L14.5043 18H16.9994L17.0004 20.5L17.0084 20.5899C17.0455 20.794 17.2064 20.9549 17.4105 20.9919L17.5004 21L17.5902 20.9919C17.7943 20.9549 17.9553 20.794 17.9923 20.5899L18.0004 20.5L17.9994 18H20.5043L20.5941 17.992C20.7982 17.9549 20.9592 17.794 20.9962 17.5899L21.0043 17.5L20.9962 17.4101C20.9592 17.206 20.7982 17.0451 20.5941 17.0081L20.5043 17H17.9994L18.0004 14.5L17.9923 14.4101C17.9553 14.206 17.7943 14.0451 17.5902 14.0081L17.5004 14ZM10.0004 2.00464C12.7618 2.00464 15.0004 4.24321 15.0004 7.00464C15.0004 9.76606 12.7618 12.0046 10.0004 12.0046C7.23894 12.0046 5.00036 9.76606 5.00036 7.00464C5.00036 4.24321 7.23894 2.00464 10.0004 2.00464ZM10.0004 3.50464C8.06737 3.50464 6.50036 5.07164 6.50036 7.00464C6.50036 8.93764 8.06737 10.5046 10.0004 10.5046C11.9334 10.5046 13.5004 8.93764 13.5004 7.00464C13.5004 5.07164 11.9334 3.50464 10.0004 3.50464Z", fill: "#222222" }) }) }));
8
+ export default IconPersonAdd;
@@ -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 IconPersonAddFilled = function IconPersonAddFilled(_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.0004 17.5C11.0004 16.2111 11.3755 15.0098 12.0226 13.9993L4.25278 13.9999C3.01076 13.9999 2.00391 15.0068 2.00391 16.2488V17.1688C2.00391 17.7409 2.18231 18.2987 2.51427 18.7646C4.05643 20.9289 6.5794 22.0011 10.0004 22.0011C10.9317 22.0011 11.7966 21.9216 12.5921 21.7615C11.6006 20.6205 11.0004 19.1303 11.0004 17.5ZM15.0004 7.00464C15.0004 4.24321 12.7618 2.00464 10.0004 2.00464C7.23894 2.00464 5.00036 4.24321 5.00036 7.00464C5.00036 9.76606 7.23894 12.0046 10.0004 12.0046C12.7618 12.0046 15.0004 9.76606 15.0004 7.00464ZM23.0004 17.5C23.0004 14.4624 20.5379 12 17.5004 12C14.4628 12 12.0004 14.4624 12.0004 17.5C12.0004 20.5376 14.4628 23 17.5004 23C20.5379 23 23.0004 20.5376 23.0004 17.5ZM17.4105 14.008L17.5004 14L17.5902 14.008C17.7943 14.0451 17.9553 14.206 17.9923 14.4101L18.0004 14.5L17.9994 17H20.5043L20.5942 17.0081C20.7982 17.0451 20.9592 17.206 20.9962 17.4101L21.0043 17.5L20.9962 17.5899C20.9592 17.794 20.7982 17.9549 20.5942 17.9919L20.5043 18H17.9994L18.0004 20.5L17.9923 20.5899C17.9553 20.794 17.7943 20.9549 17.5902 20.9919L17.5004 21L17.4105 20.9919C17.2064 20.9549 17.0455 20.794 17.0084 20.5899L17.0004 20.5L16.9994 18H14.5043L14.4144 17.9919C14.2103 17.9549 14.0494 17.794 14.0123 17.5899L14.0043 17.5L14.0123 17.4101C14.0494 17.206 14.2103 17.0451 14.4144 17.0081L14.5043 17H16.9994L17.0004 14.5L17.0084 14.4101C17.0455 14.206 17.2064 14.0451 17.4105 14.008Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconPersonAddFilled, IconPersonAddFilled as default };
3
+ export const IconPersonAddFilled = ({ 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.0004 17.5C11.0004 16.2111 11.3755 15.0098 12.0226 13.9993L4.25278 13.9999C3.01076 13.9999 2.00391 15.0068 2.00391 16.2488V17.1688C2.00391 17.7409 2.18231 18.2987 2.51427 18.7646C4.05643 20.9289 6.5794 22.0011 10.0004 22.0011C10.9317 22.0011 11.7966 21.9216 12.5921 21.7615C11.6006 20.6205 11.0004 19.1303 11.0004 17.5ZM15.0004 7.00464C15.0004 4.24321 12.7618 2.00464 10.0004 2.00464C7.23894 2.00464 5.00036 4.24321 5.00036 7.00464C5.00036 9.76606 7.23894 12.0046 10.0004 12.0046C12.7618 12.0046 15.0004 9.76606 15.0004 7.00464ZM23.0004 17.5C23.0004 14.4624 20.5379 12 17.5004 12C14.4628 12 12.0004 14.4624 12.0004 17.5C12.0004 20.5376 14.4628 23 17.5004 23C20.5379 23 23.0004 20.5376 23.0004 17.5ZM17.4105 14.008L17.5004 14L17.5902 14.008C17.7943 14.0451 17.9553 14.206 17.9923 14.4101L18.0004 14.5L17.9994 17H20.5043L20.5942 17.0081C20.7982 17.0451 20.9592 17.206 20.9962 17.4101L21.0043 17.5L20.9962 17.5899C20.9592 17.794 20.7982 17.9549 20.5942 17.9919L20.5043 18H17.9994L18.0004 20.5L17.9923 20.5899C17.9553 20.794 17.7943 20.9549 17.5902 20.9919L17.5004 21L17.4105 20.9919C17.2064 20.9549 17.0455 20.794 17.0084 20.5899L17.0004 20.5L16.9994 18H14.5043L14.4144 17.9919C14.2103 17.9549 14.0494 17.794 14.0123 17.5899L14.0043 17.5L14.0123 17.4101C14.0494 17.206 14.2103 17.0451 14.4144 17.0081L14.5043 17H16.9994L17.0004 14.5L17.0084 14.4101C17.0455 14.206 17.2064 14.0451 17.4105 14.008Z", fill: "#222222" }) }) }));
8
+ export default IconPersonAddFilled;