hrm_ui_lib 2.0.3 → 2.1.1

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 (582) hide show
  1. package/assets/styles/styles.css +525 -0
  2. package/assets/styles/styles.scss +3 -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/Breadcrumb/Breadcrumb.js +6 -23
  15. package/components/Breadcrumb/index.js +1 -2
  16. package/components/Breadcrumb/types.js +1 -1
  17. package/components/Button/Button.js +29 -52
  18. package/components/Button/consts.js +12 -14
  19. package/components/Button/index.js +1 -52
  20. package/components/Button/types.js +1 -1
  21. package/components/Checkbox/Checkbox.js +45 -52
  22. package/components/Checkbox/index.js +1 -52
  23. package/components/Checkbox/types.js +1 -1
  24. package/components/Chips/Chips.js +23 -65
  25. package/components/Chips/consts.js +10 -12
  26. package/components/Chips/index.js +1 -11
  27. package/components/Chips/types.js +5 -7
  28. package/components/Collapse/CollapseGroup/CollapseGroup.js +22 -73
  29. package/components/Collapse/CollapseItem/CollapseItem.js +11 -86
  30. package/components/Collapse/index.js +2 -16
  31. package/components/Collapse/types.js +1 -1
  32. package/components/Container/Container.js +4 -9
  33. package/components/Container/index.js +1 -2
  34. package/components/Container/types.js +1 -1
  35. package/components/Copy/Copy.js +15 -93
  36. package/components/Copy/index.js +1 -54
  37. package/components/Copy/types.js +1 -1
  38. package/components/Counter/Counter.js +54 -134
  39. package/components/Counter/index.js +1 -61
  40. package/components/Counter/types.js +1 -1
  41. package/components/DatePicker/CustomHeader/CustomHeader.js +16 -191
  42. package/components/DatePicker/CustomHeader/helpers.js +10 -16
  43. package/components/DatePicker/RangeDatePicker/RangeDatePicker.js +7 -129
  44. package/components/DatePicker/RangeDatePicker/RangeDatePickerDesktop.js +71 -172
  45. package/components/DatePicker/RangeDatePicker/RangeDatePickerMobile.js +86 -265
  46. package/components/DatePicker/RangeDatePicker/index.js +1 -124
  47. package/components/DatePicker/SimpleDatePicker/SimpleDatePicker.js +8 -128
  48. package/components/DatePicker/SimpleDatePicker/SimpleDatePickerDesktop.js +45 -202
  49. package/components/DatePicker/SimpleDatePicker/SimpleDatePickerMobile.js +44 -206
  50. package/components/DatePicker/SimpleDatePicker/index.js +1 -123
  51. package/components/DatePicker/TimePicker/MobileModalContent.js +33 -123
  52. package/components/DatePicker/TimePicker/TimePicker.js +7 -75
  53. package/components/DatePicker/TimePicker/TimePickerDesktop.js +42 -128
  54. package/components/DatePicker/TimePicker/TimePickerMobile.js +27 -125
  55. package/components/DatePicker/TimePicker/consts.js +5 -8
  56. package/components/DatePicker/TimePicker/helpers.js +9 -19
  57. package/components/DatePicker/TimePicker/index.js +1 -70
  58. package/components/DatePicker/hooks.js +33 -2171
  59. package/components/DatePicker/index.js +3 -134
  60. package/components/DatePicker/localization.js +43 -6
  61. package/components/DatePicker/types.js +5 -7
  62. package/components/Divider/Divider.js +8 -15
  63. package/components/Divider/index.js +1 -3
  64. package/components/Divider/types.js +1 -1
  65. package/components/Empty/Empty.js +9 -83
  66. package/components/Empty/index.js +1 -54
  67. package/components/Empty/types.js +1 -1
  68. package/components/FileUpload/DropzoneFileUpload/DropzoneFileUpload.js +67 -52
  69. package/components/FileUpload/DropzoneFileUpload/ErrorItem.js +21 -52
  70. package/components/FileUpload/DropzoneFileUpload/FilePreview.js +23 -52
  71. package/components/FileUpload/DropzoneFileUpload/PreviewItem.js +30 -52
  72. package/components/FileUpload/DropzoneFileUpload/helpers.js +79 -52
  73. package/components/FileUpload/DropzoneFileUpload/index.js +1 -52
  74. package/components/FileUpload/FileUpload.js +69 -192
  75. package/components/FileUpload/UploadItems.js +22 -101
  76. package/components/FileUpload/index.js +3 -61
  77. package/components/FileUpload/types.js +6 -10
  78. package/components/FormContainer/FormContainer.js +43 -136
  79. package/components/FormContainer/index.js +1 -55
  80. package/components/FormContainer/types.js +1 -1
  81. package/components/FormField/FormField.js +17 -112
  82. package/components/FormField/index.js +1 -56
  83. package/components/FormField/types.js +1 -1
  84. package/components/Heading/Heading.js +5 -27
  85. package/components/Heading/index.js +1 -5
  86. package/components/Heading/types.js +1 -1
  87. package/components/Image/Image.js +12 -32
  88. package/components/Image/index.js +1 -2
  89. package/components/Image/types.js +1 -1
  90. package/components/Input/Input.js +68 -236
  91. package/components/Input/index.js +1 -58
  92. package/components/Input/types.js +1 -1
  93. package/components/Link/Link.js +14 -40
  94. package/components/Link/index.js +1 -3
  95. package/components/Link/types.js +1 -1
  96. package/components/Menu/Menu.js +47 -161
  97. package/components/Menu/NestedMenu.js +47 -173
  98. package/components/Menu/index.js +2 -72
  99. package/components/Menu/types.js +1 -1
  100. package/components/Modal/Modal.js +70 -52
  101. package/components/Modal/ModalConfirmation.js +30 -137
  102. package/components/Modal/ModalContent.js +10 -52
  103. package/components/Modal/index.js +2 -53
  104. package/components/Modal/types.js +1 -1
  105. package/components/More/More.js +19 -85
  106. package/components/More/index.js +1 -53
  107. package/components/More/types.js +1 -1
  108. package/components/Pagination/Pagination.js +15 -56
  109. package/components/Pagination/consts.js +5 -7
  110. package/components/Pagination/index.js +1 -10
  111. package/components/Pagination/types.js +1 -1
  112. package/components/Popover/Popover.js +41 -52
  113. package/components/Popover/PopoverDesktop.js +16 -69
  114. package/components/Popover/PopoverMobile.js +8 -52
  115. package/components/Popover/index.js +1 -52
  116. package/components/Popover/types.js +1 -1
  117. package/components/Progress/Progress.js +21 -56
  118. package/components/Progress/index.js +1 -2
  119. package/components/Progress/types.js +1 -1
  120. package/components/ProgressStep/ProgressStep.js +9 -38
  121. package/components/ProgressStep/Step.js +51 -98
  122. package/components/ProgressStep/consts.js +7 -9
  123. package/components/ProgressStep/index.js +1 -12
  124. package/components/ProgressStep/types.js +5 -7
  125. package/components/Radio/Radio.js +19 -56
  126. package/components/Radio/RadioGroup.js +21 -111
  127. package/components/Radio/index.js +2 -55
  128. package/components/Radio/types.js +1 -1
  129. package/components/SVGIcons/IconAdd.js +7 -28
  130. package/components/SVGIcons/IconAddCircle.js +7 -31
  131. package/components/SVGIcons/IconAddCircleFilled.js +7 -31
  132. package/components/SVGIcons/IconAddFilled.js +7 -28
  133. package/components/SVGIcons/IconAlert.js +7 -31
  134. package/components/SVGIcons/IconAlertBadge.js +7 -31
  135. package/components/SVGIcons/IconAlertBadgeFilled.js +7 -31
  136. package/components/SVGIcons/IconAlertFilled.js +7 -31
  137. package/components/SVGIcons/IconAm.js +6 -57
  138. package/components/SVGIcons/IconAmd.js +7 -28
  139. package/components/SVGIcons/IconAmdFilled.js +7 -28
  140. package/components/SVGIcons/IconApple.js +7 -31
  141. package/components/SVGIcons/IconArrowDown.js +7 -31
  142. package/components/SVGIcons/IconArrowDownFilled.js +7 -31
  143. package/components/SVGIcons/IconArrowDownLeft.js +7 -31
  144. package/components/SVGIcons/IconArrowDownLeftFilled.js +7 -31
  145. package/components/SVGIcons/IconArrowDownload.js +7 -31
  146. package/components/SVGIcons/IconArrowDownloadFilled.js +7 -31
  147. package/components/SVGIcons/IconArrowEnter.js +7 -28
  148. package/components/SVGIcons/IconArrowEnterFilled.js +7 -28
  149. package/components/SVGIcons/IconArrowExit.js +7 -28
  150. package/components/SVGIcons/IconArrowExitFilled.js +7 -28
  151. package/components/SVGIcons/IconArrowExportLeftToRight.js +7 -31
  152. package/components/SVGIcons/IconArrowExportLeftToRightFilled.js +7 -31
  153. package/components/SVGIcons/IconArrowExportRightToLeft.js +7 -31
  154. package/components/SVGIcons/IconArrowExportRightToLeftFilled.js +7 -31
  155. package/components/SVGIcons/IconArrowExportUp.js +7 -31
  156. package/components/SVGIcons/IconArrowExportUpFilled.js +7 -31
  157. package/components/SVGIcons/IconArrowImport.js +7 -31
  158. package/components/SVGIcons/IconArrowImportFilled.js +7 -31
  159. package/components/SVGIcons/IconArrowLeft.js +7 -31
  160. package/components/SVGIcons/IconArrowLeftFilled.js +7 -31
  161. package/components/SVGIcons/IconArrowRepeatAll.js +7 -31
  162. package/components/SVGIcons/IconArrowRepeatAllFilled.js +7 -31
  163. package/components/SVGIcons/IconArrowReset.js +7 -31
  164. package/components/SVGIcons/IconArrowResetFilled.js +7 -31
  165. package/components/SVGIcons/IconArrowRight.js +7 -31
  166. package/components/SVGIcons/IconArrowRightFilled.js +7 -31
  167. package/components/SVGIcons/IconArrowSort.js +7 -28
  168. package/components/SVGIcons/IconArrowSortFilled.js +7 -28
  169. package/components/SVGIcons/IconArrowSync.js +7 -28
  170. package/components/SVGIcons/IconArrowSyncFilled.js +7 -28
  171. package/components/SVGIcons/IconArrowUp.js +7 -31
  172. package/components/SVGIcons/IconArrowUpFilled.js +7 -31
  173. package/components/SVGIcons/IconArrowUpLeft.js +7 -31
  174. package/components/SVGIcons/IconArrowUpLeftFilled.js +7 -31
  175. package/components/SVGIcons/IconArrowUpRight.js +7 -31
  176. package/components/SVGIcons/IconArrowUpRightFilled.js +7 -31
  177. package/components/SVGIcons/IconAttach.js +7 -31
  178. package/components/SVGIcons/IconAttachFilled.js +7 -31
  179. package/components/SVGIcons/IconBeach.js +7 -28
  180. package/components/SVGIcons/IconBeachFilled.js +7 -28
  181. package/components/SVGIcons/IconBook.js +7 -31
  182. package/components/SVGIcons/IconBookFilled.js +7 -31
  183. package/components/SVGIcons/IconBookmark.js +7 -31
  184. package/components/SVGIcons/IconBookmarkFilled.js +7 -31
  185. package/components/SVGIcons/IconBriefcase.js +7 -31
  186. package/components/SVGIcons/IconBriefcaseFilled.js +7 -31
  187. package/components/SVGIcons/IconBuilding.js +7 -54
  188. package/components/SVGIcons/IconBuildingBank.js +7 -28
  189. package/components/SVGIcons/IconBuildingBankFilled.js +7 -28
  190. package/components/SVGIcons/IconBuildingFilled.js +7 -31
  191. package/components/SVGIcons/IconBulletListAdd.js +7 -31
  192. package/components/SVGIcons/IconBulletListAddFilled.js +7 -31
  193. package/components/SVGIcons/IconCalculator.js +7 -31
  194. package/components/SVGIcons/IconCalculatorFilled.js +7 -31
  195. package/components/SVGIcons/IconCalendarClock.js +7 -28
  196. package/components/SVGIcons/IconCalendarClockFilled.js +7 -28
  197. package/components/SVGIcons/IconCalendarDay.js +7 -31
  198. package/components/SVGIcons/IconCalendarDayFilled.js +7 -31
  199. package/components/SVGIcons/IconCalendarEmpty.js +7 -28
  200. package/components/SVGIcons/IconCalendarLeft.js +7 -28
  201. package/components/SVGIcons/IconCalendarLeftFilled.js +7 -28
  202. package/components/SVGIcons/IconCalendarRight.js +7 -28
  203. package/components/SVGIcons/IconCalendarRightFilled.js +7 -28
  204. package/components/SVGIcons/IconCall.js +7 -31
  205. package/components/SVGIcons/IconCallFilled.js +7 -31
  206. package/components/SVGIcons/IconCard.js +7 -28
  207. package/components/SVGIcons/IconCardFilled.js +7 -28
  208. package/components/SVGIcons/IconCaretDown.js +7 -28
  209. package/components/SVGIcons/IconCaretDownFilled.js +7 -28
  210. package/components/SVGIcons/IconCaretDownRight.js +7 -28
  211. package/components/SVGIcons/IconCaretDownRightFilled.js +7 -28
  212. package/components/SVGIcons/IconCaretLeft.js +7 -28
  213. package/components/SVGIcons/IconCaretLeftFilled.js +7 -28
  214. package/components/SVGIcons/IconCaretRight.js +7 -28
  215. package/components/SVGIcons/IconCaretRightFilled.js +7 -28
  216. package/components/SVGIcons/IconCaretUp.js +7 -28
  217. package/components/SVGIcons/IconCaretUpFilled.js +7 -28
  218. package/components/SVGIcons/IconChat.js +7 -28
  219. package/components/SVGIcons/IconChatFilled.js +7 -28
  220. package/components/SVGIcons/IconChatMultiple.js +7 -28
  221. package/components/SVGIcons/IconChatMultipleFilled.js +7 -28
  222. package/components/SVGIcons/IconCheckboxArrowRight.js +7 -31
  223. package/components/SVGIcons/IconCheckboxArrowRightFilled.js +7 -31
  224. package/components/SVGIcons/IconCheckmark.js +7 -28
  225. package/components/SVGIcons/IconCheckmarkCircle.js +7 -28
  226. package/components/SVGIcons/IconCheckmarkCircleFilled.js +7 -28
  227. package/components/SVGIcons/IconCheckmarkFilled.js +7 -28
  228. package/components/SVGIcons/IconChevronDoubleLeft.d.ts +4 -0
  229. package/components/SVGIcons/IconChevronDoubleLeft.js +8 -0
  230. package/components/SVGIcons/IconChevronDoubleRight.d.ts +4 -0
  231. package/components/SVGIcons/IconChevronDoubleRight.js +8 -0
  232. package/components/SVGIcons/IconChevronDown.js +7 -28
  233. package/components/SVGIcons/IconChevronDownFilled.js +7 -28
  234. package/components/SVGIcons/IconChevronLeft.js +7 -28
  235. package/components/SVGIcons/IconChevronLeftFilled.js +7 -28
  236. package/components/SVGIcons/IconChevronRight.js +7 -28
  237. package/components/SVGIcons/IconChevronRightFilled.js +7 -28
  238. package/components/SVGIcons/IconChevronUp.js +7 -28
  239. package/components/SVGIcons/IconChevronUpDown.js +7 -31
  240. package/components/SVGIcons/IconChevronUpDownFilled.js +7 -31
  241. package/components/SVGIcons/IconChevronUpFilled.js +7 -28
  242. package/components/SVGIcons/IconClipboardDay.js +7 -28
  243. package/components/SVGIcons/IconClock.js +7 -31
  244. package/components/SVGIcons/IconClockDismiss.js +7 -28
  245. package/components/SVGIcons/IconClockDismissFilled.js +7 -28
  246. package/components/SVGIcons/IconClockFilled.js +7 -31
  247. package/components/SVGIcons/IconComment.js +7 -31
  248. package/components/SVGIcons/IconCommentFilled.js +7 -31
  249. package/components/SVGIcons/IconContractCard.js +7 -28
  250. package/components/SVGIcons/IconContractCardFilled.js +7 -28
  251. package/components/SVGIcons/IconCopy.js +7 -28
  252. package/components/SVGIcons/IconCopyFilled.js +7 -28
  253. package/components/SVGIcons/IconCubeTree.js +7 -28
  254. package/components/SVGIcons/IconCubeTreeFilled.js +7 -31
  255. package/components/SVGIcons/IconDatabase.js +7 -31
  256. package/components/SVGIcons/IconDatabaseFilled.js +7 -31
  257. package/components/SVGIcons/IconDelete.js +7 -28
  258. package/components/SVGIcons/IconDeleteFilled.js +7 -28
  259. package/components/SVGIcons/IconDeviceMeetingRoom.js +7 -28
  260. package/components/SVGIcons/IconDeviceMeetingRoomFilled.js +7 -28
  261. package/components/SVGIcons/IconDismiss.js +7 -28
  262. package/components/SVGIcons/IconDismissCircle.js +7 -31
  263. package/components/SVGIcons/IconDismissCircleFilled.js +7 -31
  264. package/components/SVGIcons/IconDismissFilled.js +7 -28
  265. package/components/SVGIcons/IconDocument.js +7 -28
  266. package/components/SVGIcons/IconDocumentBulletList.js +7 -31
  267. package/components/SVGIcons/IconDocumentBulletListFilled.js +7 -31
  268. package/components/SVGIcons/IconDocumentEdit.js +7 -28
  269. package/components/SVGIcons/IconDocumentEditFilled.js +7 -28
  270. package/components/SVGIcons/IconDocumentFilled.js +7 -28
  271. package/components/SVGIcons/IconDocumentPerson.js +7 -28
  272. package/components/SVGIcons/IconEdit.js +7 -28
  273. package/components/SVGIcons/IconEditFilled.js +7 -28
  274. package/components/SVGIcons/IconErrorCircle.js +7 -28
  275. package/components/SVGIcons/IconErrorCircleFilled.js +7 -28
  276. package/components/SVGIcons/IconEur.js +7 -28
  277. package/components/SVGIcons/IconEurFilled.js +7 -28
  278. package/components/SVGIcons/IconExpandUpLeft.js +7 -31
  279. package/components/SVGIcons/IconExpandUpLeftFilled.js +7 -31
  280. package/components/SVGIcons/IconExpandUpRight.js +7 -31
  281. package/components/SVGIcons/IconExpandUpRightFilled.js +7 -31
  282. package/components/SVGIcons/IconEyeOff.js +7 -31
  283. package/components/SVGIcons/IconEyeOffFilled.js +7 -31
  284. package/components/SVGIcons/IconEyeOn.js +7 -31
  285. package/components/SVGIcons/IconEyeOnFilled.js +7 -31
  286. package/components/SVGIcons/IconFacebook.js +7 -38
  287. package/components/SVGIcons/IconFilter.js +7 -28
  288. package/components/SVGIcons/IconFilterFilled.js +7 -28
  289. package/components/SVGIcons/IconFlag.js +7 -31
  290. package/components/SVGIcons/IconFlagFilled.js +7 -31
  291. package/components/SVGIcons/IconFolderLink.js +7 -28
  292. package/components/SVGIcons/IconFolderLinkFilled.js +7 -28
  293. package/components/SVGIcons/IconFood.js +7 -28
  294. package/components/SVGIcons/IconFoodFilled.js +7 -28
  295. package/components/SVGIcons/IconGb.js +6 -71
  296. package/components/SVGIcons/IconGlobe.js +7 -28
  297. package/components/SVGIcons/IconGlobeFilled.js +7 -28
  298. package/components/SVGIcons/IconGoogle.js +7 -40
  299. package/components/SVGIcons/IconHandOpenHeart.js +7 -31
  300. package/components/SVGIcons/IconHandOpenHeartFilled.js +7 -31
  301. package/components/SVGIcons/IconHeart.js +7 -31
  302. package/components/SVGIcons/IconHeartFilled.js +7 -31
  303. package/components/SVGIcons/IconHistory.js +7 -31
  304. package/components/SVGIcons/IconHistoryFilled.js +7 -31
  305. package/components/SVGIcons/IconHome.js +7 -31
  306. package/components/SVGIcons/IconHomeFilled.js +7 -31
  307. package/components/SVGIcons/IconImage.js +7 -31
  308. package/components/SVGIcons/IconImageFilled.js +7 -31
  309. package/components/SVGIcons/IconInfo.js +7 -28
  310. package/components/SVGIcons/IconInfoFilled.js +7 -28
  311. package/components/SVGIcons/IconInstagram.js +7 -39
  312. package/components/SVGIcons/IconKeyReset.js +7 -31
  313. package/components/SVGIcons/IconKeyResetFilled.js +7 -31
  314. package/components/SVGIcons/IconLink.js +7 -31
  315. package/components/SVGIcons/IconLinkFilled.js +7 -31
  316. package/components/SVGIcons/IconLinkedin.js +7 -31
  317. package/components/SVGIcons/IconList.js +7 -28
  318. package/components/SVGIcons/IconListFilled.js +7 -31
  319. package/components/SVGIcons/IconLocation.js +7 -31
  320. package/components/SVGIcons/IconLocationFilled.js +7 -31
  321. package/components/SVGIcons/IconLockClosed.js +7 -31
  322. package/components/SVGIcons/IconLockClosedFilled.js +7 -31
  323. package/components/SVGIcons/IconLockOpen.js +7 -31
  324. package/components/SVGIcons/IconLockOpenFilled.js +7 -31
  325. package/components/SVGIcons/IconMail.js +7 -31
  326. package/components/SVGIcons/IconMailAdd.js +7 -31
  327. package/components/SVGIcons/IconMailAddFilled.js +7 -31
  328. package/components/SVGIcons/IconMailArrowForward.js +7 -31
  329. package/components/SVGIcons/IconMailArrowForwardFilled.js +7 -31
  330. package/components/SVGIcons/IconMailFilled.js +7 -31
  331. package/components/SVGIcons/IconMailLink.js +7 -31
  332. package/components/SVGIcons/IconMailLinkFilled.js +7 -31
  333. package/components/SVGIcons/IconMedium.js +7 -31
  334. package/components/SVGIcons/IconMore.js +7 -31
  335. package/components/SVGIcons/IconMoreFilled.js +7 -31
  336. package/components/SVGIcons/IconMoreVertical.js +7 -31
  337. package/components/SVGIcons/IconMoreVerticalFilled.js +7 -31
  338. package/components/SVGIcons/IconNavigation.js +7 -31
  339. package/components/SVGIcons/IconNavigationFilled.js +7 -31
  340. package/components/SVGIcons/IconNotebook.js +7 -31
  341. package/components/SVGIcons/IconNotebookAdd.js +7 -47
  342. package/components/SVGIcons/IconNotebookAddFilled.js +7 -44
  343. package/components/SVGIcons/IconNotebookFilled.js +7 -31
  344. package/components/SVGIcons/IconOnlyEmployee.js +7 -28
  345. package/components/SVGIcons/IconOpen.js +7 -31
  346. package/components/SVGIcons/IconOpenFilled.js +7 -31
  347. package/components/SVGIcons/IconPatient.js +7 -28
  348. package/components/SVGIcons/IconPatientFilled.js +7 -28
  349. package/components/SVGIcons/IconPeople.js +7 -28
  350. package/components/SVGIcons/IconPeopleAdd.js +7 -31
  351. package/components/SVGIcons/IconPeopleAddFilled.js +7 -31
  352. package/components/SVGIcons/IconPeopleFilled.js +7 -31
  353. package/components/SVGIcons/IconPercent.js +7 -33
  354. package/components/SVGIcons/IconPerson.js +7 -31
  355. package/components/SVGIcons/IconPersonAccount.js +7 -28
  356. package/components/SVGIcons/IconPersonAccountFilled.js +7 -28
  357. package/components/SVGIcons/IconPersonAdd.js +7 -31
  358. package/components/SVGIcons/IconPersonAddFilled.js +7 -31
  359. package/components/SVGIcons/IconPersonArrowLeft.js +7 -28
  360. package/components/SVGIcons/IconPersonArrowLeftFilled.js +7 -28
  361. package/components/SVGIcons/IconPersonArrowRight.js +7 -28
  362. package/components/SVGIcons/IconPersonArrowRightFilled.js +7 -28
  363. package/components/SVGIcons/IconPersonBoard.js +7 -28
  364. package/components/SVGIcons/IconPersonFilled.js +7 -31
  365. package/components/SVGIcons/IconPersonMinus.js +7 -28
  366. package/components/SVGIcons/IconPersonStar.js +7 -31
  367. package/components/SVGIcons/IconPersonStarFilled.js +7 -31
  368. package/components/SVGIcons/IconPersonSubtract.js +7 -31
  369. package/components/SVGIcons/IconPersonSubtractFilled.js +7 -31
  370. package/components/SVGIcons/IconPhone.js +7 -31
  371. package/components/SVGIcons/IconPhoneFilled.js +7 -31
  372. package/components/SVGIcons/IconPlugConnected.js +7 -28
  373. package/components/SVGIcons/IconPos.js +7 -33
  374. package/components/SVGIcons/IconPosFilled.js +7 -33
  375. package/components/SVGIcons/IconProhibited.js +7 -31
  376. package/components/SVGIcons/IconProhibitedFilled.js +7 -31
  377. package/components/SVGIcons/IconProjectProduct.js +7 -28
  378. package/components/SVGIcons/IconQuestion.js +7 -31
  379. package/components/SVGIcons/IconQuestionFilled.js +7 -31
  380. package/components/SVGIcons/IconRedo.js +7 -31
  381. package/components/SVGIcons/IconRedoFilled.js +7 -31
  382. package/components/SVGIcons/IconRu.js +6 -60
  383. package/components/SVGIcons/IconRub.js +7 -28
  384. package/components/SVGIcons/IconRubFilled.js +7 -28
  385. package/components/SVGIcons/IconSave.js +7 -31
  386. package/components/SVGIcons/IconSaveFilled.js +7 -31
  387. package/components/SVGIcons/IconSavings.js +7 -31
  388. package/components/SVGIcons/IconSavingsFilled.js +7 -31
  389. package/components/SVGIcons/IconSearch.js +7 -31
  390. package/components/SVGIcons/IconSearchFilled.js +7 -31
  391. package/components/SVGIcons/IconSelectAllOff.js +7 -31
  392. package/components/SVGIcons/IconSelectAllOffFilled.js +7 -31
  393. package/components/SVGIcons/IconSelectAllOn.js +7 -31
  394. package/components/SVGIcons/IconSelectAllOnFilled.js +7 -31
  395. package/components/SVGIcons/IconSend.js +7 -31
  396. package/components/SVGIcons/IconSendFilled.js +7 -31
  397. package/components/SVGIcons/IconSettings.js +7 -28
  398. package/components/SVGIcons/IconSettingsFilled.js +7 -31
  399. package/components/SVGIcons/IconShare.js +7 -31
  400. package/components/SVGIcons/IconShareAndroid.js +7 -31
  401. package/components/SVGIcons/IconShareAndroidFilled.js +7 -31
  402. package/components/SVGIcons/IconShareFilled.js +7 -31
  403. package/components/SVGIcons/IconSignOut.js +7 -31
  404. package/components/SVGIcons/IconSignOutFilled.js +7 -31
  405. package/components/SVGIcons/IconSpinner.js +7 -31
  406. package/components/SVGIcons/IconSpinnerFilled.js +7 -31
  407. package/components/SVGIcons/IconStatus.js +7 -31
  408. package/components/SVGIcons/IconStatusFilled.js +7 -31
  409. package/components/SVGIcons/IconSubtract.js +7 -31
  410. package/components/SVGIcons/IconSubtractCircle.js +7 -31
  411. package/components/SVGIcons/IconSubtractCircleFilled.js +7 -31
  412. package/components/SVGIcons/IconSubtractFilled.js +7 -31
  413. package/components/SVGIcons/IconTableCellEdit.js +7 -35
  414. package/components/SVGIcons/IconTableCellEditFilled.js +7 -41
  415. package/components/SVGIcons/IconTelegram.js +7 -40
  416. package/components/SVGIcons/IconTimer.js +7 -31
  417. package/components/SVGIcons/IconTimerFilled.js +7 -31
  418. package/components/SVGIcons/IconTwitter.js +7 -31
  419. package/components/SVGIcons/IconUndo.js +7 -31
  420. package/components/SVGIcons/IconUndoFilled.js +7 -31
  421. package/components/SVGIcons/IconUnitsEmployee.js +7 -28
  422. package/components/SVGIcons/IconUpload.js +7 -28
  423. package/components/SVGIcons/IconUsd.js +7 -28
  424. package/components/SVGIcons/IconUsdFilled.js +7 -28
  425. package/components/SVGIcons/IconUserMinus.js +7 -31
  426. package/components/SVGIcons/IconVideo.js +7 -28
  427. package/components/SVGIcons/IconVideoFilled.js +7 -28
  428. package/components/SVGIcons/IconWallet.js +7 -31
  429. package/components/SVGIcons/IconWalletFilled.js +7 -31
  430. package/components/SVGIcons/IconWarning.js +7 -28
  431. package/components/SVGIcons/IconWarningFilled.js +7 -28
  432. package/components/SVGIcons/IconYoutube.js +7 -31
  433. package/components/SVGIcons/index.d.ts +2 -0
  434. package/components/SVGIcons/index.js +302 -303
  435. package/components/SVGIcons/types.js +1 -1
  436. package/components/Select/ButtonSelect/ButtonSelect.js +42 -195
  437. package/components/Select/FilterSelect/FilterDropdown.js +14 -95
  438. package/components/Select/FilterSelect/FilterGroupDropdown.js +18 -82
  439. package/components/Select/FilterSelect/FilterSelect.js +69 -199
  440. package/components/Select/MultiSelect/DesktopWrapper.js +18 -55
  441. package/components/Select/MultiSelect/MobileWrapper.js +12 -77
  442. package/components/Select/MultiSelect/MultiBase/MultiBase.js +60 -211
  443. package/components/Select/MultiSelect/MultiSelect.js +66 -244
  444. package/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.js +94 -264
  445. package/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.js +76 -251
  446. package/components/Select/MultiSelect/OptionsWrapper.js +64 -175
  447. package/components/Select/NestedSelect/NestedSelect.js +55 -197
  448. package/components/Select/ProfileDropdown/index.js +12 -82
  449. package/components/Select/Select/Select.js +85 -254
  450. package/components/Select/Select/SelectDesktop/index.js +66 -219
  451. package/components/Select/Select/SelectMobile/MobileTopContent.js +17 -90
  452. package/components/Select/Select/SelectMobile/index.js +49 -194
  453. package/components/Select/Select/helpers.js +8 -9
  454. package/components/Select/SharedComponents/Actions.js +13 -115
  455. package/components/Select/SharedComponents/ButtonSelectWrapper/Button/Button.js +8 -43
  456. package/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.js +27 -130
  457. package/components/Select/SharedComponents/ContentTop.js +70 -177
  458. package/components/Select/SharedComponents/Footer.js +10 -97
  459. package/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.js +49 -161
  460. package/components/Select/SharedComponents/Loading.js +5 -16
  461. package/components/Select/SharedComponents/index.js +6 -92
  462. package/components/Select/constants.js +7 -9
  463. package/components/Select/index.js +6 -114
  464. package/components/Select/localization.js +28 -30
  465. package/components/Select/types.js +1 -1
  466. package/components/SideSheet/Footer/Footer.js +13 -99
  467. package/components/SideSheet/SideSheet.js +55 -208
  468. package/components/SideSheet/index.js +1 -56
  469. package/components/SideSheet/types.js +1 -1
  470. package/components/Snackbar/Snackbar.js +29 -123
  471. package/components/Snackbar/consts.js +11 -13
  472. package/components/Snackbar/index.js +1 -54
  473. package/components/Snackbar/types.js +1 -1
  474. package/components/Status/Status.js +16 -51
  475. package/components/Status/index.js +1 -8
  476. package/components/Status/types.js +1 -1
  477. package/components/Stepper/Stepper.js +28 -44
  478. package/components/Stepper/index.js +1 -3
  479. package/components/Stepper/types.js +1 -1
  480. package/components/Switcher/Switcher.js +17 -114
  481. package/components/Switcher/index.js +1 -55
  482. package/components/Switcher/types.js +1 -1
  483. package/components/Tab/Tab.js +18 -35
  484. package/components/Tab/TabItem.js +11 -52
  485. package/components/Tab/index.js +1 -11
  486. package/components/Tab/types.js +1 -1
  487. package/components/Table/Header.js +19 -121
  488. package/components/Table/IndeterminateCheckbox.js +13 -76
  489. package/components/Table/Row.js +16 -92
  490. package/components/Table/Table.js +60 -160
  491. package/components/Table/index.js +1 -61
  492. package/components/Table/types.js +1 -1
  493. package/components/Table/utils.js +17 -76
  494. package/components/TableV2/AdvancedPagination.d.ts +8 -0
  495. package/components/TableV2/AdvancedPagination.js +62 -0
  496. package/components/TableV2/ColumnHeader.d.ts +9 -0
  497. package/components/TableV2/ColumnHeader.js +32 -0
  498. package/components/TableV2/ColumnSettings.d.ts +9 -0
  499. package/components/TableV2/ColumnSettings.js +33 -0
  500. package/components/TableV2/IndeterminateCheckbox.d.ts +13 -0
  501. package/components/TableV2/IndeterminateCheckbox.js +16 -0
  502. package/components/TableV2/Table.d.ts +3 -0
  503. package/components/TableV2/Table.js +123 -0
  504. package/components/TableV2/constants/index.d.ts +6 -0
  505. package/components/TableV2/constants/index.js +27 -0
  506. package/components/TableV2/hooks/useTableColumnSettings.d.ts +2 -0
  507. package/components/TableV2/hooks/useTableColumnSettings.js +17 -0
  508. package/components/TableV2/hooks/useTableControl.d.ts +11 -0
  509. package/components/TableV2/hooks/useTableControl.js +182 -0
  510. package/components/TableV2/index.d.ts +3 -0
  511. package/components/TableV2/index.js +3 -0
  512. package/components/TableV2/loadTableSettings.d.ts +2 -0
  513. package/components/TableV2/loadTableSettings.js +9 -0
  514. package/components/TableV2/types.d.ts +70 -0
  515. package/components/TableV2/types.js +1 -0
  516. package/components/Text/Text.js +5 -34
  517. package/components/Text/index.js +1 -5
  518. package/components/Text/types.js +1 -1
  519. package/components/Textarea/Textarea.js +36 -140
  520. package/components/Textarea/index.js +1 -56
  521. package/components/Textarea/types.js +1 -1
  522. package/components/Tooltip/Tooltip.js +49 -99
  523. package/components/Tooltip/index.js +1 -18
  524. package/components/Tooltip/types.js +11 -13
  525. package/consts/index.js +86 -65
  526. package/context/FormContextProvider.js +4 -10
  527. package/context/index.js +2 -5
  528. package/context/types.js +6 -10
  529. package/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.js +4 -12
  530. package/helperComponents/AnimatePresenceWrapper/index.js +1 -3
  531. package/helperComponents/CodeBlock/CodeBlock.js +4 -178
  532. package/helperComponents/CodeBlock/index.js +1 -3
  533. package/helperComponents/ErrorMessage/ErrorMessage.js +7 -26
  534. package/helperComponents/ErrorMessage/index.js +1 -8
  535. package/helperComponents/ErrorMessage/types.js +1 -1
  536. package/helperComponents/GoToWebPage/GoToWebPage.js +5 -66
  537. package/helperComponents/IconDynamicComponent/IconDynamicComponent.js +11 -25
  538. package/helperComponents/IconDynamicComponent/constants.js +10 -31
  539. package/helperComponents/IconDynamicComponent/index.js +1 -3
  540. package/helperComponents/Label/Label.js +8 -28
  541. package/helperComponents/Label/index.js +1 -6
  542. package/helperComponents/Label/types.js +1 -1
  543. package/helperComponents/Loader/Loader.js +4 -14
  544. package/helperComponents/Loader/index.js +1 -2
  545. package/helperComponents/Loader/types.js +1 -1
  546. package/helperComponents/OptionItem/OptionItem.js +27 -148
  547. package/helperComponents/OptionItem/index.js +1 -64
  548. package/helperComponents/OptionItem/types.js +1 -1
  549. package/helperComponents/index.js +6 -65
  550. package/helpers/check-authorization.js +57 -111
  551. package/helpers/download-file.js +7 -9
  552. package/helpers/format-date.js +14 -42
  553. package/helpers/get-module-prefix.js +3 -5
  554. package/helpers/index.js +7 -59
  555. package/helpers/isDeepEqual.js +11 -17
  556. package/helpers/locale.js +10 -15
  557. package/helpers/storage.js +17 -18
  558. package/hooks/index.js +12 -21
  559. package/hooks/useChangePositionsOnScroll.js +28 -32
  560. package/hooks/useDispatchEventOnScroll.js +8 -13
  561. package/hooks/useFormContext.js +3 -8
  562. package/hooks/useFormProps.js +3 -8
  563. package/hooks/useGetElemPositions.js +14 -16
  564. package/hooks/useGetElemSizes.js +11 -13
  565. package/hooks/useGetHasBottomSpace.js +13 -24
  566. package/hooks/useGetIsMobile.js +33 -45
  567. package/hooks/useGetTooltipPosition.js +66 -82
  568. package/hooks/useGetTooltipStyles.js +45 -87
  569. package/hooks/useHideBodyScroll.js +25 -34
  570. package/hooks/useHideOnScroll.js +19 -24
  571. package/hooks/useOnOutsideClick.js +33 -46
  572. package/hooks/useScreenSize.js +24 -34
  573. package/index.d.ts +1 -0
  574. package/index.js +46 -453
  575. package/package.json +5 -1
  576. package/type/file-upload.js +6 -8
  577. package/type/index.js +4 -4
  578. package/type/locale.js +12 -14
  579. package/type/notification.js +7 -9
  580. package/type/status-code.js +7 -9
  581. package/utils/helpers.js +63 -77
  582. /package/{Alert-V_kH4Snn.js → Alert-sShHxUYN.js} +0 -0
@@ -1,58 +1,7 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
2
  import classNames from 'classnames';
4
-
5
- var IconAm = function IconAm(_ref) {
6
- var size = _ref.size,
7
- _ref$className = _ref.className,
8
- className = _ref$className === void 0 ? '' : _ref$className,
9
- onClick = _ref.onClick,
10
- refHandler = _ref.refHandler,
11
- id = _ref.id,
12
- dataId = _ref.dataId;
13
- return /*#__PURE__*/React.createElement("svg", {
14
- xmlns: "http://www.w3.org/2000/svg",
15
- className: classNames('svg-icon', _defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), className, className)),
16
- viewBox: "0 0 24 24",
17
- fill: "none",
18
- onClick: onClick,
19
- ref: refHandler,
20
- id: id,
21
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
22
- }, /*#__PURE__*/React.createElement("rect", {
23
- y: "3.43005",
24
- width: "24",
25
- height: "17.1429",
26
- rx: "2",
27
- fill: "white"
28
- }), /*#__PURE__*/React.createElement("mask", {
29
- id: "mask0_1993_1683",
30
- style: {
31
- maskType: 'luminance'
32
- },
33
- maskUnits: "userSpaceOnUse",
34
- x: "0",
35
- y: "3",
36
- width: "24",
37
- height: "18"
38
- }, /*#__PURE__*/React.createElement("rect", {
39
- y: "3.43005",
40
- width: "24",
41
- height: "17.1429",
42
- rx: "2",
43
- fill: "white"
44
- })), /*#__PURE__*/React.createElement("g", {
45
- mask: "url(#mask0_1993_1683)"
46
- }, /*#__PURE__*/React.createElement("path", {
47
- d: "M0 14.8587H24V9.14441H0V14.8587Z",
48
- fill: "#1047B9"
49
- }), /*#__PURE__*/React.createElement("path", {
50
- d: "M0 9.14434H24V3.43005H0V9.14434Z",
51
- fill: "#F01C31"
52
- }), /*#__PURE__*/React.createElement("path", {
53
- d: "M0 20.5729H24V14.8586H0V20.5729Z",
54
- fill: "#FECB2F"
55
- })));
56
- };
57
-
58
- export { IconAm, IconAm as default };
3
+ export const IconAm = ({ size, className = '', onClick, refHandler, id, dataId }) => (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [className]: className
6
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: [_jsx("rect", { y: "3.43005", width: "24", height: "17.1429", rx: "2", fill: "white" }), _jsx("mask", { id: "mask0_1993_1683", style: { maskType: 'luminance' }, maskUnits: "userSpaceOnUse", x: "0", y: "3", width: "24", height: "18", children: _jsx("rect", { y: "3.43005", width: "24", height: "17.1429", rx: "2", fill: "white" }) }), _jsxs("g", { mask: "url(#mask0_1993_1683)", children: [_jsx("path", { d: "M0 14.8587H24V9.14441H0V14.8587Z", fill: "#1047B9" }), _jsx("path", { d: "M0 9.14434H24V3.43005H0V9.14434Z", fill: "#F01C31" }), _jsx("path", { d: "M0 20.5729H24V14.8586H0V20.5729Z", fill: "#FECB2F" })] })] }));
7
+ export default IconAm;
@@ -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 IconAmd = function IconAmd(_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.75511 9.31063C5.75511 7.77012 6.32348 6.68322 7.12352 5.97204C7.94069 5.24564 9.05657 4.86249 10.2029 4.86253C11.3492 4.86255 12.4651 5.24575 13.2823 5.9722C14.0824 6.68341 14.6508 7.7703 14.6508 9.31065V11.9654H11.996C11.4816 11.9654 11.0647 12.3823 11.0647 12.8966C11.0647 13.411 11.4816 13.8279 11.996 13.8279H14.6508V15.5514H11.996C11.4816 15.5514 11.0647 15.9683 11.0647 16.4827C11.0647 16.997 11.4816 17.4139 11.996 17.4139H14.6508V20.0687C14.6508 20.5831 15.0677 21 15.582 21C16.0964 21 16.5133 20.5831 16.5133 20.0687V17.4139H19.1681C19.6824 17.4139 20.0993 16.997 20.0993 16.4827C20.0993 15.9683 19.6824 15.5514 19.1681 15.5514H16.5133V13.8279H19.1681C19.6824 13.8279 20.0993 13.411 20.0993 12.8966C20.0993 12.3823 19.6824 11.9654 19.1681 11.9654H16.5133V9.31065C16.5133 7.26491 15.7369 5.66212 14.5198 4.58017C13.3198 3.51346 11.7461 3.00004 10.2029 3C8.65975 2.99995 7.08609 3.51329 5.88609 4.58C4.66896 5.66194 3.89258 7.26476 3.89258 9.31063C3.89258 9.82494 4.30952 10.2419 4.82384 10.2419C5.33816 10.2419 5.75511 9.82494 5.75511 9.31063Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconAmd, IconAmd as default };
3
+ export const IconAmd = ({ 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.75511 9.31063C5.75511 7.77012 6.32348 6.68322 7.12352 5.97204C7.94069 5.24564 9.05657 4.86249 10.2029 4.86253C11.3492 4.86255 12.4651 5.24575 13.2823 5.9722C14.0824 6.68341 14.6508 7.7703 14.6508 9.31065V11.9654H11.996C11.4816 11.9654 11.0647 12.3823 11.0647 12.8966C11.0647 13.411 11.4816 13.8279 11.996 13.8279H14.6508V15.5514H11.996C11.4816 15.5514 11.0647 15.9683 11.0647 16.4827C11.0647 16.997 11.4816 17.4139 11.996 17.4139H14.6508V20.0687C14.6508 20.5831 15.0677 21 15.582 21C16.0964 21 16.5133 20.5831 16.5133 20.0687V17.4139H19.1681C19.6824 17.4139 20.0993 16.997 20.0993 16.4827C20.0993 15.9683 19.6824 15.5514 19.1681 15.5514H16.5133V13.8279H19.1681C19.6824 13.8279 20.0993 13.411 20.0993 12.8966C20.0993 12.3823 19.6824 11.9654 19.1681 11.9654H16.5133V9.31065C16.5133 7.26491 15.7369 5.66212 14.5198 4.58017C13.3198 3.51346 11.7461 3.00004 10.2029 3C8.65975 2.99995 7.08609 3.51329 5.88609 4.58C4.66896 5.66194 3.89258 7.26476 3.89258 9.31063C3.89258 9.82494 4.30952 10.2419 4.82384 10.2419C5.33816 10.2419 5.75511 9.82494 5.75511 9.31063Z", fill: "#222222" }) }));
8
+ export default IconAmd;
@@ -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 IconAmdFilled = function IconAmdFilled(_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.75511 9.31063C5.75511 7.77012 6.32348 6.68322 7.12352 5.97204C7.94069 5.24564 9.05657 4.86249 10.2029 4.86253C11.3492 4.86255 12.4651 5.24575 13.2823 5.9722C14.0824 6.68341 14.6508 7.7703 14.6508 9.31065V11.9654H11.996C11.4816 11.9654 11.0647 12.3823 11.0647 12.8966C11.0647 13.411 11.4816 13.8279 11.996 13.8279H14.6508V15.5514H11.996C11.4816 15.5514 11.0647 15.9683 11.0647 16.4827C11.0647 16.997 11.4816 17.4139 11.996 17.4139H14.6508V20.0687C14.6508 20.5831 15.0677 21 15.582 21C16.0964 21 16.5133 20.5831 16.5133 20.0687V17.4139H19.1681C19.6824 17.4139 20.0993 16.997 20.0993 16.4827C20.0993 15.9683 19.6824 15.5514 19.1681 15.5514H16.5133V13.8279H19.1681C19.6824 13.8279 20.0993 13.411 20.0993 12.8966C20.0993 12.3823 19.6824 11.9654 19.1681 11.9654H16.5133V9.31065C16.5133 7.26491 15.7369 5.66212 14.5198 4.58017C13.3198 3.51346 11.7461 3.00004 10.2029 3C8.65975 2.99995 7.08609 3.51329 5.88609 4.58C4.66896 5.66194 3.89258 7.26476 3.89258 9.31063C3.89258 9.82494 4.30952 10.2419 4.82384 10.2419C5.33816 10.2419 5.75511 9.82494 5.75511 9.31063Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconAmdFilled, IconAmdFilled as default };
3
+ export const IconAmdFilled = ({ 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.75511 9.31063C5.75511 7.77012 6.32348 6.68322 7.12352 5.97204C7.94069 5.24564 9.05657 4.86249 10.2029 4.86253C11.3492 4.86255 12.4651 5.24575 13.2823 5.9722C14.0824 6.68341 14.6508 7.7703 14.6508 9.31065V11.9654H11.996C11.4816 11.9654 11.0647 12.3823 11.0647 12.8966C11.0647 13.411 11.4816 13.8279 11.996 13.8279H14.6508V15.5514H11.996C11.4816 15.5514 11.0647 15.9683 11.0647 16.4827C11.0647 16.997 11.4816 17.4139 11.996 17.4139H14.6508V20.0687C14.6508 20.5831 15.0677 21 15.582 21C16.0964 21 16.5133 20.5831 16.5133 20.0687V17.4139H19.1681C19.6824 17.4139 20.0993 16.997 20.0993 16.4827C20.0993 15.9683 19.6824 15.5514 19.1681 15.5514H16.5133V13.8279H19.1681C19.6824 13.8279 20.0993 13.411 20.0993 12.8966C20.0993 12.3823 19.6824 11.9654 19.1681 11.9654H16.5133V9.31065C16.5133 7.26491 15.7369 5.66212 14.5198 4.58017C13.3198 3.51346 11.7461 3.00004 10.2029 3C8.65975 2.99995 7.08609 3.51329 5.88609 4.58C4.66896 5.66194 3.89258 7.26476 3.89258 9.31063C3.89258 9.82494 4.30952 10.2419 4.82384 10.2419C5.33816 10.2419 5.75511 9.82494 5.75511 9.31063Z", fill: "#222222" }) }));
8
+ export default IconAmdFilled;
@@ -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 IconApple = function IconApple(_ref) {
6
- var size = _ref.size,
7
- type = _ref.type,
8
- _ref$className = _ref.className,
9
- className = _ref$className === void 0 ? '' : _ref$className,
10
- onClick = _ref.onClick,
11
- refHandler = _ref.refHandler,
12
- id = _ref.id,
13
- dataId = _ref.dataId;
14
- return /*#__PURE__*/React.createElement("svg", {
15
- xmlns: "http://www.w3.org/2000/svg",
16
- className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
- viewBox: "0 0 24 24",
18
- fill: "none",
19
- onClick: onClick,
20
- ref: refHandler,
21
- id: id,
22
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
- }, /*#__PURE__*/React.createElement("g", {
24
- id: "Company=Apple, Style=Gray, Background=None"
25
- }, /*#__PURE__*/React.createElement("path", {
26
- id: "path4",
27
- d: "M20.8428 17.1449C20.5101 17.9135 20.1163 18.6211 19.66 19.2715C19.0381 20.1583 18.5288 20.7721 18.1364 21.113C17.528 21.6724 16.8762 21.959 16.1782 21.9753C15.6771 21.9753 15.0728 21.8327 14.3693 21.5434C13.6636 21.2555 13.015 21.113 12.422 21.113C11.8 21.113 11.133 21.2555 10.4195 21.5434C9.70493 21.8327 9.12928 21.9834 8.68916 21.9984C8.01981 22.0269 7.35264 21.7322 6.68668 21.113C6.26164 20.7422 5.72999 20.1067 5.09309 19.2063C4.40976 18.2449 3.84796 17.13 3.40784 15.8589C2.93648 14.486 2.7002 13.1565 2.7002 11.8694C2.7002 10.3951 3.01878 9.12345 3.65689 8.05784C4.1584 7.20191 4.82557 6.52672 5.66059 6.03105C6.49562 5.53539 7.39786 5.2828 8.36949 5.26664C8.90114 5.26664 9.59833 5.43109 10.4647 5.75429C11.3287 6.07858 11.8834 6.24303 12.1266 6.24303C12.3085 6.24303 12.9247 6.05074 13.9694 5.66738C14.9573 5.31186 15.7911 5.16466 16.4742 5.22264C18.3251 5.37202 19.7157 6.10167 20.6405 7.41619C18.9851 8.4192 18.1662 9.82403 18.1825 11.6262C18.1975 13.03 18.7067 14.1981 19.7076 15.1256C20.1611 15.5561 20.6676 15.8888 21.2312 16.1251C21.109 16.4795 20.98 16.819 20.8428 17.1449ZM16.5978 0.440369C16.5978 1.54062 16.1958 2.56792 15.3946 3.51878C14.4277 4.64917 13.2582 5.30236 11.99 5.19929C11.9738 5.06729 11.9645 4.92837 11.9645 4.78239C11.9645 3.72615 12.4243 2.59576 13.2408 1.67152C13.6485 1.20356 14.167 0.814453 14.7957 0.504058C15.4231 0.198295 16.0166 0.0292007 16.5747 0.000244141C16.591 0.147331 16.5978 0.294426 16.5978 0.440355V0.440369Z",
28
- fill: "#555555"
29
- })));
30
- };
31
-
32
- export { IconApple, IconApple as default };
3
+ export const IconApple = ({ 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: "Company=Apple, Style=Gray, Background=None", children: _jsx("path", { id: "path4", d: "M20.8428 17.1449C20.5101 17.9135 20.1163 18.6211 19.66 19.2715C19.0381 20.1583 18.5288 20.7721 18.1364 21.113C17.528 21.6724 16.8762 21.959 16.1782 21.9753C15.6771 21.9753 15.0728 21.8327 14.3693 21.5434C13.6636 21.2555 13.015 21.113 12.422 21.113C11.8 21.113 11.133 21.2555 10.4195 21.5434C9.70493 21.8327 9.12928 21.9834 8.68916 21.9984C8.01981 22.0269 7.35264 21.7322 6.68668 21.113C6.26164 20.7422 5.72999 20.1067 5.09309 19.2063C4.40976 18.2449 3.84796 17.13 3.40784 15.8589C2.93648 14.486 2.7002 13.1565 2.7002 11.8694C2.7002 10.3951 3.01878 9.12345 3.65689 8.05784C4.1584 7.20191 4.82557 6.52672 5.66059 6.03105C6.49562 5.53539 7.39786 5.2828 8.36949 5.26664C8.90114 5.26664 9.59833 5.43109 10.4647 5.75429C11.3287 6.07858 11.8834 6.24303 12.1266 6.24303C12.3085 6.24303 12.9247 6.05074 13.9694 5.66738C14.9573 5.31186 15.7911 5.16466 16.4742 5.22264C18.3251 5.37202 19.7157 6.10167 20.6405 7.41619C18.9851 8.4192 18.1662 9.82403 18.1825 11.6262C18.1975 13.03 18.7067 14.1981 19.7076 15.1256C20.1611 15.5561 20.6676 15.8888 21.2312 16.1251C21.109 16.4795 20.98 16.819 20.8428 17.1449ZM16.5978 0.440369C16.5978 1.54062 16.1958 2.56792 15.3946 3.51878C14.4277 4.64917 13.2582 5.30236 11.99 5.19929C11.9738 5.06729 11.9645 4.92837 11.9645 4.78239C11.9645 3.72615 12.4243 2.59576 13.2408 1.67152C13.6485 1.20356 14.167 0.814453 14.7957 0.504058C15.4231 0.198295 16.0166 0.0292007 16.5747 0.000244141C16.591 0.147331 16.5978 0.294426 16.5978 0.440355V0.440369Z", fill: "#555555" }) }) }));
8
+ export default IconApple;
@@ -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 IconArrowDown = function IconArrowDown(_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: "Direction=Down, Size=24, Theme=Regular"
25
- }, /*#__PURE__*/React.createElement("path", {
26
- id: "Shape",
27
- d: "M19.7906 13.2673C20.0763 12.9674 20.0647 12.4926 19.7648 12.2069C19.4649 11.9213 18.9901 11.9328 18.7045 12.2327L12.75 18.484V3.75C12.75 3.33579 12.4142 3 12 3C11.5858 3 11.25 3.33579 11.25 3.75V18.4844L5.29514 12.2327C5.00945 11.9328 4.53472 11.9213 4.23479 12.2069C3.93487 12.4926 3.92332 12.9674 4.20901 13.2673L11.2757 20.6862C11.4367 20.8553 11.6422 20.9552 11.8557 20.9861C11.9024 20.9952 11.9506 21 12 21C12.0497 21 12.0982 20.9952 12.1452 20.9859C12.3583 20.9548 12.5632 20.8549 12.7239 20.6862L19.7906 13.2673Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconArrowDown, IconArrowDown as default };
3
+ export const IconArrowDown = ({ 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: "Direction=Down, Size=24, Theme=Regular", children: _jsx("path", { id: "Shape", d: "M19.7906 13.2673C20.0763 12.9674 20.0647 12.4926 19.7648 12.2069C19.4649 11.9213 18.9901 11.9328 18.7045 12.2327L12.75 18.484V3.75C12.75 3.33579 12.4142 3 12 3C11.5858 3 11.25 3.33579 11.25 3.75V18.4844L5.29514 12.2327C5.00945 11.9328 4.53472 11.9213 4.23479 12.2069C3.93487 12.4926 3.92332 12.9674 4.20901 13.2673L11.2757 20.6862C11.4367 20.8553 11.6422 20.9552 11.8557 20.9861C11.9024 20.9952 11.9506 21 12 21C12.0497 21 12.0982 20.9952 12.1452 20.9859C12.3583 20.9548 12.5632 20.8549 12.7239 20.6862L19.7906 13.2673Z", fill: "#222222" }) }) }));
8
+ export default IconArrowDown;
@@ -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 IconArrowDownFilled = function IconArrowDownFilled(_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: "Direction=Down, Size=24, Theme=Filled"
25
- }, /*#__PURE__*/React.createElement("path", {
26
- id: "Shape",
27
- d: "M19.7159 13.7045C20.1036 13.3111 20.0989 12.678 19.7055 12.2903C19.3121 11.9027 18.6789 11.9074 18.2913 12.3008L13 17.6711V4C13 3.44771 12.5522 3 12 3C11.4477 3 11 3.44772 11 4V17.6646L5.71501 12.3008C5.32739 11.9074 4.69424 11.9027 4.30083 12.2903C3.90743 12.678 3.90274 13.3111 4.29036 13.7045L11.1127 20.6287C11.6024 21.1256 12.4039 21.1256 12.8936 20.6287L19.7159 13.7045Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconArrowDownFilled, IconArrowDownFilled as default };
3
+ export const IconArrowDownFilled = ({ 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: "Direction=Down, Size=24, Theme=Filled", children: _jsx("path", { id: "Shape", d: "M19.7159 13.7045C20.1036 13.3111 20.0989 12.678 19.7055 12.2903C19.3121 11.9027 18.6789 11.9074 18.2913 12.3008L13 17.6711V4C13 3.44771 12.5522 3 12 3C11.4477 3 11 3.44772 11 4V17.6646L5.71501 12.3008C5.32739 11.9074 4.69424 11.9027 4.30083 12.2903C3.90743 12.678 3.90274 13.3111 4.29036 13.7045L11.1127 20.6287C11.6024 21.1256 12.4039 21.1256 12.8936 20.6287L19.7159 13.7045Z", fill: "#222222" }) }) }));
8
+ export default IconArrowDownFilled;
@@ -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 IconArrowDownLeft = function IconArrowDownLeft(_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: "Direction=Down Left, Size=24, Theme=Regular"
25
- }, /*#__PURE__*/React.createElement("path", {
26
- id: "Shape",
27
- d: "M13.2456 21.0049C13.6598 21.0049 13.9956 20.6692 13.9956 20.2549C13.9956 19.8407 13.6598 19.5049 13.2456 19.5049H5.5765L20.7763 4.30517C21.0748 4.00659 21.0748 3.52251 20.7763 3.22393C20.4777 2.92536 19.9936 2.92536 19.695 3.22393L4.49561 18.4234V10.7549C4.49561 10.3407 4.15982 10.0049 3.74561 10.0049C3.33139 10.0049 2.99561 10.3407 2.99561 10.7549V20.2549C2.99561 20.6692 3.33139 21.0049 3.74561 21.0049H13.2456Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconArrowDownLeft, IconArrowDownLeft as default };
3
+ export const IconArrowDownLeft = ({ 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: "Direction=Down Left, Size=24, Theme=Regular", children: _jsx("path", { id: "Shape", d: "M13.2456 21.0049C13.6598 21.0049 13.9956 20.6692 13.9956 20.2549C13.9956 19.8407 13.6598 19.5049 13.2456 19.5049H5.5765L20.7763 4.30517C21.0748 4.00659 21.0748 3.52251 20.7763 3.22393C20.4777 2.92536 19.9936 2.92536 19.695 3.22393L4.49561 18.4234V10.7549C4.49561 10.3407 4.15982 10.0049 3.74561 10.0049C3.33139 10.0049 2.99561 10.3407 2.99561 10.7549V20.2549C2.99561 20.6692 3.33139 21.0049 3.74561 21.0049H13.2456Z", fill: "#222222" }) }) }));
8
+ export default IconArrowDownLeft;
@@ -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 IconArrowDownLeftFilled = function IconArrowDownLeftFilled(_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: "Direction=Down Left, Size=24, Theme=Filled"
25
- }, /*#__PURE__*/React.createElement("path", {
26
- id: "Shape",
27
- d: "M13 20.9999C13.5523 20.9999 14 20.5521 14 19.9999C14 19.4476 13.5523 18.9999 13 18.9999H6.41435L20.7071 4.70711C21.0976 4.31658 21.0976 3.68342 20.7071 3.29289C20.3166 2.90237 19.6834 2.90237 19.2929 3.29289L5 17.5858V10.9999C5 10.4476 4.55228 9.99987 4 9.99987C3.44772 9.99987 3 10.4476 3 10.9999V19.9999C3 20.5521 3.44772 20.9999 4 20.9999H13Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconArrowDownLeftFilled, IconArrowDownLeftFilled as default };
3
+ export const IconArrowDownLeftFilled = ({ 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: "Direction=Down Left, Size=24, Theme=Filled", children: _jsx("path", { id: "Shape", d: "M13 20.9999C13.5523 20.9999 14 20.5521 14 19.9999C14 19.4476 13.5523 18.9999 13 18.9999H6.41435L20.7071 4.70711C21.0976 4.31658 21.0976 3.68342 20.7071 3.29289C20.3166 2.90237 19.6834 2.90237 19.2929 3.29289L5 17.5858V10.9999C5 10.4476 4.55228 9.99987 4 9.99987C3.44772 9.99987 3 10.4476 3 10.9999V19.9999C3 20.5521 3.44772 20.9999 4 20.9999H13Z", fill: "#222222" }) }) }));
8
+ export default IconArrowDownLeftFilled;
@@ -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 IconArrowDownload = function IconArrowDownload(_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: "M18.2498 20.4999C18.664 20.4998 19 20.8355 19 21.2497C19 21.6639 18.6644 21.9998 18.2502 21.9999L5.25022 22.0037C4.836 22.0038 4.5 21.6681 4.5 21.2539C4.5 20.8397 4.83557 20.5038 5.24978 20.5037L18.2498 20.4999ZM11.6482 2.01173L11.75 2.00488C12.1297 2.00488 12.4435 2.28704 12.4932 2.65311L12.5 2.75488L12.499 16.4399L16.2208 12.7196C16.4871 12.4533 16.9038 12.4291 17.1974 12.647L17.2815 12.7197C17.5477 12.986 17.5719 13.4026 17.354 13.6962L17.2814 13.7803L12.2837 18.7769C12.0176 19.043 11.6012 19.0673 11.3076 18.8498L11.2235 18.7772L6.22003 13.7806C5.92694 13.4879 5.92661 13.0131 6.21931 12.72C6.48539 12.4535 6.90204 12.429 7.1958 12.6467L7.27997 12.7192L10.999 16.4329L11 2.75488C11 2.37519 11.2822 2.06139 11.6482 2.01173L11.75 2.00488L11.6482 2.01173Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconArrowDownload, IconArrowDownload as default };
3
+ export const IconArrowDownload = ({ 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: "M18.2498 20.4999C18.664 20.4998 19 20.8355 19 21.2497C19 21.6639 18.6644 21.9998 18.2502 21.9999L5.25022 22.0037C4.836 22.0038 4.5 21.6681 4.5 21.2539C4.5 20.8397 4.83557 20.5038 5.24978 20.5037L18.2498 20.4999ZM11.6482 2.01173L11.75 2.00488C12.1297 2.00488 12.4435 2.28704 12.4932 2.65311L12.5 2.75488L12.499 16.4399L16.2208 12.7196C16.4871 12.4533 16.9038 12.4291 17.1974 12.647L17.2815 12.7197C17.5477 12.986 17.5719 13.4026 17.354 13.6962L17.2814 13.7803L12.2837 18.7769C12.0176 19.043 11.6012 19.0673 11.3076 18.8498L11.2235 18.7772L6.22003 13.7806C5.92694 13.4879 5.92661 13.0131 6.21931 12.72C6.48539 12.4535 6.90204 12.429 7.1958 12.6467L7.27997 12.7192L10.999 16.4329L11 2.75488C11 2.37519 11.2822 2.06139 11.6482 2.01173L11.75 2.00488L11.6482 2.01173Z", fill: "#222222" }) }) }));
8
+ export default IconArrowDownload;
@@ -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 IconArrowDownloadFilled = function IconArrowDownloadFilled(_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: "M5.25 20.5H18.7477C19.1619 20.5 19.4977 20.8358 19.4977 21.25C19.4977 21.6297 19.2155 21.9435 18.8494 21.9932L18.7477 22H5.25C4.83579 22 4.5 21.6642 4.5 21.25C4.5 20.8703 4.78215 20.5565 5.14823 20.5069L5.25 20.5H18.7477H5.25ZM11.8834 2.00233L12 1.99561C12.5128 1.99561 12.9355 2.38165 12.9933 2.87898L13 2.99561V15.5856L16.2941 12.2928C16.6546 11.9324 17.2218 11.9047 17.6141 12.2098L17.7083 12.293C18.0687 12.6535 18.0964 13.2207 17.7913 13.613L17.7081 13.7072L12.7105 18.7038C12.3502 19.064 11.7833 19.0919 11.391 18.7873L11.2968 18.7042L6.29338 13.7076C5.90259 13.3173 5.90215 12.6842 6.29241 12.2934C6.65265 11.9327 7.21986 11.9045 7.61236 12.2093L7.70662 12.2924L11 15.5806V2.99561C11 2.48277 11.386 2.0601 11.8834 2.00233L12 1.99561L11.8834 2.00233Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconArrowDownloadFilled, IconArrowDownloadFilled as default };
3
+ export const IconArrowDownloadFilled = ({ 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: "M5.25 20.5H18.7477C19.1619 20.5 19.4977 20.8358 19.4977 21.25C19.4977 21.6297 19.2155 21.9435 18.8494 21.9932L18.7477 22H5.25C4.83579 22 4.5 21.6642 4.5 21.25C4.5 20.8703 4.78215 20.5565 5.14823 20.5069L5.25 20.5H18.7477H5.25ZM11.8834 2.00233L12 1.99561C12.5128 1.99561 12.9355 2.38165 12.9933 2.87898L13 2.99561V15.5856L16.2941 12.2928C16.6546 11.9324 17.2218 11.9047 17.6141 12.2098L17.7083 12.293C18.0687 12.6535 18.0964 13.2207 17.7913 13.613L17.7081 13.7072L12.7105 18.7038C12.3502 19.064 11.7833 19.0919 11.391 18.7873L11.2968 18.7042L6.29338 13.7076C5.90259 13.3173 5.90215 12.6842 6.29241 12.2934C6.65265 11.9327 7.21986 11.9045 7.61236 12.2093L7.70662 12.2924L11 15.5806V2.99561C11 2.48277 11.386 2.0601 11.8834 2.00233L12 1.99561L11.8834 2.00233Z", fill: "#222222" }) }) }));
8
+ export default IconArrowDownloadFilled;
@@ -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 IconArrowEnter = function IconArrowEnter(_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: "M9.0002 20.4001C8.66883 20.4001 8.4002 20.1315 8.4002 19.8001C8.4002 19.4687 8.66883 19.2001 9.0002 19.2001H16.8002C18.1257 19.2001 19.2002 18.1256 19.2002 16.8001V7.2001C19.2002 5.87461 18.1257 4.8001 16.8002 4.8001H9.0002C8.66883 4.8001 8.4002 4.53147 8.4002 4.2001C8.4002 3.86873 8.66883 3.6001 9.0002 3.6001H16.8002C18.7884 3.6001 20.4002 5.21187 20.4002 7.2001V16.8001C20.4002 18.7883 18.7884 20.4001 16.8002 20.4001H9.0002ZM9.17593 7.37583C9.41025 7.14152 9.79014 7.14152 10.0245 7.37583L14.2245 11.5758C14.4588 11.8101 14.4588 12.19 14.2245 12.4244L10.0245 16.6244C9.79014 16.8587 9.41025 16.8587 9.17593 16.6244C8.94162 16.39 8.94162 16.0101 9.17593 15.7758L12.3517 12.6001H1.8002C1.46882 12.6001 1.2002 12.3315 1.2002 12.0001C1.2002 11.6687 1.46882 11.4001 1.8002 11.4001H12.3517L9.17593 8.22436C8.94162 7.99005 8.94162 7.61015 9.17593 7.37583Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconArrowEnter, IconArrowEnter as default };
3
+ export const IconArrowEnter = ({ 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: "M9.0002 20.4001C8.66883 20.4001 8.4002 20.1315 8.4002 19.8001C8.4002 19.4687 8.66883 19.2001 9.0002 19.2001H16.8002C18.1257 19.2001 19.2002 18.1256 19.2002 16.8001V7.2001C19.2002 5.87461 18.1257 4.8001 16.8002 4.8001H9.0002C8.66883 4.8001 8.4002 4.53147 8.4002 4.2001C8.4002 3.86873 8.66883 3.6001 9.0002 3.6001H16.8002C18.7884 3.6001 20.4002 5.21187 20.4002 7.2001V16.8001C20.4002 18.7883 18.7884 20.4001 16.8002 20.4001H9.0002ZM9.17593 7.37583C9.41025 7.14152 9.79014 7.14152 10.0245 7.37583L14.2245 11.5758C14.4588 11.8101 14.4588 12.19 14.2245 12.4244L10.0245 16.6244C9.79014 16.8587 9.41025 16.8587 9.17593 16.6244C8.94162 16.39 8.94162 16.0101 9.17593 15.7758L12.3517 12.6001H1.8002C1.46882 12.6001 1.2002 12.3315 1.2002 12.0001C1.2002 11.6687 1.46882 11.4001 1.8002 11.4001H12.3517L9.17593 8.22436C8.94162 7.99005 8.94162 7.61015 9.17593 7.37583Z", fill: "#222222" }) }));
8
+ export default IconArrowEnter;
@@ -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 IconArrowEnterFilled = function IconArrowEnterFilled(_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: "M9.30019 21C8.80314 21 8.4002 20.5971 8.4002 20.1C8.4002 19.6029 8.80314 19.2 9.30019 19.2H16.8002C18.1257 19.2 19.2002 18.1255 19.2002 16.8V7.2C19.2002 5.87452 18.1257 4.8 16.8002 4.8H9.30019C8.80314 4.8 8.4002 4.39706 8.4002 3.9C8.4002 3.40294 8.80314 3 9.30019 3H16.8002C19.1198 3 21.0002 4.8804 21.0002 7.2V16.8C21.0002 19.1196 19.1198 21 16.8002 21H9.30019ZM9.28974 7.43868C9.65498 7.10154 10.2244 7.12431 10.5615 7.48955L14.1615 11.3896C14.4798 11.7343 14.4798 12.2657 14.1615 12.6105L10.5615 16.5105C10.2244 16.8757 9.65498 16.8985 9.28974 16.5613C8.9245 16.2242 8.90173 15.6548 9.23887 15.2896L11.4446 12.9H2.1002C1.60314 12.9 1.2002 12.4971 1.2002 12C1.2002 11.5029 1.60314 11.1 2.1002 11.1H11.4446L9.23887 8.71046C8.90173 8.34522 8.9245 7.77583 9.28974 7.43868Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconArrowEnterFilled, IconArrowEnterFilled as default };
3
+ export const IconArrowEnterFilled = ({ 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: "M9.30019 21C8.80314 21 8.4002 20.5971 8.4002 20.1C8.4002 19.6029 8.80314 19.2 9.30019 19.2H16.8002C18.1257 19.2 19.2002 18.1255 19.2002 16.8V7.2C19.2002 5.87452 18.1257 4.8 16.8002 4.8H9.30019C8.80314 4.8 8.4002 4.39706 8.4002 3.9C8.4002 3.40294 8.80314 3 9.30019 3H16.8002C19.1198 3 21.0002 4.8804 21.0002 7.2V16.8C21.0002 19.1196 19.1198 21 16.8002 21H9.30019ZM9.28974 7.43868C9.65498 7.10154 10.2244 7.12431 10.5615 7.48955L14.1615 11.3896C14.4798 11.7343 14.4798 12.2657 14.1615 12.6105L10.5615 16.5105C10.2244 16.8757 9.65498 16.8985 9.28974 16.5613C8.9245 16.2242 8.90173 15.6548 9.23887 15.2896L11.4446 12.9H2.1002C1.60314 12.9 1.2002 12.4971 1.2002 12C1.2002 11.5029 1.60314 11.1 2.1002 11.1H11.4446L9.23887 8.71046C8.90173 8.34522 8.9245 7.77583 9.28974 7.43868Z", fill: "#222222" }) }));
8
+ export default IconArrowEnterFilled;
@@ -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 IconArrowExit = function IconArrowExit(_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: "M15.0001 20.4001C15.3315 20.4001 15.6001 20.1315 15.6001 19.8001C15.6001 19.4687 15.3315 19.2001 15.0001 19.2001H7.2001C5.87461 19.2001 4.8001 18.1256 4.8001 16.8001V7.2001C4.8001 5.87461 5.87461 4.8001 7.2001 4.8001H15.0001C15.3315 4.8001 15.6001 4.53147 15.6001 4.2001C15.6001 3.86873 15.3315 3.6001 15.0001 3.6001H7.2001C5.21187 3.6001 3.6001 5.21187 3.6001 7.2001V16.8001C3.6001 18.7883 5.21187 20.4001 7.2001 20.4001H15.0001ZM16.3758 7.37583C16.6101 7.14152 16.99 7.14152 17.2244 7.37583L21.4244 11.5758C21.6587 11.8101 21.6587 12.19 21.4244 12.4244L17.2244 16.6244C16.99 16.8587 16.6101 16.8587 16.3758 16.6244C16.1415 16.39 16.1415 16.0101 16.3758 15.7758L19.5516 12.6001H9.0001C8.66873 12.6001 8.4001 12.3315 8.4001 12.0001C8.4001 11.6687 8.66873 11.4001 9.0001 11.4001H19.5516L16.3758 8.22436C16.1415 7.99005 16.1415 7.61015 16.3758 7.37583Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconArrowExit, IconArrowExit as default };
3
+ export const IconArrowExit = ({ 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: "M15.0001 20.4001C15.3315 20.4001 15.6001 20.1315 15.6001 19.8001C15.6001 19.4687 15.3315 19.2001 15.0001 19.2001H7.2001C5.87461 19.2001 4.8001 18.1256 4.8001 16.8001V7.2001C4.8001 5.87461 5.87461 4.8001 7.2001 4.8001H15.0001C15.3315 4.8001 15.6001 4.53147 15.6001 4.2001C15.6001 3.86873 15.3315 3.6001 15.0001 3.6001H7.2001C5.21187 3.6001 3.6001 5.21187 3.6001 7.2001V16.8001C3.6001 18.7883 5.21187 20.4001 7.2001 20.4001H15.0001ZM16.3758 7.37583C16.6101 7.14152 16.99 7.14152 17.2244 7.37583L21.4244 11.5758C21.6587 11.8101 21.6587 12.19 21.4244 12.4244L17.2244 16.6244C16.99 16.8587 16.6101 16.8587 16.3758 16.6244C16.1415 16.39 16.1415 16.0101 16.3758 15.7758L19.5516 12.6001H9.0001C8.66873 12.6001 8.4001 12.3315 8.4001 12.0001C8.4001 11.6687 8.66873 11.4001 9.0001 11.4001H19.5516L16.3758 8.22436C16.1415 7.99005 16.1415 7.61015 16.3758 7.37583Z", fill: "#222222" }) }));
8
+ export default IconArrowExit;
@@ -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 IconArrowExitFilled = function IconArrowExitFilled(_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: "M15.3001 21C15.7972 21 16.2001 20.5971 16.2001 20.1C16.2001 19.6029 15.7972 19.2 15.3001 19.2H7.8001C6.47461 19.2 5.4001 18.1255 5.4001 16.8V7.2C5.4001 5.87452 6.47461 4.8 7.8001 4.8H15.3001C15.7972 4.8 16.2001 4.39706 16.2001 3.9C16.2001 3.40294 15.7972 3 15.3001 3H7.8001C5.4805 3 3.6001 4.8804 3.6001 7.2V16.8C3.6001 19.1196 5.4805 21 7.8001 21H15.3001ZM16.4896 7.43868C16.8549 7.10154 17.4243 7.12431 17.7614 7.48955L21.3614 11.3896C21.6797 11.7343 21.6797 12.2657 21.3614 12.6105L17.7614 16.5105C17.4243 16.8757 16.8549 16.8985 16.4896 16.5613C16.1244 16.2242 16.1016 15.6548 16.4388 15.2896L18.6445 12.9H9.3001C8.80304 12.9 8.4001 12.4971 8.4001 12C8.4001 11.5029 8.80304 11.1 9.3001 11.1H18.6445L16.4388 8.71046C16.1016 8.34522 16.1244 7.77583 16.4896 7.43868Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconArrowExitFilled, IconArrowExitFilled as default };
3
+ export const IconArrowExitFilled = ({ 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: "M15.3001 21C15.7972 21 16.2001 20.5971 16.2001 20.1C16.2001 19.6029 15.7972 19.2 15.3001 19.2H7.8001C6.47461 19.2 5.4001 18.1255 5.4001 16.8V7.2C5.4001 5.87452 6.47461 4.8 7.8001 4.8H15.3001C15.7972 4.8 16.2001 4.39706 16.2001 3.9C16.2001 3.40294 15.7972 3 15.3001 3H7.8001C5.4805 3 3.6001 4.8804 3.6001 7.2V16.8C3.6001 19.1196 5.4805 21 7.8001 21H15.3001ZM16.4896 7.43868C16.8549 7.10154 17.4243 7.12431 17.7614 7.48955L21.3614 11.3896C21.6797 11.7343 21.6797 12.2657 21.3614 12.6105L17.7614 16.5105C17.4243 16.8757 16.8549 16.8985 16.4896 16.5613C16.1244 16.2242 16.1016 15.6548 16.4388 15.2896L18.6445 12.9H9.3001C8.80304 12.9 8.4001 12.4971 8.4001 12C8.4001 11.5029 8.80304 11.1 9.3001 11.1H18.6445L16.4388 8.71046C16.1016 8.34522 16.1244 7.77583 16.4896 7.43868Z", fill: "#222222" }) }));
8
+ export default IconArrowExitFilled;