hrm_ui_lib 2.0.0-alpha.24 → 2.0.0-alpha.25

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 (941) hide show
  1. package/assets/images/under-construction.webp +0 -0
  2. package/assets/styles/styles.css +1 -9462
  3. package/components/Alert/Alert.js +6 -54
  4. package/components/Alert/consts.js +1 -16
  5. package/components/Alert/index.js +1 -54
  6. package/components/Avatar/Avatar.js +1 -121
  7. package/components/Avatar/AvatarGroup.js +5 -122
  8. package/components/Avatar/index.js +1 -66
  9. package/components/Badge/Badge.js +2 -24
  10. package/components/Badge/index.js +1 -6
  11. package/components/BadgeV2/BadgeV2.js +1 -52
  12. package/components/BadgeV2/index.js +1 -7
  13. package/components/BadgeV2/types.js +1 -7
  14. package/components/Breadcrumb/Breadcrumb.js +2 -24
  15. package/components/Breadcrumb/index.js +1 -2
  16. package/components/Button/Button.js +2 -54
  17. package/components/Button/consts.js +1 -16
  18. package/components/Button/index.js +1 -54
  19. package/components/ButtonGroup/ButtonGroup.js +2 -46
  20. package/components/ButtonGroup/ButtonGroupItem.js +3 -52
  21. package/components/ButtonGroup/consts.js +1 -12
  22. package/components/ButtonGroup/index.js +1 -10
  23. package/components/Card/Card.js +1 -92
  24. package/components/Card/CardComponent/Card.js +3 -37
  25. package/components/Card/CardComponent/CardBody.js +2 -39
  26. package/components/Card/CardComponent/CardFooter.js +1 -13
  27. package/components/Card/CardComponent/CardHead.js +2 -91
  28. package/components/Card/CardContext.js +1 -11
  29. package/components/Card/index.js +1 -63
  30. package/components/CardGroup/CardGroup.js +1 -27
  31. package/components/CardGroup/CardGroupComponent/CardBody.js +2 -19
  32. package/components/CardGroup/CardGroupComponent/CardGroup.js +2 -28
  33. package/components/CardGroup/CardGroupComponent/CardHead.js +3 -19
  34. package/components/CardGroup/CardGroupContext.js +1 -8
  35. package/components/CardGroup/index.js +1 -11
  36. package/components/Checkbox/Checkbox.js +6 -54
  37. package/components/Checkbox/index.js +1 -54
  38. package/components/Chips/Chips.js +2 -67
  39. package/components/Chips/consts.js +1 -14
  40. package/components/Chips/index.js +1 -11
  41. package/components/Chips/types.js +1 -7
  42. package/components/Collapse/Collapse/Collapse.js +5 -79
  43. package/components/Collapse/Collapse/Title.js +2 -48
  44. package/components/Collapse/CollapseGroup/CollapseGroup.js +3 -76
  45. package/components/Collapse/CollapseItem/CollapseItem.js +10 -89
  46. package/components/Collapse/index.js +1 -19
  47. package/components/Container/Container.js +2 -10
  48. package/components/Container/index.js +1 -2
  49. package/components/Copy/Copy.js +3 -96
  50. package/components/Copy/index.js +1 -56
  51. package/components/Counter/Counter.js +2 -139
  52. package/components/Counter/index.js +1 -63
  53. package/components/DatePicker/CustomHeader/CustomHeader.js +7 -194
  54. package/components/DatePicker/CustomHeader/helpers.js +1 -17
  55. package/components/DatePicker/RangeDatePicker/RangeDatePicker.js +1 -138
  56. package/components/DatePicker/RangeDatePicker/RangeDatePickerDesktop.js +4 -185
  57. package/components/DatePicker/RangeDatePicker/RangeDatePickerMobile.js +8 -277
  58. package/components/DatePicker/RangeDatePicker/index.js +1 -132
  59. package/components/DatePicker/SimpleDatePicker/SimpleDatePicker.js +1 -138
  60. package/components/DatePicker/SimpleDatePicker/SimpleDatePickerDesktop.js +4 -213
  61. package/components/DatePicker/SimpleDatePicker/SimpleDatePickerMobile.js +5 -218
  62. package/components/DatePicker/SimpleDatePicker/index.js +1 -131
  63. package/components/DatePicker/TimePicker/MobileModalContent.js +4 -126
  64. package/components/DatePicker/TimePicker/TimePicker.js +1 -86
  65. package/components/DatePicker/TimePicker/TimePickerDesktop.js +4 -164
  66. package/components/DatePicker/TimePicker/TimePickerMobile.js +5 -131
  67. package/components/DatePicker/TimePicker/consts.js +1 -8
  68. package/components/DatePicker/TimePicker/helpers.js +1 -21
  69. package/components/DatePicker/TimePicker/index.js +1 -80
  70. package/components/DatePicker/hooks.js +1 -44
  71. package/components/DatePicker/index.js +1 -144
  72. package/components/DatePicker/localization.js +1 -7
  73. package/components/DatePicker/types.js +1 -7
  74. package/components/Divider/Divider.js +2 -19
  75. package/components/Divider/index.js +1 -3
  76. package/components/Empty/Empty.js +4 -87
  77. package/components/Empty/index.js +1 -56
  78. package/components/FileUpload/DropzoneFileUpload/DropzoneFileUpload.js +7 -54
  79. package/components/FileUpload/DropzoneFileUpload/ErrorItem.js +1 -54
  80. package/components/FileUpload/DropzoneFileUpload/FilePreview.js +2 -53
  81. package/components/FileUpload/DropzoneFileUpload/PreviewItem.js +7 -54
  82. package/components/FileUpload/DropzoneFileUpload/helpers.js +1 -54
  83. package/components/FileUpload/DropzoneFileUpload/index.js +1 -54
  84. package/components/FileUpload/FileUpload.js +6 -195
  85. package/components/FileUpload/UploadItems.js +6 -104
  86. package/components/FileUpload/index.js +1 -63
  87. package/components/FileUpload/types.js +1 -10
  88. package/components/FormContainer/FormContainer.js +1 -146
  89. package/components/FormContainer/index.js +1 -57
  90. package/components/FormContainer/types.d.ts +1 -2
  91. package/components/FormField/FormField.js +2 -117
  92. package/components/FormField/index.js +1 -58
  93. package/components/FormField/types.d.ts +1 -0
  94. package/components/Heading/Heading.js +2 -29
  95. package/components/Heading/index.js +1 -5
  96. package/components/IconDynamicComponent/IconDynamicComponent.js +1 -40
  97. package/components/IconDynamicComponent/index.js +1 -3
  98. package/components/Image/Image.js +1 -33
  99. package/components/Image/index.js +1 -2
  100. package/components/Input/Input.js +9 -245
  101. package/components/Input/index.js +1 -60
  102. package/components/Link/Link.js +2 -42
  103. package/components/Link/index.js +1 -3
  104. package/components/Menu/Menu.js +3 -167
  105. package/components/Menu/NestedMenu.js +3 -180
  106. package/components/Menu/index.js +1 -74
  107. package/components/Modal/Modal.js +1 -54
  108. package/components/Modal/ModalConfirmation.js +3 -145
  109. package/components/Modal/ModalContent.js +5 -54
  110. package/components/Modal/index.js +1 -55
  111. package/components/More/More.js +3 -88
  112. package/components/More/index.js +1 -55
  113. package/components/Pagination/Pagination.js +2 -59
  114. package/components/Pagination/consts.js +1 -8
  115. package/components/Pagination/index.js +1 -10
  116. package/components/Popover/Popover.js +1 -54
  117. package/components/Popover/PopoverDesktop.js +1 -71
  118. package/components/Popover/PopoverMobile.js +3 -54
  119. package/components/Popover/index.js +1 -54
  120. package/components/Progress/Progress.js +4 -57
  121. package/components/Progress/index.js +1 -2
  122. package/components/ProgressStep/ProgressStep.js +2 -39
  123. package/components/ProgressStep/Step.js +9 -101
  124. package/components/ProgressStep/consts.js +1 -9
  125. package/components/ProgressStep/index.js +1 -12
  126. package/components/ProgressStep/types.js +1 -7
  127. package/components/Radio/Radio.js +4 -58
  128. package/components/Radio/RadioGroup.js +4 -115
  129. package/components/Radio/index.js +1 -57
  130. package/components/SVGIcons/IconAdd.d.ts +1 -1
  131. package/components/SVGIcons/IconAdd.js +1 -29
  132. package/components/SVGIcons/IconAddCircle.d.ts +1 -1
  133. package/components/SVGIcons/IconAddCircle.js +1 -32
  134. package/components/SVGIcons/IconAddCircleFilled.d.ts +1 -1
  135. package/components/SVGIcons/IconAddCircleFilled.js +1 -32
  136. package/components/SVGIcons/IconAddFilled.d.ts +1 -1
  137. package/components/SVGIcons/IconAddFilled.js +1 -29
  138. package/components/SVGIcons/IconAirplaneTakeOff.d.ts +1 -1
  139. package/components/SVGIcons/IconAirplaneTakeOff.js +1 -29
  140. package/components/SVGIcons/IconAirplaneTakeOffFilled.d.ts +1 -1
  141. package/components/SVGIcons/IconAirplaneTakeOffFilled.js +1 -29
  142. package/components/SVGIcons/IconAlert.d.ts +1 -1
  143. package/components/SVGIcons/IconAlert.js +1 -32
  144. package/components/SVGIcons/IconAlertBadge.d.ts +1 -1
  145. package/components/SVGIcons/IconAlertBadge.js +1 -32
  146. package/components/SVGIcons/IconAlertBadgeFilled.d.ts +1 -1
  147. package/components/SVGIcons/IconAlertBadgeFilled.js +1 -32
  148. package/components/SVGIcons/IconAlertFilled.d.ts +1 -1
  149. package/components/SVGIcons/IconAlertFilled.js +1 -32
  150. package/components/SVGIcons/IconAm.d.ts +1 -1
  151. package/components/SVGIcons/IconAm.js +7 -58
  152. package/components/SVGIcons/IconAmd.d.ts +1 -1
  153. package/components/SVGIcons/IconAmd.js +1 -29
  154. package/components/SVGIcons/IconAmdFilled.d.ts +1 -1
  155. package/components/SVGIcons/IconAmdFilled.js +1 -29
  156. package/components/SVGIcons/IconApple.d.ts +1 -1
  157. package/components/SVGIcons/IconApple.js +1 -32
  158. package/components/SVGIcons/IconArrowDown.d.ts +1 -1
  159. package/components/SVGIcons/IconArrowDown.js +1 -32
  160. package/components/SVGIcons/IconArrowDownFilled.d.ts +1 -1
  161. package/components/SVGIcons/IconArrowDownFilled.js +1 -32
  162. package/components/SVGIcons/IconArrowDownLeft.d.ts +1 -1
  163. package/components/SVGIcons/IconArrowDownLeft.js +1 -32
  164. package/components/SVGIcons/IconArrowDownLeftFilled.d.ts +1 -1
  165. package/components/SVGIcons/IconArrowDownLeftFilled.js +1 -32
  166. package/components/SVGIcons/IconArrowDownload.d.ts +1 -1
  167. package/components/SVGIcons/IconArrowDownload.js +1 -32
  168. package/components/SVGIcons/IconArrowDownloadFilled.d.ts +1 -1
  169. package/components/SVGIcons/IconArrowDownloadFilled.js +1 -32
  170. package/components/SVGIcons/IconArrowEnter.d.ts +1 -1
  171. package/components/SVGIcons/IconArrowEnter.js +1 -29
  172. package/components/SVGIcons/IconArrowEnterFilled.d.ts +1 -1
  173. package/components/SVGIcons/IconArrowEnterFilled.js +1 -29
  174. package/components/SVGIcons/IconArrowExit.d.ts +1 -1
  175. package/components/SVGIcons/IconArrowExit.js +1 -29
  176. package/components/SVGIcons/IconArrowExitFilled.d.ts +1 -1
  177. package/components/SVGIcons/IconArrowExitFilled.js +1 -29
  178. package/components/SVGIcons/IconArrowExportLeftToRight.d.ts +1 -1
  179. package/components/SVGIcons/IconArrowExportLeftToRight.js +1 -32
  180. package/components/SVGIcons/IconArrowExportLeftToRightFilled.d.ts +1 -1
  181. package/components/SVGIcons/IconArrowExportLeftToRightFilled.js +1 -32
  182. package/components/SVGIcons/IconArrowExportRightToLeft.d.ts +1 -1
  183. package/components/SVGIcons/IconArrowExportRightToLeft.js +1 -32
  184. package/components/SVGIcons/IconArrowExportRightToLeftFilled.d.ts +1 -1
  185. package/components/SVGIcons/IconArrowExportRightToLeftFilled.js +1 -32
  186. package/components/SVGIcons/IconArrowExportUp.d.ts +1 -1
  187. package/components/SVGIcons/IconArrowExportUp.js +1 -32
  188. package/components/SVGIcons/IconArrowExportUpFilled.d.ts +1 -1
  189. package/components/SVGIcons/IconArrowExportUpFilled.js +1 -32
  190. package/components/SVGIcons/IconArrowImport.d.ts +1 -1
  191. package/components/SVGIcons/IconArrowImport.js +1 -32
  192. package/components/SVGIcons/IconArrowImportFilled.d.ts +1 -1
  193. package/components/SVGIcons/IconArrowImportFilled.js +1 -32
  194. package/components/SVGIcons/IconArrowLeft.d.ts +1 -1
  195. package/components/SVGIcons/IconArrowLeft.js +1 -32
  196. package/components/SVGIcons/IconArrowLeftFilled.d.ts +1 -1
  197. package/components/SVGIcons/IconArrowLeftFilled.js +1 -32
  198. package/components/SVGIcons/IconArrowRepeatAll.d.ts +1 -1
  199. package/components/SVGIcons/IconArrowRepeatAll.js +1 -32
  200. package/components/SVGIcons/IconArrowRepeatAllFilled.d.ts +1 -1
  201. package/components/SVGIcons/IconArrowRepeatAllFilled.js +1 -32
  202. package/components/SVGIcons/IconArrowReset.d.ts +1 -1
  203. package/components/SVGIcons/IconArrowReset.js +1 -32
  204. package/components/SVGIcons/IconArrowResetFilled.d.ts +1 -1
  205. package/components/SVGIcons/IconArrowResetFilled.js +1 -32
  206. package/components/SVGIcons/IconArrowRight.d.ts +1 -1
  207. package/components/SVGIcons/IconArrowRight.js +1 -32
  208. package/components/SVGIcons/IconArrowRightFilled.d.ts +1 -1
  209. package/components/SVGIcons/IconArrowRightFilled.js +1 -32
  210. package/components/SVGIcons/IconArrowSort.d.ts +1 -1
  211. package/components/SVGIcons/IconArrowSort.js +1 -29
  212. package/components/SVGIcons/IconArrowSortFilled.d.ts +1 -1
  213. package/components/SVGIcons/IconArrowSortFilled.js +1 -29
  214. package/components/SVGIcons/IconArrowSync.d.ts +1 -1
  215. package/components/SVGIcons/IconArrowSync.js +1 -29
  216. package/components/SVGIcons/IconArrowSyncFilled.d.ts +1 -1
  217. package/components/SVGIcons/IconArrowSyncFilled.js +1 -29
  218. package/components/SVGIcons/IconArrowUp.d.ts +1 -1
  219. package/components/SVGIcons/IconArrowUp.js +1 -32
  220. package/components/SVGIcons/IconArrowUpFilled.d.ts +1 -1
  221. package/components/SVGIcons/IconArrowUpFilled.js +1 -32
  222. package/components/SVGIcons/IconArrowUpLeft.d.ts +1 -1
  223. package/components/SVGIcons/IconArrowUpLeft.js +1 -32
  224. package/components/SVGIcons/IconArrowUpLeftFilled.d.ts +1 -1
  225. package/components/SVGIcons/IconArrowUpLeftFilled.js +1 -32
  226. package/components/SVGIcons/IconArrowUpRight.d.ts +1 -1
  227. package/components/SVGIcons/IconArrowUpRight.js +1 -32
  228. package/components/SVGIcons/IconArrowUpRightFilled.d.ts +1 -1
  229. package/components/SVGIcons/IconArrowUpRightFilled.js +1 -32
  230. package/components/SVGIcons/IconAttach.d.ts +1 -1
  231. package/components/SVGIcons/IconAttach.js +1 -32
  232. package/components/SVGIcons/IconAttachFilled.d.ts +1 -1
  233. package/components/SVGIcons/IconAttachFilled.js +1 -32
  234. package/components/SVGIcons/IconBeach.d.ts +1 -1
  235. package/components/SVGIcons/IconBeach.js +1 -29
  236. package/components/SVGIcons/IconBeachFilled.d.ts +1 -1
  237. package/components/SVGIcons/IconBeachFilled.js +1 -29
  238. package/components/SVGIcons/IconBook.d.ts +1 -1
  239. package/components/SVGIcons/IconBook.js +1 -32
  240. package/components/SVGIcons/IconBookFilled.d.ts +1 -1
  241. package/components/SVGIcons/IconBookFilled.js +1 -32
  242. package/components/SVGIcons/IconBookmark.d.ts +1 -1
  243. package/components/SVGIcons/IconBookmark.js +1 -32
  244. package/components/SVGIcons/IconBookmarkFilled.d.ts +1 -1
  245. package/components/SVGIcons/IconBookmarkFilled.js +1 -32
  246. package/components/SVGIcons/IconBriefcase.d.ts +1 -1
  247. package/components/SVGIcons/IconBriefcase.js +1 -32
  248. package/components/SVGIcons/IconBriefcaseFilled.d.ts +1 -1
  249. package/components/SVGIcons/IconBriefcaseFilled.js +1 -32
  250. package/components/SVGIcons/IconBuilding.d.ts +1 -1
  251. package/components/SVGIcons/IconBuilding.js +7 -55
  252. package/components/SVGIcons/IconBuildingBank.d.ts +1 -1
  253. package/components/SVGIcons/IconBuildingBank.js +1 -29
  254. package/components/SVGIcons/IconBuildingBankFilled.d.ts +1 -1
  255. package/components/SVGIcons/IconBuildingBankFilled.js +1 -29
  256. package/components/SVGIcons/IconBuildingFilled.d.ts +1 -1
  257. package/components/SVGIcons/IconBuildingFilled.js +1 -32
  258. package/components/SVGIcons/IconBulletListAdd.d.ts +1 -1
  259. package/components/SVGIcons/IconBulletListAdd.js +1 -32
  260. package/components/SVGIcons/IconBulletListAddFilled.d.ts +1 -1
  261. package/components/SVGIcons/IconBulletListAddFilled.js +1 -32
  262. package/components/SVGIcons/IconCalculator.d.ts +1 -1
  263. package/components/SVGIcons/IconCalculator.js +1 -32
  264. package/components/SVGIcons/IconCalculatorFilled.d.ts +1 -1
  265. package/components/SVGIcons/IconCalculatorFilled.js +1 -32
  266. package/components/SVGIcons/IconCalendarClock.d.ts +1 -1
  267. package/components/SVGIcons/IconCalendarClock.js +1 -29
  268. package/components/SVGIcons/IconCalendarClockFilled.d.ts +1 -1
  269. package/components/SVGIcons/IconCalendarClockFilled.js +1 -29
  270. package/components/SVGIcons/IconCalendarDay.d.ts +1 -1
  271. package/components/SVGIcons/IconCalendarDay.js +1 -32
  272. package/components/SVGIcons/IconCalendarDayFilled.d.ts +1 -1
  273. package/components/SVGIcons/IconCalendarDayFilled.js +1 -32
  274. package/components/SVGIcons/IconCalendarEmpty.d.ts +1 -1
  275. package/components/SVGIcons/IconCalendarEmpty.js +1 -29
  276. package/components/SVGIcons/IconCalendarLeft.d.ts +1 -1
  277. package/components/SVGIcons/IconCalendarLeft.js +1 -29
  278. package/components/SVGIcons/IconCalendarLeftFilled.d.ts +1 -1
  279. package/components/SVGIcons/IconCalendarLeftFilled.js +1 -29
  280. package/components/SVGIcons/IconCalendarRight.d.ts +1 -1
  281. package/components/SVGIcons/IconCalendarRight.js +1 -29
  282. package/components/SVGIcons/IconCalendarRightFilled.d.ts +1 -1
  283. package/components/SVGIcons/IconCalendarRightFilled.js +1 -29
  284. package/components/SVGIcons/IconCall.d.ts +1 -1
  285. package/components/SVGIcons/IconCall.js +1 -32
  286. package/components/SVGIcons/IconCallFilled.d.ts +1 -1
  287. package/components/SVGIcons/IconCallFilled.js +1 -32
  288. package/components/SVGIcons/IconCard.d.ts +1 -1
  289. package/components/SVGIcons/IconCard.js +1 -29
  290. package/components/SVGIcons/IconCardFilled.d.ts +1 -1
  291. package/components/SVGIcons/IconCardFilled.js +1 -29
  292. package/components/SVGIcons/IconCaretDown.d.ts +1 -1
  293. package/components/SVGIcons/IconCaretDown.js +1 -29
  294. package/components/SVGIcons/IconCaretDownFilled.d.ts +1 -1
  295. package/components/SVGIcons/IconCaretDownFilled.js +1 -29
  296. package/components/SVGIcons/IconCaretDownRight.d.ts +1 -1
  297. package/components/SVGIcons/IconCaretDownRight.js +1 -29
  298. package/components/SVGIcons/IconCaretDownRightFilled.d.ts +1 -1
  299. package/components/SVGIcons/IconCaretDownRightFilled.js +1 -29
  300. package/components/SVGIcons/IconCaretLeft.d.ts +1 -1
  301. package/components/SVGIcons/IconCaretLeft.js +1 -29
  302. package/components/SVGIcons/IconCaretLeftFilled.d.ts +1 -1
  303. package/components/SVGIcons/IconCaretLeftFilled.js +1 -29
  304. package/components/SVGIcons/IconCaretRight.d.ts +1 -1
  305. package/components/SVGIcons/IconCaretRight.js +1 -29
  306. package/components/SVGIcons/IconCaretRightFilled.d.ts +1 -1
  307. package/components/SVGIcons/IconCaretRightFilled.js +1 -29
  308. package/components/SVGIcons/IconCaretUp.d.ts +1 -1
  309. package/components/SVGIcons/IconCaretUp.js +1 -29
  310. package/components/SVGIcons/IconCaretUpFilled.d.ts +1 -1
  311. package/components/SVGIcons/IconCaretUpFilled.js +1 -29
  312. package/components/SVGIcons/IconChartPerson.d.ts +1 -1
  313. package/components/SVGIcons/IconChartPerson.js +1 -29
  314. package/components/SVGIcons/IconChartPersonFilled.d.ts +1 -1
  315. package/components/SVGIcons/IconChartPersonFilled.js +1 -29
  316. package/components/SVGIcons/IconChat.d.ts +1 -1
  317. package/components/SVGIcons/IconChat.js +1 -29
  318. package/components/SVGIcons/IconChatFilled.d.ts +1 -1
  319. package/components/SVGIcons/IconChatFilled.js +1 -29
  320. package/components/SVGIcons/IconChatMultiple.d.ts +1 -1
  321. package/components/SVGIcons/IconChatMultiple.js +1 -29
  322. package/components/SVGIcons/IconChatMultipleFilled.d.ts +1 -1
  323. package/components/SVGIcons/IconChatMultipleFilled.js +1 -29
  324. package/components/SVGIcons/IconCheckboxArrowRight.d.ts +1 -1
  325. package/components/SVGIcons/IconCheckboxArrowRight.js +1 -32
  326. package/components/SVGIcons/IconCheckboxArrowRightFilled.d.ts +1 -1
  327. package/components/SVGIcons/IconCheckboxArrowRightFilled.js +1 -32
  328. package/components/SVGIcons/IconCheckmark.d.ts +1 -1
  329. package/components/SVGIcons/IconCheckmark.js +1 -29
  330. package/components/SVGIcons/IconCheckmarkCircle.d.ts +1 -1
  331. package/components/SVGIcons/IconCheckmarkCircle.js +1 -29
  332. package/components/SVGIcons/IconCheckmarkCircleFilled.d.ts +1 -1
  333. package/components/SVGIcons/IconCheckmarkCircleFilled.js +1 -29
  334. package/components/SVGIcons/IconCheckmarkFilled.d.ts +1 -1
  335. package/components/SVGIcons/IconCheckmarkFilled.js +1 -29
  336. package/components/SVGIcons/IconChevronDoubleLeft.d.ts +1 -1
  337. package/components/SVGIcons/IconChevronDoubleLeft.js +1 -29
  338. package/components/SVGIcons/IconChevronDoubleRight.d.ts +1 -1
  339. package/components/SVGIcons/IconChevronDoubleRight.js +1 -29
  340. package/components/SVGIcons/IconChevronDown.d.ts +1 -1
  341. package/components/SVGIcons/IconChevronDown.js +1 -29
  342. package/components/SVGIcons/IconChevronDownFilled.d.ts +1 -1
  343. package/components/SVGIcons/IconChevronDownFilled.js +1 -29
  344. package/components/SVGIcons/IconChevronLeft.d.ts +1 -1
  345. package/components/SVGIcons/IconChevronLeft.js +1 -29
  346. package/components/SVGIcons/IconChevronLeftFilled.d.ts +1 -1
  347. package/components/SVGIcons/IconChevronLeftFilled.js +1 -29
  348. package/components/SVGIcons/IconChevronRight.d.ts +1 -1
  349. package/components/SVGIcons/IconChevronRight.js +1 -29
  350. package/components/SVGIcons/IconChevronRightFilled.d.ts +1 -1
  351. package/components/SVGIcons/IconChevronRightFilled.js +1 -29
  352. package/components/SVGIcons/IconChevronUp.d.ts +1 -1
  353. package/components/SVGIcons/IconChevronUp.js +1 -29
  354. package/components/SVGIcons/IconChevronUpDown.d.ts +1 -1
  355. package/components/SVGIcons/IconChevronUpDown.js +1 -32
  356. package/components/SVGIcons/IconChevronUpDownFilled.d.ts +1 -1
  357. package/components/SVGIcons/IconChevronUpDownFilled.js +1 -32
  358. package/components/SVGIcons/IconChevronUpFilled.d.ts +1 -1
  359. package/components/SVGIcons/IconChevronUpFilled.js +1 -29
  360. package/components/SVGIcons/IconClipboardDay.d.ts +1 -1
  361. package/components/SVGIcons/IconClipboardDay.js +1 -29
  362. package/components/SVGIcons/IconClock.d.ts +1 -1
  363. package/components/SVGIcons/IconClock.js +1 -32
  364. package/components/SVGIcons/IconClockDismiss.d.ts +1 -1
  365. package/components/SVGIcons/IconClockDismiss.js +1 -29
  366. package/components/SVGIcons/IconClockDismissFilled.d.ts +1 -1
  367. package/components/SVGIcons/IconClockDismissFilled.js +1 -29
  368. package/components/SVGIcons/IconClockFilled.d.ts +1 -1
  369. package/components/SVGIcons/IconClockFilled.js +1 -32
  370. package/components/SVGIcons/IconComment.d.ts +1 -1
  371. package/components/SVGIcons/IconComment.js +1 -32
  372. package/components/SVGIcons/IconCommentFilled.d.ts +1 -1
  373. package/components/SVGIcons/IconCommentFilled.js +1 -32
  374. package/components/SVGIcons/IconContractCard.d.ts +1 -1
  375. package/components/SVGIcons/IconContractCard.js +1 -29
  376. package/components/SVGIcons/IconContractCardFilled.d.ts +1 -1
  377. package/components/SVGIcons/IconContractCardFilled.js +1 -29
  378. package/components/SVGIcons/IconCopy.d.ts +1 -1
  379. package/components/SVGIcons/IconCopy.js +1 -29
  380. package/components/SVGIcons/IconCopyFilled.d.ts +1 -1
  381. package/components/SVGIcons/IconCopyFilled.js +1 -29
  382. package/components/SVGIcons/IconCubeTree.d.ts +1 -1
  383. package/components/SVGIcons/IconCubeTree.js +1 -29
  384. package/components/SVGIcons/IconCubeTreeFilled.d.ts +1 -1
  385. package/components/SVGIcons/IconCubeTreeFilled.js +1 -32
  386. package/components/SVGIcons/IconDatabase.d.ts +1 -1
  387. package/components/SVGIcons/IconDatabase.js +1 -32
  388. package/components/SVGIcons/IconDatabaseFilled.d.ts +1 -1
  389. package/components/SVGIcons/IconDatabaseFilled.js +1 -32
  390. package/components/SVGIcons/IconDelete.d.ts +1 -1
  391. package/components/SVGIcons/IconDelete.js +1 -29
  392. package/components/SVGIcons/IconDeleteFilled.d.ts +1 -1
  393. package/components/SVGIcons/IconDeleteFilled.js +1 -29
  394. package/components/SVGIcons/IconDeviceMeetingRoom.d.ts +1 -1
  395. package/components/SVGIcons/IconDeviceMeetingRoom.js +1 -29
  396. package/components/SVGIcons/IconDeviceMeetingRoomFilled.d.ts +1 -1
  397. package/components/SVGIcons/IconDeviceMeetingRoomFilled.js +1 -29
  398. package/components/SVGIcons/IconDismiss.d.ts +1 -1
  399. package/components/SVGIcons/IconDismiss.js +1 -29
  400. package/components/SVGIcons/IconDismissCircle.d.ts +1 -1
  401. package/components/SVGIcons/IconDismissCircle.js +1 -32
  402. package/components/SVGIcons/IconDismissCircleFilled.d.ts +1 -1
  403. package/components/SVGIcons/IconDismissCircleFilled.js +1 -32
  404. package/components/SVGIcons/IconDismissFilled.d.ts +1 -1
  405. package/components/SVGIcons/IconDismissFilled.js +1 -29
  406. package/components/SVGIcons/IconDocument.d.ts +1 -1
  407. package/components/SVGIcons/IconDocument.js +1 -29
  408. package/components/SVGIcons/IconDocumentBulletList.d.ts +1 -1
  409. package/components/SVGIcons/IconDocumentBulletList.js +1 -32
  410. package/components/SVGIcons/IconDocumentBulletListFilled.d.ts +1 -1
  411. package/components/SVGIcons/IconDocumentBulletListFilled.js +1 -32
  412. package/components/SVGIcons/IconDocumentEdit.d.ts +1 -1
  413. package/components/SVGIcons/IconDocumentEdit.js +1 -29
  414. package/components/SVGIcons/IconDocumentEditFilled.d.ts +1 -1
  415. package/components/SVGIcons/IconDocumentEditFilled.js +1 -29
  416. package/components/SVGIcons/IconDocumentFilled.d.ts +1 -1
  417. package/components/SVGIcons/IconDocumentFilled.js +1 -29
  418. package/components/SVGIcons/IconDocumentPerson.d.ts +1 -1
  419. package/components/SVGIcons/IconDocumentPerson.js +1 -29
  420. package/components/SVGIcons/IconEdit.d.ts +1 -1
  421. package/components/SVGIcons/IconEdit.js +1 -29
  422. package/components/SVGIcons/IconEditFilled.d.ts +1 -1
  423. package/components/SVGIcons/IconEditFilled.js +1 -29
  424. package/components/SVGIcons/IconErrorCircle.d.ts +1 -1
  425. package/components/SVGIcons/IconErrorCircle.js +1 -29
  426. package/components/SVGIcons/IconErrorCircleFilled.d.ts +1 -1
  427. package/components/SVGIcons/IconErrorCircleFilled.js +1 -29
  428. package/components/SVGIcons/IconEur.d.ts +1 -1
  429. package/components/SVGIcons/IconEur.js +1 -29
  430. package/components/SVGIcons/IconEurFilled.d.ts +1 -1
  431. package/components/SVGIcons/IconEurFilled.js +1 -29
  432. package/components/SVGIcons/IconExpandUpLeft.d.ts +1 -1
  433. package/components/SVGIcons/IconExpandUpLeft.js +1 -32
  434. package/components/SVGIcons/IconExpandUpLeftFilled.d.ts +1 -1
  435. package/components/SVGIcons/IconExpandUpLeftFilled.js +1 -32
  436. package/components/SVGIcons/IconExpandUpRight.d.ts +1 -1
  437. package/components/SVGIcons/IconExpandUpRight.js +1 -32
  438. package/components/SVGIcons/IconExpandUpRightFilled.d.ts +1 -1
  439. package/components/SVGIcons/IconExpandUpRightFilled.js +1 -32
  440. package/components/SVGIcons/IconEyeOff.d.ts +1 -1
  441. package/components/SVGIcons/IconEyeOff.js +1 -32
  442. package/components/SVGIcons/IconEyeOffFilled.d.ts +1 -1
  443. package/components/SVGIcons/IconEyeOffFilled.js +1 -32
  444. package/components/SVGIcons/IconEyeOn.d.ts +1 -1
  445. package/components/SVGIcons/IconEyeOn.js +1 -32
  446. package/components/SVGIcons/IconEyeOnFilled.d.ts +1 -1
  447. package/components/SVGIcons/IconEyeOnFilled.js +1 -32
  448. package/components/SVGIcons/IconFacebook.d.ts +1 -1
  449. package/components/SVGIcons/IconFacebook.js +3 -39
  450. package/components/SVGIcons/IconFastAcceleration.d.ts +1 -1
  451. package/components/SVGIcons/IconFastAcceleration.js +1 -29
  452. package/components/SVGIcons/IconFastAccelerationFilled.d.ts +1 -1
  453. package/components/SVGIcons/IconFastAccelerationFilled.js +1 -29
  454. package/components/SVGIcons/IconFeed.d.ts +1 -1
  455. package/components/SVGIcons/IconFeed.js +1 -29
  456. package/components/SVGIcons/IconFeedFilled.d.ts +1 -1
  457. package/components/SVGIcons/IconFeedFilled.js +1 -29
  458. package/components/SVGIcons/IconFilter.d.ts +1 -1
  459. package/components/SVGIcons/IconFilter.js +1 -29
  460. package/components/SVGIcons/IconFilterFilled.d.ts +1 -1
  461. package/components/SVGIcons/IconFilterFilled.js +1 -29
  462. package/components/SVGIcons/IconFlag.d.ts +1 -1
  463. package/components/SVGIcons/IconFlag.js +1 -32
  464. package/components/SVGIcons/IconFlagFilled.d.ts +1 -1
  465. package/components/SVGIcons/IconFlagFilled.js +1 -32
  466. package/components/SVGIcons/IconFolderLink.d.ts +1 -1
  467. package/components/SVGIcons/IconFolderLink.js +1 -29
  468. package/components/SVGIcons/IconFolderLinkFilled.d.ts +1 -1
  469. package/components/SVGIcons/IconFolderLinkFilled.js +1 -29
  470. package/components/SVGIcons/IconFood.d.ts +1 -1
  471. package/components/SVGIcons/IconFood.js +1 -29
  472. package/components/SVGIcons/IconFoodFilled.d.ts +1 -1
  473. package/components/SVGIcons/IconFoodFilled.js +1 -29
  474. package/components/SVGIcons/IconGb.d.ts +1 -1
  475. package/components/SVGIcons/IconGb.js +11 -72
  476. package/components/SVGIcons/IconGlobe.d.ts +1 -1
  477. package/components/SVGIcons/IconGlobe.js +1 -29
  478. package/components/SVGIcons/IconGlobeFilled.d.ts +1 -1
  479. package/components/SVGIcons/IconGlobeFilled.js +1 -29
  480. package/components/SVGIcons/IconGoogle.d.ts +1 -1
  481. package/components/SVGIcons/IconGoogle.js +3 -41
  482. package/components/SVGIcons/IconHandOpenHeart.d.ts +1 -1
  483. package/components/SVGIcons/IconHandOpenHeart.js +1 -32
  484. package/components/SVGIcons/IconHandOpenHeartFilled.d.ts +1 -1
  485. package/components/SVGIcons/IconHandOpenHeartFilled.js +1 -32
  486. package/components/SVGIcons/IconHeart.d.ts +1 -1
  487. package/components/SVGIcons/IconHeart.js +1 -32
  488. package/components/SVGIcons/IconHeartFilled.d.ts +1 -1
  489. package/components/SVGIcons/IconHeartFilled.js +1 -32
  490. package/components/SVGIcons/IconHistory.d.ts +1 -1
  491. package/components/SVGIcons/IconHistory.js +1 -32
  492. package/components/SVGIcons/IconHistoryFilled.d.ts +1 -1
  493. package/components/SVGIcons/IconHistoryFilled.js +1 -32
  494. package/components/SVGIcons/IconHome.d.ts +1 -1
  495. package/components/SVGIcons/IconHome.js +1 -32
  496. package/components/SVGIcons/IconHomeFilled.d.ts +1 -1
  497. package/components/SVGIcons/IconHomeFilled.js +1 -32
  498. package/components/SVGIcons/IconImage.d.ts +1 -1
  499. package/components/SVGIcons/IconImage.js +1 -32
  500. package/components/SVGIcons/IconImageFilled.d.ts +1 -1
  501. package/components/SVGIcons/IconImageFilled.js +1 -32
  502. package/components/SVGIcons/IconInfo.d.ts +1 -1
  503. package/components/SVGIcons/IconInfo.js +1 -29
  504. package/components/SVGIcons/IconInfoFilled.d.ts +1 -1
  505. package/components/SVGIcons/IconInfoFilled.js +1 -29
  506. package/components/SVGIcons/IconInstagram.d.ts +1 -1
  507. package/components/SVGIcons/IconInstagram.js +4 -40
  508. package/components/SVGIcons/IconKeyReset.d.ts +1 -1
  509. package/components/SVGIcons/IconKeyReset.js +1 -32
  510. package/components/SVGIcons/IconKeyResetFilled.d.ts +1 -1
  511. package/components/SVGIcons/IconKeyResetFilled.js +1 -32
  512. package/components/SVGIcons/IconLibrary.d.ts +1 -1
  513. package/components/SVGIcons/IconLibrary.js +1 -29
  514. package/components/SVGIcons/IconLibraryFilled.d.ts +1 -1
  515. package/components/SVGIcons/IconLibraryFilled.js +1 -29
  516. package/components/SVGIcons/IconLink.d.ts +1 -1
  517. package/components/SVGIcons/IconLink.js +1 -32
  518. package/components/SVGIcons/IconLinkFilled.d.ts +1 -1
  519. package/components/SVGIcons/IconLinkFilled.js +1 -32
  520. package/components/SVGIcons/IconLinkedin.d.ts +1 -1
  521. package/components/SVGIcons/IconLinkedin.js +1 -32
  522. package/components/SVGIcons/IconList.d.ts +1 -1
  523. package/components/SVGIcons/IconList.js +1 -29
  524. package/components/SVGIcons/IconListFilled.d.ts +1 -1
  525. package/components/SVGIcons/IconListFilled.js +1 -32
  526. package/components/SVGIcons/IconLocation.d.ts +1 -1
  527. package/components/SVGIcons/IconLocation.js +1 -32
  528. package/components/SVGIcons/IconLocationFilled.d.ts +1 -1
  529. package/components/SVGIcons/IconLocationFilled.js +1 -32
  530. package/components/SVGIcons/IconLockClosed.d.ts +1 -1
  531. package/components/SVGIcons/IconLockClosed.js +1 -32
  532. package/components/SVGIcons/IconLockClosedFilled.d.ts +1 -1
  533. package/components/SVGIcons/IconLockClosedFilled.js +1 -32
  534. package/components/SVGIcons/IconLockOpen.d.ts +1 -1
  535. package/components/SVGIcons/IconLockOpen.js +1 -32
  536. package/components/SVGIcons/IconLockOpenFilled.d.ts +1 -1
  537. package/components/SVGIcons/IconLockOpenFilled.js +1 -32
  538. package/components/SVGIcons/IconMail.d.ts +1 -1
  539. package/components/SVGIcons/IconMail.js +1 -32
  540. package/components/SVGIcons/IconMailAdd.d.ts +1 -1
  541. package/components/SVGIcons/IconMailAdd.js +1 -32
  542. package/components/SVGIcons/IconMailAddFilled.d.ts +1 -1
  543. package/components/SVGIcons/IconMailAddFilled.js +1 -32
  544. package/components/SVGIcons/IconMailArrowForward.d.ts +1 -1
  545. package/components/SVGIcons/IconMailArrowForward.js +1 -32
  546. package/components/SVGIcons/IconMailArrowForwardFilled.d.ts +1 -1
  547. package/components/SVGIcons/IconMailArrowForwardFilled.js +1 -32
  548. package/components/SVGIcons/IconMailFilled.d.ts +1 -1
  549. package/components/SVGIcons/IconMailFilled.js +1 -32
  550. package/components/SVGIcons/IconMailLink.d.ts +1 -1
  551. package/components/SVGIcons/IconMailLink.js +1 -32
  552. package/components/SVGIcons/IconMailLinkFilled.d.ts +1 -1
  553. package/components/SVGIcons/IconMailLinkFilled.js +1 -32
  554. package/components/SVGIcons/IconMedium.d.ts +1 -1
  555. package/components/SVGIcons/IconMedium.js +1 -32
  556. package/components/SVGIcons/IconMore.d.ts +1 -1
  557. package/components/SVGIcons/IconMore.js +1 -32
  558. package/components/SVGIcons/IconMoreFilled.d.ts +1 -1
  559. package/components/SVGIcons/IconMoreFilled.js +1 -32
  560. package/components/SVGIcons/IconMoreVertical.d.ts +1 -1
  561. package/components/SVGIcons/IconMoreVertical.js +1 -32
  562. package/components/SVGIcons/IconMoreVerticalFilled.d.ts +1 -1
  563. package/components/SVGIcons/IconMoreVerticalFilled.js +1 -32
  564. package/components/SVGIcons/IconNavigation.d.ts +1 -1
  565. package/components/SVGIcons/IconNavigation.js +1 -32
  566. package/components/SVGIcons/IconNavigationFilled.d.ts +1 -1
  567. package/components/SVGIcons/IconNavigationFilled.js +1 -32
  568. package/components/SVGIcons/IconNotebook.d.ts +1 -1
  569. package/components/SVGIcons/IconNotebook.js +1 -32
  570. package/components/SVGIcons/IconNotebookAdd.d.ts +1 -1
  571. package/components/SVGIcons/IconNotebookAdd.js +7 -48
  572. package/components/SVGIcons/IconNotebookAddFilled.d.ts +1 -1
  573. package/components/SVGIcons/IconNotebookAddFilled.js +6 -45
  574. package/components/SVGIcons/IconNotebookFilled.d.ts +1 -1
  575. package/components/SVGIcons/IconNotebookFilled.js +1 -32
  576. package/components/SVGIcons/IconOnlyEmployee.d.ts +1 -1
  577. package/components/SVGIcons/IconOnlyEmployee.js +1 -29
  578. package/components/SVGIcons/IconOpen.d.ts +1 -1
  579. package/components/SVGIcons/IconOpen.js +1 -32
  580. package/components/SVGIcons/IconOpenFilled.d.ts +1 -1
  581. package/components/SVGIcons/IconOpenFilled.js +1 -32
  582. package/components/SVGIcons/IconPatient.d.ts +1 -1
  583. package/components/SVGIcons/IconPatient.js +1 -29
  584. package/components/SVGIcons/IconPatientFilled.d.ts +1 -1
  585. package/components/SVGIcons/IconPatientFilled.js +1 -29
  586. package/components/SVGIcons/IconPeople.d.ts +1 -1
  587. package/components/SVGIcons/IconPeople.js +1 -29
  588. package/components/SVGIcons/IconPeopleAdd.d.ts +1 -1
  589. package/components/SVGIcons/IconPeopleAdd.js +1 -32
  590. package/components/SVGIcons/IconPeopleAddFilled.d.ts +1 -1
  591. package/components/SVGIcons/IconPeopleAddFilled.js +1 -32
  592. package/components/SVGIcons/IconPeopleFilled.d.ts +1 -1
  593. package/components/SVGIcons/IconPeopleFilled.js +1 -32
  594. package/components/SVGIcons/IconPeopleList.d.ts +1 -1
  595. package/components/SVGIcons/IconPeopleList.js +1 -29
  596. package/components/SVGIcons/IconPeopleListFilled.d.ts +1 -1
  597. package/components/SVGIcons/IconPeopleListFilled.js +1 -29
  598. package/components/SVGIcons/IconPeopleTeam.d.ts +1 -1
  599. package/components/SVGIcons/IconPeopleTeam.js +1 -29
  600. package/components/SVGIcons/IconPeopleTeamFilled.d.ts +1 -1
  601. package/components/SVGIcons/IconPeopleTeamFilled.js +1 -29
  602. package/components/SVGIcons/IconPercent.d.ts +1 -1
  603. package/components/SVGIcons/IconPercent.js +1 -34
  604. package/components/SVGIcons/IconPerson.d.ts +1 -1
  605. package/components/SVGIcons/IconPerson.js +1 -32
  606. package/components/SVGIcons/IconPersonAccount.d.ts +1 -1
  607. package/components/SVGIcons/IconPersonAccount.js +1 -29
  608. package/components/SVGIcons/IconPersonAccountFilled.d.ts +1 -1
  609. package/components/SVGIcons/IconPersonAccountFilled.js +1 -29
  610. package/components/SVGIcons/IconPersonAdd.d.ts +1 -1
  611. package/components/SVGIcons/IconPersonAdd.js +1 -32
  612. package/components/SVGIcons/IconPersonAddFilled.d.ts +1 -1
  613. package/components/SVGIcons/IconPersonAddFilled.js +1 -32
  614. package/components/SVGIcons/IconPersonArrowLeft.d.ts +1 -1
  615. package/components/SVGIcons/IconPersonArrowLeft.js +1 -29
  616. package/components/SVGIcons/IconPersonArrowLeftFilled.d.ts +1 -1
  617. package/components/SVGIcons/IconPersonArrowLeftFilled.js +1 -29
  618. package/components/SVGIcons/IconPersonArrowRight.d.ts +1 -1
  619. package/components/SVGIcons/IconPersonArrowRight.js +1 -29
  620. package/components/SVGIcons/IconPersonArrowRightFilled.d.ts +1 -1
  621. package/components/SVGIcons/IconPersonArrowRightFilled.js +1 -29
  622. package/components/SVGIcons/IconPersonBoard.d.ts +1 -1
  623. package/components/SVGIcons/IconPersonBoard.js +1 -29
  624. package/components/SVGIcons/IconPersonFilled.d.ts +1 -1
  625. package/components/SVGIcons/IconPersonFilled.js +1 -32
  626. package/components/SVGIcons/IconPersonMinus.d.ts +1 -1
  627. package/components/SVGIcons/IconPersonMinus.js +1 -29
  628. package/components/SVGIcons/IconPersonStar.d.ts +1 -1
  629. package/components/SVGIcons/IconPersonStar.js +1 -32
  630. package/components/SVGIcons/IconPersonStarFilled.d.ts +1 -1
  631. package/components/SVGIcons/IconPersonStarFilled.js +1 -32
  632. package/components/SVGIcons/IconPersonSubtract.d.ts +1 -1
  633. package/components/SVGIcons/IconPersonSubtract.js +1 -32
  634. package/components/SVGIcons/IconPersonSubtractFilled.d.ts +1 -1
  635. package/components/SVGIcons/IconPersonSubtractFilled.js +1 -32
  636. package/components/SVGIcons/IconPhone.d.ts +1 -1
  637. package/components/SVGIcons/IconPhone.js +1 -32
  638. package/components/SVGIcons/IconPhoneFilled.d.ts +1 -1
  639. package/components/SVGIcons/IconPhoneFilled.js +1 -32
  640. package/components/SVGIcons/IconPlugConnected.d.ts +1 -1
  641. package/components/SVGIcons/IconPlugConnected.js +1 -29
  642. package/components/SVGIcons/IconPos.d.ts +1 -1
  643. package/components/SVGIcons/IconPos.js +1 -34
  644. package/components/SVGIcons/IconPosFilled.d.ts +1 -1
  645. package/components/SVGIcons/IconPosFilled.js +1 -34
  646. package/components/SVGIcons/IconProhibited.d.ts +1 -1
  647. package/components/SVGIcons/IconProhibited.js +1 -32
  648. package/components/SVGIcons/IconProhibitedFilled.d.ts +1 -1
  649. package/components/SVGIcons/IconProhibitedFilled.js +1 -32
  650. package/components/SVGIcons/IconProjectProduct.d.ts +1 -1
  651. package/components/SVGIcons/IconProjectProduct.js +1 -29
  652. package/components/SVGIcons/IconQuestion.d.ts +1 -1
  653. package/components/SVGIcons/IconQuestion.js +1 -32
  654. package/components/SVGIcons/IconQuestionFilled.d.ts +1 -1
  655. package/components/SVGIcons/IconQuestionFilled.js +1 -32
  656. package/components/SVGIcons/IconRedo.d.ts +1 -1
  657. package/components/SVGIcons/IconRedo.js +1 -32
  658. package/components/SVGIcons/IconRedoFilled.d.ts +1 -1
  659. package/components/SVGIcons/IconRedoFilled.js +1 -32
  660. package/components/SVGIcons/IconRu.d.ts +1 -1
  661. package/components/SVGIcons/IconRu.js +6 -61
  662. package/components/SVGIcons/IconRub.d.ts +1 -1
  663. package/components/SVGIcons/IconRub.js +1 -29
  664. package/components/SVGIcons/IconRubFilled.d.ts +1 -1
  665. package/components/SVGIcons/IconRubFilled.js +1 -29
  666. package/components/SVGIcons/IconSave.d.ts +1 -1
  667. package/components/SVGIcons/IconSave.js +1 -32
  668. package/components/SVGIcons/IconSaveFilled.d.ts +1 -1
  669. package/components/SVGIcons/IconSaveFilled.js +1 -32
  670. package/components/SVGIcons/IconSavings.d.ts +1 -1
  671. package/components/SVGIcons/IconSavings.js +1 -32
  672. package/components/SVGIcons/IconSavingsFilled.d.ts +1 -1
  673. package/components/SVGIcons/IconSavingsFilled.js +1 -32
  674. package/components/SVGIcons/IconSearch.d.ts +1 -1
  675. package/components/SVGIcons/IconSearch.js +1 -32
  676. package/components/SVGIcons/IconSearchFilled.d.ts +1 -1
  677. package/components/SVGIcons/IconSearchFilled.js +1 -32
  678. package/components/SVGIcons/IconSelectAllOff.d.ts +1 -1
  679. package/components/SVGIcons/IconSelectAllOff.js +1 -32
  680. package/components/SVGIcons/IconSelectAllOffFilled.d.ts +1 -1
  681. package/components/SVGIcons/IconSelectAllOffFilled.js +1 -32
  682. package/components/SVGIcons/IconSelectAllOn.d.ts +1 -1
  683. package/components/SVGIcons/IconSelectAllOn.js +1 -32
  684. package/components/SVGIcons/IconSelectAllOnFilled.d.ts +1 -1
  685. package/components/SVGIcons/IconSelectAllOnFilled.js +1 -32
  686. package/components/SVGIcons/IconSend.d.ts +1 -1
  687. package/components/SVGIcons/IconSend.js +1 -32
  688. package/components/SVGIcons/IconSendFilled.d.ts +1 -1
  689. package/components/SVGIcons/IconSendFilled.js +1 -32
  690. package/components/SVGIcons/IconSettings.d.ts +1 -1
  691. package/components/SVGIcons/IconSettings.js +1 -29
  692. package/components/SVGIcons/IconSettingsFilled.d.ts +1 -1
  693. package/components/SVGIcons/IconSettingsFilled.js +1 -32
  694. package/components/SVGIcons/IconShare.d.ts +1 -1
  695. package/components/SVGIcons/IconShare.js +1 -32
  696. package/components/SVGIcons/IconShareAndroid.d.ts +1 -1
  697. package/components/SVGIcons/IconShareAndroid.js +1 -32
  698. package/components/SVGIcons/IconShareAndroidFilled.d.ts +1 -1
  699. package/components/SVGIcons/IconShareAndroidFilled.js +1 -32
  700. package/components/SVGIcons/IconShareFilled.d.ts +1 -1
  701. package/components/SVGIcons/IconShareFilled.js +1 -32
  702. package/components/SVGIcons/IconSignOut.d.ts +1 -1
  703. package/components/SVGIcons/IconSignOut.js +1 -32
  704. package/components/SVGIcons/IconSignOutFilled.d.ts +1 -1
  705. package/components/SVGIcons/IconSignOutFilled.js +1 -32
  706. package/components/SVGIcons/IconSpinner.d.ts +1 -1
  707. package/components/SVGIcons/IconSpinner.js +1 -32
  708. package/components/SVGIcons/IconSpinnerFilled.d.ts +1 -1
  709. package/components/SVGIcons/IconSpinnerFilled.js +1 -32
  710. package/components/SVGIcons/IconStatus.d.ts +1 -1
  711. package/components/SVGIcons/IconStatus.js +1 -32
  712. package/components/SVGIcons/IconStatusFilled.d.ts +1 -1
  713. package/components/SVGIcons/IconStatusFilled.js +1 -32
  714. package/components/SVGIcons/IconSubtract.d.ts +1 -1
  715. package/components/SVGIcons/IconSubtract.js +1 -32
  716. package/components/SVGIcons/IconSubtractCircle.d.ts +1 -1
  717. package/components/SVGIcons/IconSubtractCircle.js +1 -32
  718. package/components/SVGIcons/IconSubtractCircleFilled.d.ts +1 -1
  719. package/components/SVGIcons/IconSubtractCircleFilled.js +1 -32
  720. package/components/SVGIcons/IconSubtractFilled.d.ts +1 -1
  721. package/components/SVGIcons/IconSubtractFilled.js +1 -32
  722. package/components/SVGIcons/IconTableCellEdit.d.ts +1 -1
  723. package/components/SVGIcons/IconTableCellEdit.js +3 -36
  724. package/components/SVGIcons/IconTableCellEditFilled.d.ts +1 -1
  725. package/components/SVGIcons/IconTableCellEditFilled.js +5 -42
  726. package/components/SVGIcons/IconTelegram.d.ts +1 -1
  727. package/components/SVGIcons/IconTelegram.js +3 -41
  728. package/components/SVGIcons/IconTimer.d.ts +1 -1
  729. package/components/SVGIcons/IconTimer.js +1 -32
  730. package/components/SVGIcons/IconTimerFilled.d.ts +1 -1
  731. package/components/SVGIcons/IconTimerFilled.js +1 -32
  732. package/components/SVGIcons/IconTrophy.d.ts +1 -1
  733. package/components/SVGIcons/IconTrophy.js +1 -29
  734. package/components/SVGIcons/IconTrophyFilled.d.ts +1 -1
  735. package/components/SVGIcons/IconTrophyFilled.js +1 -29
  736. package/components/SVGIcons/IconTwitter.d.ts +1 -1
  737. package/components/SVGIcons/IconTwitter.js +1 -32
  738. package/components/SVGIcons/IconUndo.d.ts +1 -1
  739. package/components/SVGIcons/IconUndo.js +1 -32
  740. package/components/SVGIcons/IconUndoFilled.d.ts +1 -1
  741. package/components/SVGIcons/IconUndoFilled.js +1 -32
  742. package/components/SVGIcons/IconUnitsEmployee.d.ts +1 -1
  743. package/components/SVGIcons/IconUnitsEmployee.js +1 -29
  744. package/components/SVGIcons/IconUpload.d.ts +1 -1
  745. package/components/SVGIcons/IconUpload.js +1 -29
  746. package/components/SVGIcons/IconUs.d.ts +1 -1
  747. package/components/SVGIcons/IconUs.js +11 -72
  748. package/components/SVGIcons/IconUsd.d.ts +1 -1
  749. package/components/SVGIcons/IconUsd.js +1 -29
  750. package/components/SVGIcons/IconUsdFilled.d.ts +1 -1
  751. package/components/SVGIcons/IconUsdFilled.js +1 -29
  752. package/components/SVGIcons/IconUserMinus.d.ts +1 -1
  753. package/components/SVGIcons/IconUserMinus.js +1 -32
  754. package/components/SVGIcons/IconVideo.d.ts +1 -1
  755. package/components/SVGIcons/IconVideo.js +1 -29
  756. package/components/SVGIcons/IconVideoFilled.d.ts +1 -1
  757. package/components/SVGIcons/IconVideoFilled.js +1 -29
  758. package/components/SVGIcons/IconWallet.d.ts +1 -1
  759. package/components/SVGIcons/IconWallet.js +1 -32
  760. package/components/SVGIcons/IconWalletFilled.d.ts +1 -1
  761. package/components/SVGIcons/IconWalletFilled.js +1 -32
  762. package/components/SVGIcons/IconWarning.d.ts +1 -1
  763. package/components/SVGIcons/IconWarning.js +1 -29
  764. package/components/SVGIcons/IconWarningFilled.d.ts +1 -1
  765. package/components/SVGIcons/IconWarningFilled.js +1 -29
  766. package/components/SVGIcons/IconYoutube.d.ts +1 -1
  767. package/components/SVGIcons/IconYoutube.js +1 -32
  768. package/components/SVGIcons/icon-names.js +1 -3
  769. package/components/SVGIcons/index.d.ts +319 -319
  770. package/components/SVGIcons/index.js +1 -322
  771. package/components/Select/ButtonSelect/ButtonSelect.js +3 -200
  772. package/components/Select/FilterSelect/FilterDropdown.js +3 -98
  773. package/components/Select/FilterSelect/FilterGroupDropdown.js +4 -85
  774. package/components/Select/FilterSelect/FilterSelect.js +4 -204
  775. package/components/Select/MultiSelect/DesktopWrapper.js +1 -56
  776. package/components/Select/MultiSelect/MobileWrapper.js +2 -80
  777. package/components/Select/MultiSelect/MultiBase/MultiBase.js +5 -216
  778. package/components/Select/MultiSelect/MultiSelect.js +3 -251
  779. package/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.js +7 -270
  780. package/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.js +7 -255
  781. package/components/Select/MultiSelect/OptionsWrapper.js +1 -179
  782. package/components/Select/NestedSelect/NestedSelect.js +4 -202
  783. package/components/Select/ProfileDropdown/index.js +10 -83
  784. package/components/Select/Select/Select.js +2 -259
  785. package/components/Select/Select/SelectDesktop/index.js +2 -225
  786. package/components/Select/Select/SelectMobile/MobileTopContent.js +2 -93
  787. package/components/Select/Select/SelectMobile/index.js +5 -198
  788. package/components/Select/Select/helpers.js +1 -10
  789. package/components/Select/SharedComponents/Actions.js +3 -118
  790. package/components/Select/SharedComponents/ButtonSelectWrapper/Button/Button.js +3 -44
  791. package/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.js +3 -134
  792. package/components/Select/SharedComponents/ContentTop.js +3 -181
  793. package/components/Select/SharedComponents/Footer.js +6 -101
  794. package/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.js +3 -168
  795. package/components/Select/SharedComponents/Loading.js +2 -17
  796. package/components/Select/SharedComponents/index.js +1 -94
  797. package/components/Select/constants.js +1 -9
  798. package/components/Select/index.js +1 -116
  799. package/components/Select/localization.js +1 -31
  800. package/components/SideSheet/Footer/Footer.js +5 -103
  801. package/components/SideSheet/SideSheet.js +8 -213
  802. package/components/SideSheet/index.js +1 -58
  803. package/components/Snackbar/Snackbar.js +5 -125
  804. package/components/Snackbar/consts.js +1 -15
  805. package/components/Snackbar/index.js +1 -56
  806. package/components/Status/Status.js +4 -53
  807. package/components/Status/index.js +1 -8
  808. package/components/Stepper/Stepper.js +2 -45
  809. package/components/Stepper/index.js +1 -3
  810. package/components/Switcher/Switcher.js +5 -124
  811. package/components/Switcher/index.js +1 -56
  812. package/components/Tab/Tab.js +2 -39
  813. package/components/Tab/TabItem.js +3 -54
  814. package/components/Tab/index.js +1 -11
  815. package/components/Table/Header.js +4 -134
  816. package/components/Table/IndeterminateCheckbox.js +1 -84
  817. package/components/Table/Row.js +3 -109
  818. package/components/Table/Table.js +6 -206
  819. package/components/Table/index.js +1 -65
  820. package/components/Table/localization.js +1 -13
  821. package/components/Table/utils.js +3 -106
  822. package/components/TableV2/AdvancedPagination.js +12 -273
  823. package/components/TableV2/ColumnHeader.js +6 -64
  824. package/components/TableV2/ColumnSettings.js +8 -166
  825. package/components/TableV2/IndeterminateCheckbox.js +2 -87
  826. package/components/TableV2/Table.js +8 -322
  827. package/components/TableV2/constants/index.js +1 -23
  828. package/components/TableV2/hooks/useTableColumnSettings.js +1 -20
  829. package/components/TableV2/hooks/useTableControl.js +1 -308
  830. package/components/TableV2/index.js +1 -134
  831. package/components/TableV2/loadTableSettings.js +1 -18
  832. package/components/Text/Text.js +2 -36
  833. package/components/Text/index.js +1 -5
  834. package/components/Textarea/Textarea.js +6 -146
  835. package/components/Textarea/index.js +1 -58
  836. package/components/Tooltip/Tooltip.js +1 -103
  837. package/components/Tooltip/index.js +1 -18
  838. package/components/Tooltip/types.js +1 -13
  839. package/components/UnderConstruction/UnderConstruction.js +6 -38
  840. package/components/UnderConstruction/index.js +1 -8
  841. package/components/UnderConstruction/localization.js +1 -16
  842. package/consts/index.js +1 -67
  843. package/context/FormContextProvider.js +1 -12
  844. package/context/index.js +1 -5
  845. package/context/types.js +1 -12
  846. package/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.js +2 -15
  847. package/helperComponents/AnimatePresenceWrapper/index.js +1 -3
  848. package/helperComponents/CodeBlock/CodeBlock.js +2 -25
  849. package/helperComponents/CodeBlock/index.js +1 -4
  850. package/helperComponents/ErrorMessage/ErrorMessage.js +2 -27
  851. package/helperComponents/ErrorMessage/index.js +1 -8
  852. package/helperComponents/GoToWebPage/GoToWebPage.js +1 -69
  853. package/helperComponents/Label/Label.js +1 -29
  854. package/helperComponents/Label/index.js +1 -6
  855. package/helperComponents/Loader/Loader.js +2 -15
  856. package/helperComponents/Loader/index.js +1 -2
  857. package/helperComponents/OptionItem/OptionItem.js +5 -152
  858. package/helperComponents/OptionItem/index.js +1 -66
  859. package/helpers/check-authorization.js +1 -116
  860. package/helpers/download-file.js +1 -10
  861. package/helpers/format-date.js +1 -25
  862. package/helpers/get-module-prefix.js +1 -6
  863. package/helpers/index.js +1 -61
  864. package/helpers/isDeepEqual.js +1 -18
  865. package/helpers/locale.js +1 -17
  866. package/helpers/storage.js +1 -20
  867. package/hooks/index.js +1 -21
  868. package/hooks/useChangePositionsOnScroll.js +1 -34
  869. package/hooks/useDispatchEventOnScroll.js +1 -14
  870. package/hooks/useFieldArray.js +1 -1
  871. package/hooks/useFormContext.js +1 -10
  872. package/hooks/useFormProps.js +1 -10
  873. package/hooks/useGetElemPositions.js +1 -19
  874. package/hooks/useGetElemSizes.js +1 -16
  875. package/hooks/useGetHasBottomSpace.js +1 -26
  876. package/hooks/useGetIsMobile.js +1 -49
  877. package/hooks/useGetTooltipPosition.js +1 -85
  878. package/hooks/useGetTooltipStyles.js +1 -89
  879. package/hooks/useHideBodyScroll.js +1 -35
  880. package/hooks/useHideOnScroll.js +1 -27
  881. package/hooks/useOnOutsideClick.js +1 -52
  882. package/hooks/useScreenSize.js +1 -38
  883. package/index.js +1 -518
  884. package/package.json +6 -4
  885. package/type/file-upload.js +1 -8
  886. package/type/index.js +1 -4
  887. package/type/locale.js +1 -14
  888. package/type/notification.js +1 -9
  889. package/type/status-code.js +1 -9
  890. package/types.d.js +0 -1
  891. package/utils/helpers.js +1 -89
  892. package/Alert-C_U8td2x.js +0 -761
  893. package/assets/images/under-construction.svg +0 -9
  894. package/assets/styles/styles.scss +0 -1
  895. package/components/Alert/types.js +0 -1
  896. package/components/Avatar/types.js +0 -1
  897. package/components/Badge/types.js +0 -1
  898. package/components/Breadcrumb/types.js +0 -1
  899. package/components/Button/types.js +0 -1
  900. package/components/ButtonGroup/types.js +0 -1
  901. package/components/Card/types.js +0 -1
  902. package/components/CardGroup/types.js +0 -1
  903. package/components/Checkbox/types.js +0 -1
  904. package/components/Collapse/types.js +0 -1
  905. package/components/Container/types.js +0 -1
  906. package/components/Copy/types.js +0 -1
  907. package/components/Counter/types.js +0 -1
  908. package/components/Divider/types.js +0 -1
  909. package/components/Empty/types.js +0 -1
  910. package/components/FormContainer/types.js +0 -1
  911. package/components/FormField/types.js +0 -1
  912. package/components/Heading/types.js +0 -1
  913. package/components/Image/types.js +0 -1
  914. package/components/Input/types.js +0 -1
  915. package/components/Link/types.js +0 -1
  916. package/components/Menu/types.js +0 -1
  917. package/components/Modal/types.js +0 -1
  918. package/components/More/types.js +0 -1
  919. package/components/Pagination/types.js +0 -1
  920. package/components/Popover/types.js +0 -1
  921. package/components/Progress/types.js +0 -1
  922. package/components/Radio/types.js +0 -1
  923. package/components/SVGIcons/types.js +0 -1
  924. package/components/Select/types.js +0 -1
  925. package/components/SideSheet/types.js +0 -1
  926. package/components/Snackbar/types.js +0 -1
  927. package/components/Status/types.js +0 -1
  928. package/components/Stepper/types.js +0 -1
  929. package/components/Switcher/types.js +0 -1
  930. package/components/Tab/types.js +0 -1
  931. package/components/Table/types.js +0 -1
  932. package/components/TableV2/types.js +0 -1
  933. package/components/Text/types.js +0 -1
  934. package/components/Textarea/types.js +0 -1
  935. package/components/UnderConstruction/types.js +0 -1
  936. package/helperComponents/ErrorMessage/types.js +0 -1
  937. package/helperComponents/Label/types.js +0 -1
  938. package/helperComponents/Loader/types.js +0 -1
  939. package/helperComponents/OptionItem/types.js +0 -1
  940. package/helperComponents/index.d.ts +0 -5
  941. package/helperComponents/index.js +0 -67
@@ -1,32 +1 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
3
- import classNames from 'classnames';
4
-
5
- var IconEyeOn = function IconEyeOn(_ref) {
6
- var size = _ref.size,
7
- type = _ref.type,
8
- _ref$className = _ref.className,
9
- className = _ref$className === void 0 ? '' : _ref$className,
10
- onClick = _ref.onClick,
11
- refHandler = _ref.refHandler,
12
- id = _ref.id,
13
- dataId = _ref.dataId;
14
- return /*#__PURE__*/React.createElement("svg", {
15
- xmlns: "http://www.w3.org/2000/svg",
16
- className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
- viewBox: "0 0 24 24",
18
- fill: "none",
19
- onClick: onClick,
20
- ref: refHandler,
21
- id: id,
22
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
- }, /*#__PURE__*/React.createElement("g", {
24
- id: "Size=24, Theme=Regular"
25
- }, /*#__PURE__*/React.createElement("path", {
26
- id: "Shape",
27
- d: "M12 9.00462C14.2091 9.00462 16 10.7955 16 13.0046C16 15.2138 14.2091 17.0046 12 17.0046C9.79086 17.0046 8 15.2138 8 13.0046C8 10.7955 9.79086 9.00462 12 9.00462ZM12 10.5046C10.6193 10.5046 9.5 11.6239 9.5 13.0046C9.5 14.3853 10.6193 15.5046 12 15.5046C13.3807 15.5046 14.5 14.3853 14.5 13.0046C14.5 11.6239 13.3807 10.5046 12 10.5046ZM12 5.5C16.6135 5.5 20.5961 8.65001 21.7011 13.0644C21.8017 13.4662 21.5575 13.8735 21.1557 13.9741C20.7539 14.0746 20.3466 13.8305 20.246 13.4286C19.3071 9.67796 15.9214 7 12 7C8.07693 7 4.69009 9.68026 3.75285 13.4332C3.65249 13.835 3.24535 14.0794 2.84348 13.9791C2.44161 13.8787 2.19719 13.4716 2.29755 13.0697C3.40064 8.65272 7.38448 5.5 12 5.5Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconEyeOn, IconEyeOn as default };
1
+ import{jsx as C}from"react/jsx-runtime";import c from"classnames";const a=({size:e,type:i,className:s="",onClick:a,refHandler:l,id:n,dataId:o})=>/* @__PURE__ */C("svg",{xmlns:"http://www.w3.org/2000/svg",className:c("svg-icon",{[`svg-icon__size-${e}`]:e,[`svg-icon__type-${i}`]:i,[s]:s}),viewBox:"0 0 24 24",fill:"none",onClick:a,ref:l,id:n,"data-id":o?`${o}-svg-icon`:"",children:/* @__PURE__ */C("g",{id:"Size=24, Theme=Regular",children:/* @__PURE__ */C("path",{id:"Shape",d:"M12 9.00462C14.2091 9.00462 16 10.7955 16 13.0046C16 15.2138 14.2091 17.0046 12 17.0046C9.79086 17.0046 8 15.2138 8 13.0046C8 10.7955 9.79086 9.00462 12 9.00462ZM12 10.5046C10.6193 10.5046 9.5 11.6239 9.5 13.0046C9.5 14.3853 10.6193 15.5046 12 15.5046C13.3807 15.5046 14.5 14.3853 14.5 13.0046C14.5 11.6239 13.3807 10.5046 12 10.5046ZM12 5.5C16.6135 5.5 20.5961 8.65001 21.7011 13.0644C21.8017 13.4662 21.5575 13.8735 21.1557 13.9741C20.7539 14.0746 20.3466 13.8305 20.246 13.4286C19.3071 9.67796 15.9214 7 12 7C8.07693 7 4.69009 9.68026 3.75285 13.4332C3.65249 13.835 3.24535 14.0794 2.84348 13.9791C2.44161 13.8787 2.19719 13.4716 2.29755 13.0697C3.40064 8.65272 7.38448 5.5 12 5.5Z",fill:"#222222"})})});export{a as default};
@@ -1,4 +1,4 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { ISVGIconProps } from './types';
3
- export declare const IconEyeOnFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
3
+ declare const IconEyeOnFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
4
  export default IconEyeOnFilled;
@@ -1,32 +1 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
3
- import classNames from 'classnames';
4
-
5
- var IconEyeOnFilled = function IconEyeOnFilled(_ref) {
6
- var size = _ref.size,
7
- type = _ref.type,
8
- _ref$className = _ref.className,
9
- className = _ref$className === void 0 ? '' : _ref$className,
10
- onClick = _ref.onClick,
11
- refHandler = _ref.refHandler,
12
- id = _ref.id,
13
- dataId = _ref.dataId;
14
- return /*#__PURE__*/React.createElement("svg", {
15
- xmlns: "http://www.w3.org/2000/svg",
16
- className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
- viewBox: "0 0 24 24",
18
- fill: "none",
19
- onClick: onClick,
20
- ref: refHandler,
21
- id: id,
22
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
- }, /*#__PURE__*/React.createElement("g", {
24
- id: "Size=24, Theme=Filled"
25
- }, /*#__PURE__*/React.createElement("path", {
26
- id: "Shape",
27
- d: "M12 9.00462C14.2091 9.00462 16 10.7955 16 13.0046C16 15.2138 14.2091 17.0046 12 17.0046C9.79086 17.0046 8 15.2138 8 13.0046C8 10.7955 9.79086 9.00462 12 9.00462ZM12 5.5C16.6135 5.5 20.5961 8.65001 21.7011 13.0644C21.8017 13.4662 21.5575 13.8735 21.1557 13.9741C20.7539 14.0746 20.3466 13.8305 20.246 13.4286C19.3071 9.67796 15.9214 7 12 7C8.07693 7 4.69009 9.68026 3.75285 13.4332C3.65249 13.835 3.24535 14.0794 2.84348 13.9791C2.44161 13.8787 2.19719 13.4716 2.29755 13.0697C3.40064 8.65272 7.38448 5.5 12 5.5Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconEyeOnFilled, IconEyeOnFilled as default };
1
+ import{jsx as i}from"react/jsx-runtime";import r from"classnames";const t=({size:e,type:s,className:a="",onClick:l,refHandler:t,id:n,dataId:o})=>/* @__PURE__ */i("svg",{xmlns:"http://www.w3.org/2000/svg",className:r("svg-icon",{[`svg-icon__size-${e}`]:e,[`svg-icon__type-${s}`]:s,[a]:a}),viewBox:"0 0 24 24",fill:"none",onClick:l,ref:t,id:n,"data-id":o?`${o}-svg-icon`:"",children:/* @__PURE__ */i("g",{id:"Size=24, Theme=Filled",children:/* @__PURE__ */i("path",{id:"Shape",d:"M12 9.00462C14.2091 9.00462 16 10.7955 16 13.0046C16 15.2138 14.2091 17.0046 12 17.0046C9.79086 17.0046 8 15.2138 8 13.0046C8 10.7955 9.79086 9.00462 12 9.00462ZM12 5.5C16.6135 5.5 20.5961 8.65001 21.7011 13.0644C21.8017 13.4662 21.5575 13.8735 21.1557 13.9741C20.7539 14.0746 20.3466 13.8305 20.246 13.4286C19.3071 9.67796 15.9214 7 12 7C8.07693 7 4.69009 9.68026 3.75285 13.4332C3.65249 13.835 3.24535 14.0794 2.84348 13.9791C2.44161 13.8787 2.19719 13.4716 2.29755 13.0697C3.40064 8.65272 7.38448 5.5 12 5.5Z",fill:"#222222"})})});export{t as default};
@@ -1,4 +1,4 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { ISVGIconProps } from './types';
3
- export declare const IconFacebook: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
3
+ declare const IconFacebook: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
4
  export default IconFacebook;
@@ -1,39 +1,3 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
3
- import classNames from 'classnames';
4
-
5
- var IconFacebook = function IconFacebook(_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=Facebook, Style=Gray, Background=None",
25
- clipPath: "url(#clip0_697_1754)"
26
- }, /*#__PURE__*/React.createElement("path", {
27
- id: "Vector",
28
- d: "M24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 17.9895 4.3882 22.954 10.125 23.8542V15.4688H7.07812V12H10.125V9.35625C10.125 6.34875 11.9166 4.6875 14.6576 4.6875C15.9701 4.6875 17.3438 4.92188 17.3438 4.92188V7.875H15.8306C14.34 7.875 13.875 8.80008 13.875 9.75V12H17.2031L16.6711 15.4688H13.875V23.8542C19.6118 22.954 24 17.9895 24 12Z",
29
- fill: "#555555"
30
- })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
31
- id: "clip0_697_1754"
32
- }, /*#__PURE__*/React.createElement("rect", {
33
- width: "24",
34
- height: "24",
35
- fill: "white"
36
- }))));
37
- };
38
-
39
- export { IconFacebook, IconFacebook as default };
1
+ import{jsxs as t,jsx as i}from"react/jsx-runtime";import a from"classnames";const g=({size:e,type:s,className:l="",onClick:c,refHandler:o,id:n,dataId:r})=>/* @__PURE__ */t("svg",{xmlns:"http://www.w3.org/2000/svg",className:a("svg-icon",{[`svg-icon__size-${e}`]:e,[`svg-icon__type-${s}`]:s,[l]:l}),viewBox:"0 0 24 24",fill:"none",onClick:c,ref:o,id:n,"data-id":r?`${r}-svg-icon`:"",children:[
2
+ /* @__PURE__ */i("g",{id:"Company=Facebook, Style=Gray, Background=None",clipPath:"url(#clip0_697_1754)",children:/* @__PURE__ */i("path",{id:"Vector",d:"M24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 17.9895 4.3882 22.954 10.125 23.8542V15.4688H7.07812V12H10.125V9.35625C10.125 6.34875 11.9166 4.6875 14.6576 4.6875C15.9701 4.6875 17.3438 4.92188 17.3438 4.92188V7.875H15.8306C14.34 7.875 13.875 8.80008 13.875 9.75V12H17.2031L16.6711 15.4688H13.875V23.8542C19.6118 22.954 24 17.9895 24 12Z",fill:"#555555"})}),
3
+ /* @__PURE__ */i("defs",{children:/* @__PURE__ */i("clipPath",{id:"clip0_697_1754",children:/* @__PURE__ */i("rect",{width:"24",height:"24",fill:"white"})})})]});export{g as default};
@@ -1,4 +1,4 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { ISVGIconProps } from './types';
3
- export declare const IconFastAcceleration: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
3
+ declare const IconFastAcceleration: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
4
  export default IconFastAcceleration;
@@ -1,29 +1 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
3
- import classNames from 'classnames';
4
-
5
- var IconFastAcceleration = function IconFastAcceleration(_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.4999 4C18.1943 4 21.9999 7.80558 21.9999 12.5C21.9999 17.1944 18.1943 21 13.4999 21C11.7092 21 10.0478 20.4463 8.67766 19.5007L1.75146 19.5C1.33725 19.5 1.00146 19.1642 1.00146 18.75C1.00146 18.3703 1.28362 18.0565 1.64969 18.0068L1.75146 18L7.01976 18.001C6.62837 17.5404 6.28521 17.0376 5.99809 16.5002L3.74693 16.5C3.33272 16.5 2.99693 16.1642 2.99693 15.75C2.99693 15.3703 3.27908 15.0565 3.64516 15.0068L3.74693 15L5.37379 15.0011C5.1307 14.2103 4.99986 13.3705 4.99986 12.5C4.99986 10.4025 5.7596 8.48241 7.01892 6.99997L2.74986 7C2.33564 7 1.99986 6.66421 1.99986 6.25C1.99986 5.8703 2.28201 5.55651 2.64809 5.50685L2.74986 5.5L8.67667 5.49999C10.047 4.554 11.7087 4 13.4999 4ZM13.4999 5.5C9.63386 5.5 6.49986 8.63401 6.49986 12.5C6.49986 16.366 9.63386 19.5 13.4999 19.5C17.3659 19.5 20.4999 16.366 20.4999 12.5C20.4999 8.63401 17.3659 5.5 13.4999 5.5ZM13.503 7.00169C16.5414 7.00169 19.0045 9.46479 19.0045 12.5032C19.0045 15.5416 16.5414 18.0047 13.503 18.0047C10.4646 18.0047 8.00155 15.5416 8.00155 12.5032C8.00155 9.46479 10.4646 7.00169 13.503 7.00169ZM14.6543 14.7161C14.309 14.8963 13.9163 14.9982 13.4999 14.9982C13.0878 14.9982 12.699 14.8984 12.3564 14.7218L11.2605 15.8177C11.9002 16.2513 12.672 16.5047 13.503 16.5047C14.3367 16.5047 15.1107 16.2497 15.7516 15.8136L14.6543 14.7161ZM9.50155 12.5032C9.50155 13.3394 9.75806 14.1157 10.1967 14.7577L11.2896 13.6665C11.1052 13.318 11.0008 12.9208 11.0008 12.4991C11.0008 12.0822 11.1028 11.6892 11.2833 11.3436L10.1926 10.2546C9.75646 10.8955 9.50155 11.6695 9.50155 12.5032ZM16.8175 10.2606L15.7226 11.3556C15.8992 11.6983 15.9989 12.087 15.9989 12.4991C15.9989 12.916 15.8969 13.309 15.7164 13.6545L16.8135 14.7517C17.2496 14.1109 17.5045 13.3368 17.5045 12.5032C17.5045 11.6722 17.2512 10.9003 16.8175 10.2606ZM13.4999 11.5C12.9481 11.5 12.5008 11.9473 12.5008 12.4991C12.5008 13.0509 12.9481 13.4982 13.4999 13.4982C14.0516 13.4982 14.4989 13.0509 14.4989 12.4991C14.4989 11.9473 14.0516 11.5 13.4999 11.5ZM13.503 8.50169C12.669 8.50169 11.8945 8.75687 11.2535 9.19342L12.3434 10.2831C12.6892 10.1023 13.0826 10 13.4999 10C13.9211 10 14.318 10.1042 14.6662 10.2883L15.7576 9.19684C15.1156 8.7582 14.3393 8.50169 13.503 8.50169Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconFastAcceleration, IconFastAcceleration as default };
1
+ import{jsx as i}from"react/jsx-runtime";import e from"classnames";const M=({size:C,type:s,className:L="",onClick:a,refHandler:o,id:n,dataId:t})=>/* @__PURE__ */i("svg",{xmlns:"http://www.w3.org/2000/svg",className:e("svg-icon",{[`svg-icon__size-${C}`]:C,[`svg-icon__type-${s}`]:s,[L]:L}),viewBox:"0 0 24 24",fill:"none",onClick:a,ref:o,id:n,"data-id":t?`${t}-svg-icon`:"",children:/* @__PURE__ */i("path",{d:"M13.4999 4C18.1943 4 21.9999 7.80558 21.9999 12.5C21.9999 17.1944 18.1943 21 13.4999 21C11.7092 21 10.0478 20.4463 8.67766 19.5007L1.75146 19.5C1.33725 19.5 1.00146 19.1642 1.00146 18.75C1.00146 18.3703 1.28362 18.0565 1.64969 18.0068L1.75146 18L7.01976 18.001C6.62837 17.5404 6.28521 17.0376 5.99809 16.5002L3.74693 16.5C3.33272 16.5 2.99693 16.1642 2.99693 15.75C2.99693 15.3703 3.27908 15.0565 3.64516 15.0068L3.74693 15L5.37379 15.0011C5.1307 14.2103 4.99986 13.3705 4.99986 12.5C4.99986 10.4025 5.7596 8.48241 7.01892 6.99997L2.74986 7C2.33564 7 1.99986 6.66421 1.99986 6.25C1.99986 5.8703 2.28201 5.55651 2.64809 5.50685L2.74986 5.5L8.67667 5.49999C10.047 4.554 11.7087 4 13.4999 4ZM13.4999 5.5C9.63386 5.5 6.49986 8.63401 6.49986 12.5C6.49986 16.366 9.63386 19.5 13.4999 19.5C17.3659 19.5 20.4999 16.366 20.4999 12.5C20.4999 8.63401 17.3659 5.5 13.4999 5.5ZM13.503 7.00169C16.5414 7.00169 19.0045 9.46479 19.0045 12.5032C19.0045 15.5416 16.5414 18.0047 13.503 18.0047C10.4646 18.0047 8.00155 15.5416 8.00155 12.5032C8.00155 9.46479 10.4646 7.00169 13.503 7.00169ZM14.6543 14.7161C14.309 14.8963 13.9163 14.9982 13.4999 14.9982C13.0878 14.9982 12.699 14.8984 12.3564 14.7218L11.2605 15.8177C11.9002 16.2513 12.672 16.5047 13.503 16.5047C14.3367 16.5047 15.1107 16.2497 15.7516 15.8136L14.6543 14.7161ZM9.50155 12.5032C9.50155 13.3394 9.75806 14.1157 10.1967 14.7577L11.2896 13.6665C11.1052 13.318 11.0008 12.9208 11.0008 12.4991C11.0008 12.0822 11.1028 11.6892 11.2833 11.3436L10.1926 10.2546C9.75646 10.8955 9.50155 11.6695 9.50155 12.5032ZM16.8175 10.2606L15.7226 11.3556C15.8992 11.6983 15.9989 12.087 15.9989 12.4991C15.9989 12.916 15.8969 13.309 15.7164 13.6545L16.8135 14.7517C17.2496 14.1109 17.5045 13.3368 17.5045 12.5032C17.5045 11.6722 17.2512 10.9003 16.8175 10.2606ZM13.4999 11.5C12.9481 11.5 12.5008 11.9473 12.5008 12.4991C12.5008 13.0509 12.9481 13.4982 13.4999 13.4982C14.0516 13.4982 14.4989 13.0509 14.4989 12.4991C14.4989 11.9473 14.0516 11.5 13.4999 11.5ZM13.503 8.50169C12.669 8.50169 11.8945 8.75687 11.2535 9.19342L12.3434 10.2831C12.6892 10.1023 13.0826 10 13.4999 10C13.9211 10 14.318 10.1042 14.6662 10.2883L15.7576 9.19684C15.1156 8.7582 14.3393 8.50169 13.503 8.50169Z",fill:"#222222"})});export{M as default};
@@ -1,4 +1,4 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { ISVGIconProps } from './types';
3
- export declare const IconFastAccelerationFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
3
+ declare const IconFastAccelerationFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
4
  export default IconFastAccelerationFilled;
@@ -1,29 +1 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
3
- import classNames from 'classnames';
4
-
5
- var IconFastAccelerationFilled = function IconFastAccelerationFilled(_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.4999 4C18.1943 4 21.9999 7.80558 21.9999 12.5C21.9999 17.1944 18.1943 21 13.4999 21C11.7092 21 10.0478 20.4463 8.67766 19.5007L1.75146 19.5C1.33725 19.5 1.00146 19.1642 1.00146 18.75C1.00146 18.3703 1.28362 18.0565 1.64969 18.0068L1.75146 18L7.01976 18.001C6.62837 17.5404 6.28521 17.0376 5.99809 16.5002L3.74693 16.5C3.33272 16.5 2.99693 16.1642 2.99693 15.75C2.99693 15.3703 3.27908 15.0565 3.64516 15.0068L3.74693 15L5.37379 15.0011C5.1307 14.2103 4.99986 13.3705 4.99986 12.5C4.99986 10.4025 5.7596 8.48241 7.01892 6.99997L2.74986 7C2.33564 7 1.99986 6.66421 1.99986 6.25C1.99986 5.8703 2.28201 5.55651 2.64809 5.50685L2.74986 5.5L8.67667 5.49999C10.047 4.554 11.7087 4 13.4999 4ZM14.6543 14.7161C14.309 14.8963 13.9163 14.9982 13.4999 14.9982C13.0878 14.9982 12.699 14.8984 12.3564 14.7218L11.2605 15.8177C11.9002 16.2513 12.672 16.5047 13.503 16.5047C14.3367 16.5047 15.1107 16.2497 15.7516 15.8136L14.6543 14.7161ZM9.50155 12.5032C9.50155 13.3394 9.75806 14.1157 10.1967 14.7577L11.2896 13.6665C11.1052 13.318 11.0008 12.9208 11.0008 12.4991C11.0008 12.0822 11.1028 11.6892 11.2833 11.3436L10.1926 10.2546C9.75646 10.8955 9.50155 11.6695 9.50155 12.5032ZM16.8175 10.2606L15.7226 11.3556C15.8992 11.6983 15.9989 12.087 15.9989 12.4991C15.9989 12.916 15.8969 13.309 15.7164 13.6545L16.8135 14.7517C17.2496 14.1109 17.5045 13.3368 17.5045 12.5032C17.5045 11.6722 17.2512 10.9003 16.8175 10.2606ZM13.4999 11.5C12.9481 11.5 12.5008 11.9473 12.5008 12.4991C12.5008 13.0509 12.9481 13.4982 13.4999 13.4982C14.0516 13.4982 14.4989 13.0509 14.4989 12.4991C14.4989 11.9473 14.0516 11.5 13.4999 11.5ZM13.503 8.50169C12.669 8.50169 11.8945 8.75687 11.2535 9.19342L12.3434 10.2831C12.6892 10.1023 13.0826 10 13.4999 10C13.9211 10 14.318 10.1042 14.6662 10.2883L15.7576 9.19684C15.1156 8.7582 14.3393 8.50169 13.503 8.50169Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconFastAccelerationFilled, IconFastAccelerationFilled as default };
1
+ import{jsx as i}from"react/jsx-runtime";import e from"classnames";const a=({size:C,type:s,className:a="",onClick:L,refHandler:o,id:n,dataId:t})=>/* @__PURE__ */i("svg",{xmlns:"http://www.w3.org/2000/svg",className:e("svg-icon",{[`svg-icon__size-${C}`]:C,[`svg-icon__type-${s}`]:s,[a]:a}),viewBox:"0 0 24 24",fill:"none",onClick:L,ref:o,id:n,"data-id":t?`${t}-svg-icon`:"",children:/* @__PURE__ */i("path",{d:"M13.4999 4C18.1943 4 21.9999 7.80558 21.9999 12.5C21.9999 17.1944 18.1943 21 13.4999 21C11.7092 21 10.0478 20.4463 8.67766 19.5007L1.75146 19.5C1.33725 19.5 1.00146 19.1642 1.00146 18.75C1.00146 18.3703 1.28362 18.0565 1.64969 18.0068L1.75146 18L7.01976 18.001C6.62837 17.5404 6.28521 17.0376 5.99809 16.5002L3.74693 16.5C3.33272 16.5 2.99693 16.1642 2.99693 15.75C2.99693 15.3703 3.27908 15.0565 3.64516 15.0068L3.74693 15L5.37379 15.0011C5.1307 14.2103 4.99986 13.3705 4.99986 12.5C4.99986 10.4025 5.7596 8.48241 7.01892 6.99997L2.74986 7C2.33564 7 1.99986 6.66421 1.99986 6.25C1.99986 5.8703 2.28201 5.55651 2.64809 5.50685L2.74986 5.5L8.67667 5.49999C10.047 4.554 11.7087 4 13.4999 4ZM14.6543 14.7161C14.309 14.8963 13.9163 14.9982 13.4999 14.9982C13.0878 14.9982 12.699 14.8984 12.3564 14.7218L11.2605 15.8177C11.9002 16.2513 12.672 16.5047 13.503 16.5047C14.3367 16.5047 15.1107 16.2497 15.7516 15.8136L14.6543 14.7161ZM9.50155 12.5032C9.50155 13.3394 9.75806 14.1157 10.1967 14.7577L11.2896 13.6665C11.1052 13.318 11.0008 12.9208 11.0008 12.4991C11.0008 12.0822 11.1028 11.6892 11.2833 11.3436L10.1926 10.2546C9.75646 10.8955 9.50155 11.6695 9.50155 12.5032ZM16.8175 10.2606L15.7226 11.3556C15.8992 11.6983 15.9989 12.087 15.9989 12.4991C15.9989 12.916 15.8969 13.309 15.7164 13.6545L16.8135 14.7517C17.2496 14.1109 17.5045 13.3368 17.5045 12.5032C17.5045 11.6722 17.2512 10.9003 16.8175 10.2606ZM13.4999 11.5C12.9481 11.5 12.5008 11.9473 12.5008 12.4991C12.5008 13.0509 12.9481 13.4982 13.4999 13.4982C14.0516 13.4982 14.4989 13.0509 14.4989 12.4991C14.4989 11.9473 14.0516 11.5 13.4999 11.5ZM13.503 8.50169C12.669 8.50169 11.8945 8.75687 11.2535 9.19342L12.3434 10.2831C12.6892 10.1023 13.0826 10 13.4999 10C13.9211 10 14.318 10.1042 14.6662 10.2883L15.7576 9.19684C15.1156 8.7582 14.3393 8.50169 13.503 8.50169Z",fill:"#222222"})});export{a as default};
@@ -1,4 +1,4 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { ISVGIconProps } from './types';
3
- export declare const IconFeed: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
3
+ declare const IconFeed: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
4
  export default IconFeed;
@@ -1,29 +1 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
3
- import classNames from 'classnames';
4
-
5
- var IconFeed = function IconFeed(_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: "M6.52832 7.75C6.52832 8.16421 6.19253 8.5 5.77832 8.5C5.36411 8.5 5.02832 8.16421 5.02832 7.75C5.02832 7.33579 5.36411 7 5.77832 7C6.19253 7 6.52832 7.33579 6.52832 7.75ZM5.78125 15C5.36704 15 5.03125 15.3358 5.03125 15.75C5.03125 16.1642 5.36704 16.5 5.78125 16.5H10.7812C11.1955 16.5 11.5312 16.1642 11.5312 15.75C11.5312 15.3358 11.1955 15 10.7812 15H5.78125ZM5.03125 11.75C5.03125 11.3358 5.36704 11 5.78125 11H10.7812C11.1955 11 11.5312 11.3358 11.5312 11.75C11.5312 12.1642 11.1955 12.5 10.7812 12.5H5.78125C5.36704 12.5 5.03125 12.1642 5.03125 11.75ZM15 21C15.9411 20.9936 16.7494 20.3272 16.9342 19.4032L17.4149 17H20.25C21.2165 17 22 16.2165 22 15.25V9.26115C22 8.01607 20.9937 7.00603 19.75 7.00003V6.99609H14.5V5.25C14.5 4.00736 13.4926 3 12.25 3H4.25C3.00736 3 2 4.00736 2 5.25V17.75C2 19.5449 3.45507 21 5.25 21H14.9864L15 21ZM3.5 5.25C3.5 4.83579 3.83579 4.5 4.25 4.5H12.25C12.6642 4.5 13 4.83579 13 5.25V19.0136C13 19.1814 13.0208 19.3444 13.06 19.5H5.25C4.2835 19.5 3.5 18.7165 3.5 17.75V5.25ZM14.5 8.49609H17.6109C17.5737 8.5997 17.5437 8.70708 17.5216 8.8177L15.4633 19.109C15.4179 19.3363 15.2183 19.5 14.9864 19.5C14.7178 19.5 14.5 19.2822 14.5 19.0136V8.49609ZM18.9925 9.11188C19.0636 8.7561 19.376 8.5 19.7388 8.5C20.1592 8.5 20.5 8.84078 20.5 9.26115V15.25C20.5 15.3881 20.3881 15.5 20.25 15.5H17.7149L18.9925 9.11188Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconFeed, IconFeed as default };
1
+ import{jsx as i}from"react/jsx-runtime";import l from"classnames";const V=({size:C,type:s,className:e="",onClick:a,refHandler:o,id:n,dataId:t})=>/* @__PURE__ */i("svg",{xmlns:"http://www.w3.org/2000/svg",className:l("svg-icon",{[`svg-icon__size-${C}`]:C,[`svg-icon__type-${s}`]:s,[e]:e}),viewBox:"0 0 24 24",fill:"none",onClick:a,ref:o,id:n,"data-id":t?`${t}-svg-icon`:"",children:/* @__PURE__ */i("path",{d:"M6.52832 7.75C6.52832 8.16421 6.19253 8.5 5.77832 8.5C5.36411 8.5 5.02832 8.16421 5.02832 7.75C5.02832 7.33579 5.36411 7 5.77832 7C6.19253 7 6.52832 7.33579 6.52832 7.75ZM5.78125 15C5.36704 15 5.03125 15.3358 5.03125 15.75C5.03125 16.1642 5.36704 16.5 5.78125 16.5H10.7812C11.1955 16.5 11.5312 16.1642 11.5312 15.75C11.5312 15.3358 11.1955 15 10.7812 15H5.78125ZM5.03125 11.75C5.03125 11.3358 5.36704 11 5.78125 11H10.7812C11.1955 11 11.5312 11.3358 11.5312 11.75C11.5312 12.1642 11.1955 12.5 10.7812 12.5H5.78125C5.36704 12.5 5.03125 12.1642 5.03125 11.75ZM15 21C15.9411 20.9936 16.7494 20.3272 16.9342 19.4032L17.4149 17H20.25C21.2165 17 22 16.2165 22 15.25V9.26115C22 8.01607 20.9937 7.00603 19.75 7.00003V6.99609H14.5V5.25C14.5 4.00736 13.4926 3 12.25 3H4.25C3.00736 3 2 4.00736 2 5.25V17.75C2 19.5449 3.45507 21 5.25 21H14.9864L15 21ZM3.5 5.25C3.5 4.83579 3.83579 4.5 4.25 4.5H12.25C12.6642 4.5 13 4.83579 13 5.25V19.0136C13 19.1814 13.0208 19.3444 13.06 19.5H5.25C4.2835 19.5 3.5 18.7165 3.5 17.75V5.25ZM14.5 8.49609H17.6109C17.5737 8.5997 17.5437 8.70708 17.5216 8.8177L15.4633 19.109C15.4179 19.3363 15.2183 19.5 14.9864 19.5C14.7178 19.5 14.5 19.2822 14.5 19.0136V8.49609ZM18.9925 9.11188C19.0636 8.7561 19.376 8.5 19.7388 8.5C20.1592 8.5 20.5 8.84078 20.5 9.26115V15.25C20.5 15.3881 20.3881 15.5 20.25 15.5H17.7149L18.9925 9.11188Z",fill:"#222222"})});export{V as default};
@@ -1,4 +1,4 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { ISVGIconProps } from './types';
3
- export declare const IconFeedFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
3
+ declare const IconFeedFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
4
  export default IconFeedFilled;
@@ -1,29 +1 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
3
- import classNames from 'classnames';
4
-
5
- var IconFeedFilled = function IconFeedFilled(_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 21C15.9411 20.9936 16.7494 20.3272 16.9342 19.4032L17.4149 17H20.25C21.2165 17 22 16.2165 22 15.25V9.26115C22 8.01607 20.9937 7.00603 19.75 7.00003V6.99609H14.5V5.25C14.5 4.00736 13.4926 3 12.25 3H4.25C3.00736 3 2 4.00736 2 5.25V17.75C2 19.5449 3.45507 21 5.25 21H14.9864L15 21ZM17.5216 8.8177L15.4633 19.109C15.4179 19.3363 15.2183 19.5 14.9864 19.5C14.7178 19.5 14.5 19.2822 14.5 19.0136V8.49609H17.6109C17.5737 8.5997 17.5437 8.70708 17.5216 8.8177ZM5.77832 8.5C5.36411 8.5 5.02832 8.16421 5.02832 7.75C5.02832 7.33579 5.36411 7 5.77832 7C6.19253 7 6.52832 7.33579 6.52832 7.75C6.52832 8.16421 6.19253 8.5 5.77832 8.5ZM5.03125 15.75C5.03125 15.3358 5.36704 15 5.78125 15H10.7812C11.1955 15 11.5312 15.3358 11.5312 15.75C11.5312 16.1642 11.1955 16.5 10.7812 16.5H5.78125C5.36704 16.5 5.03125 16.1642 5.03125 15.75ZM5.78125 11H10.7812C11.1955 11 11.5312 11.3358 11.5312 11.75C11.5312 12.1642 11.1955 12.5 10.7812 12.5H5.78125C5.36704 12.5 5.03125 12.1642 5.03125 11.75C5.03125 11.3358 5.36704 11 5.78125 11Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconFeedFilled, IconFeedFilled as default };
1
+ import{jsx as e}from"react/jsx-runtime";import c from"classnames";const g=({size:C,type:s,className:i="",onClick:a,refHandler:o,id:n,dataId:t})=>/* @__PURE__ */e("svg",{xmlns:"http://www.w3.org/2000/svg",className:c("svg-icon",{[`svg-icon__size-${C}`]:C,[`svg-icon__type-${s}`]:s,[i]:i}),viewBox:"0 0 24 24",fill:"none",onClick:a,ref:o,id:n,"data-id":t?`${t}-svg-icon`:"",children:/* @__PURE__ */e("path",{d:"M15 21C15.9411 20.9936 16.7494 20.3272 16.9342 19.4032L17.4149 17H20.25C21.2165 17 22 16.2165 22 15.25V9.26115C22 8.01607 20.9937 7.00603 19.75 7.00003V6.99609H14.5V5.25C14.5 4.00736 13.4926 3 12.25 3H4.25C3.00736 3 2 4.00736 2 5.25V17.75C2 19.5449 3.45507 21 5.25 21H14.9864L15 21ZM17.5216 8.8177L15.4633 19.109C15.4179 19.3363 15.2183 19.5 14.9864 19.5C14.7178 19.5 14.5 19.2822 14.5 19.0136V8.49609H17.6109C17.5737 8.5997 17.5437 8.70708 17.5216 8.8177ZM5.77832 8.5C5.36411 8.5 5.02832 8.16421 5.02832 7.75C5.02832 7.33579 5.36411 7 5.77832 7C6.19253 7 6.52832 7.33579 6.52832 7.75C6.52832 8.16421 6.19253 8.5 5.77832 8.5ZM5.03125 15.75C5.03125 15.3358 5.36704 15 5.78125 15H10.7812C11.1955 15 11.5312 15.3358 11.5312 15.75C11.5312 16.1642 11.1955 16.5 10.7812 16.5H5.78125C5.36704 16.5 5.03125 16.1642 5.03125 15.75ZM5.78125 11H10.7812C11.1955 11 11.5312 11.3358 11.5312 11.75C11.5312 12.1642 11.1955 12.5 10.7812 12.5H5.78125C5.36704 12.5 5.03125 12.1642 5.03125 11.75C5.03125 11.3358 5.36704 11 5.78125 11Z",fill:"#222222"})});export{g as default};
@@ -1,4 +1,4 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { ISVGIconProps } from './types';
3
- export declare const IconFilter: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
3
+ declare const IconFilter: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
4
  export default IconFilter;
@@ -1,29 +1 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
3
- import classNames from 'classnames';
4
-
5
- var IconFilter = function IconFilter(_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.5 16C13.9142 16 14.25 16.3358 14.25 16.75C14.25 17.1642 13.9142 17.5 13.5 17.5H10.5C10.0858 17.5 9.75 17.1642 9.75 16.75C9.75 16.3358 10.0858 16 10.5 16H13.5ZM16.5 11C16.9142 11 17.25 11.3358 17.25 11.75C17.25 12.1642 16.9142 12.5 16.5 12.5H7.5C7.08579 12.5 6.75 12.1642 6.75 11.75C6.75 11.3358 7.08579 11 7.5 11H16.5ZM19.5 6C19.9142 6 20.25 6.33579 20.25 6.75C20.25 7.16421 19.9142 7.5 19.5 7.5H4.5C4.08579 7.5 3.75 7.16421 3.75 6.75C3.75 6.33579 4.08579 6 4.5 6H19.5Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconFilter, IconFilter as default };
1
+ import{jsx as n}from"react/jsx-runtime";import c from"classnames";const v=({size:s,type:i,className:e="",onClick:a,refHandler:o,id:t,dataId:C})=>/* @__PURE__ */n("svg",{xmlns:"http://www.w3.org/2000/svg",className:c("svg-icon",{[`svg-icon__size-${s}`]:s,[`svg-icon__type-${i}`]:i,[e]:e}),viewBox:"0 0 24 24",fill:"none",onClick:a,ref:o,id:t,"data-id":C?`${C}-svg-icon`:"",children:/* @__PURE__ */n("path",{d:"M13.5 16C13.9142 16 14.25 16.3358 14.25 16.75C14.25 17.1642 13.9142 17.5 13.5 17.5H10.5C10.0858 17.5 9.75 17.1642 9.75 16.75C9.75 16.3358 10.0858 16 10.5 16H13.5ZM16.5 11C16.9142 11 17.25 11.3358 17.25 11.75C17.25 12.1642 16.9142 12.5 16.5 12.5H7.5C7.08579 12.5 6.75 12.1642 6.75 11.75C6.75 11.3358 7.08579 11 7.5 11H16.5ZM19.5 6C19.9142 6 20.25 6.33579 20.25 6.75C20.25 7.16421 19.9142 7.5 19.5 7.5H4.5C4.08579 7.5 3.75 7.16421 3.75 6.75C3.75 6.33579 4.08579 6 4.5 6H19.5Z",fill:"#222222"})});export{v as default};
@@ -1,4 +1,4 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { ISVGIconProps } from './types';
3
- export declare const IconFilterFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
3
+ declare const IconFilterFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
4
  export default IconFilterFilled;
@@ -1,29 +1 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
3
- import classNames from 'classnames';
4
-
5
- var IconFilterFilled = function IconFilterFilled(_ref) {
6
- var size = _ref.size,
7
- type = _ref.type,
8
- _ref$className = _ref.className,
9
- className = _ref$className === void 0 ? '' : _ref$className,
10
- onClick = _ref.onClick,
11
- refHandler = _ref.refHandler,
12
- id = _ref.id,
13
- dataId = _ref.dataId;
14
- return /*#__PURE__*/React.createElement("svg", {
15
- xmlns: "http://www.w3.org/2000/svg",
16
- className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
- viewBox: "0 0 24 24",
18
- fill: "none",
19
- onClick: onClick,
20
- ref: refHandler,
21
- id: id,
22
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
- }, /*#__PURE__*/React.createElement("path", {
24
- d: "M10 16H14C14.5523 16 15 16.4477 15 17C15 17.5128 14.614 17.9355 14.1166 17.9933L14 18H10C9.44772 18 9 17.5523 9 17C9 16.4872 9.38604 16.0645 9.88338 16.0067L10 16H14H10ZM8 11H16C16.5523 11 17 11.4477 17 12C17 12.5128 16.614 12.9355 16.1166 12.9933L16 13H8C7.44772 13 7 12.5523 7 12C7 11.4872 7.38604 11.0645 7.88338 11.0067L8 11H16H8ZM5 6H19C19.5523 6 20 6.44772 20 7C20 7.51284 19.614 7.93551 19.1166 7.99327L19 8H5C4.44772 8 4 7.55228 4 7C4 6.48716 4.38604 6.06449 4.88338 6.00673L5 6H19H5Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconFilterFilled, IconFilterFilled as default };
1
+ import{jsx as H}from"react/jsx-runtime";import r from"classnames";const g=({size:s,type:i,className:e="",onClick:a,refHandler:o,id:n,dataId:t})=>/* @__PURE__ */H("svg",{xmlns:"http://www.w3.org/2000/svg",className:r("svg-icon",{[`svg-icon__size-${s}`]:s,[`svg-icon__type-${i}`]:i,[e]:e}),viewBox:"0 0 24 24",fill:"none",onClick:a,ref:o,id:n,"data-id":t?`${t}-svg-icon`:"",children:/* @__PURE__ */H("path",{d:"M10 16H14C14.5523 16 15 16.4477 15 17C15 17.5128 14.614 17.9355 14.1166 17.9933L14 18H10C9.44772 18 9 17.5523 9 17C9 16.4872 9.38604 16.0645 9.88338 16.0067L10 16H14H10ZM8 11H16C16.5523 11 17 11.4477 17 12C17 12.5128 16.614 12.9355 16.1166 12.9933L16 13H8C7.44772 13 7 12.5523 7 12C7 11.4872 7.38604 11.0645 7.88338 11.0067L8 11H16H8ZM5 6H19C19.5523 6 20 6.44772 20 7C20 7.51284 19.614 7.93551 19.1166 7.99327L19 8H5C4.44772 8 4 7.55228 4 7C4 6.48716 4.38604 6.06449 4.88338 6.00673L5 6H19H5Z",fill:"#222222"})});export{g as default};
@@ -1,4 +1,4 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { ISVGIconProps } from './types';
3
- export declare const IconFlag: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
3
+ declare const IconFlag: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
4
  export default IconFlag;
@@ -1,32 +1 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
3
- import classNames from 'classnames';
4
-
5
- var IconFlag = function IconFlag(_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: "M3 3.74805C3 3.33383 3.33579 2.99805 3.75 2.99805H20.2541C20.8722 2.99805 21.225 3.70369 20.8541 4.19811L16.6898 9.74927L20.8541 15.3004C21.225 15.7948 20.8722 16.5005 20.2541 16.5005L4.5 16.5V21.2499C4.5 21.6296 4.21785 21.9434 3.85177 21.993L3.75 21.9999C3.3703 21.9999 3.05651 21.7177 3.00685 21.3517L3 21.2499V3.74805ZM18.7539 4.49805H4.5V15.0005H18.7539L15.1522 10.1993C14.9522 9.93264 14.9522 9.5659 15.1522 9.29921L18.7539 4.49805Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconFlag, IconFlag as default };
1
+ import{jsx as i}from"react/jsx-runtime";import c from"classnames";const m=({size:e,type:s,className:a="",onClick:l,refHandler:n,id:o,dataId:r})=>/* @__PURE__ */i("svg",{xmlns:"http://www.w3.org/2000/svg",className:c("svg-icon",{[`svg-icon__size-${e}`]:e,[`svg-icon__type-${s}`]:s,[a]:a}),viewBox:"0 0 24 24",fill:"none",onClick:l,ref:n,id:o,"data-id":r?`${r}-svg-icon`:"",children:/* @__PURE__ */i("g",{id:"Size=24, Theme=Regular",children:/* @__PURE__ */i("path",{id:"Shape",d:"M3 3.74805C3 3.33383 3.33579 2.99805 3.75 2.99805H20.2541C20.8722 2.99805 21.225 3.70369 20.8541 4.19811L16.6898 9.74927L20.8541 15.3004C21.225 15.7948 20.8722 16.5005 20.2541 16.5005L4.5 16.5V21.2499C4.5 21.6296 4.21785 21.9434 3.85177 21.993L3.75 21.9999C3.3703 21.9999 3.05651 21.7177 3.00685 21.3517L3 21.2499V3.74805ZM18.7539 4.49805H4.5V15.0005H18.7539L15.1522 10.1993C14.9522 9.93264 14.9522 9.5659 15.1522 9.29921L18.7539 4.49805Z",fill:"#222222"})})});export{m as default};
@@ -1,4 +1,4 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { ISVGIconProps } from './types';
3
- export declare const IconFlagFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
3
+ declare const IconFlagFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
4
  export default IconFlagFilled;
@@ -1,32 +1 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
3
- import classNames from 'classnames';
4
-
5
- var IconFlagFilled = function IconFlagFilled(_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: "M3 3.74805C3 3.33383 3.33579 2.99805 3.75 2.99805H20.2541C20.8722 2.99805 21.225 3.70369 20.8541 4.19811L16.6898 9.74927L20.8541 15.3004C21.225 15.7948 20.8722 16.5005 20.2541 16.5005L4.5 16.5V21.2499C4.5 21.6296 4.21785 21.9434 3.85177 21.993L3.75 21.9999C3.3703 21.9999 3.05651 21.7177 3.00685 21.3517L3 21.2499V3.74805Z",
28
- fill: "#222222"
29
- })));
30
- };
31
-
32
- export { IconFlagFilled, IconFlagFilled as default };
1
+ import{jsx as i}from"react/jsx-runtime";import r from"classnames";const a=({size:e,type:s,className:a="",onClick:l,refHandler:n,id:o,dataId:d})=>/* @__PURE__ */i("svg",{xmlns:"http://www.w3.org/2000/svg",className:r("svg-icon",{[`svg-icon__size-${e}`]:e,[`svg-icon__type-${s}`]:s,[a]:a}),viewBox:"0 0 24 24",fill:"none",onClick:l,ref:n,id:o,"data-id":d?`${d}-svg-icon`:"",children:/* @__PURE__ */i("g",{id:"Size=24, Theme=Filled",children:/* @__PURE__ */i("path",{id:"Shape",d:"M3 3.74805C3 3.33383 3.33579 2.99805 3.75 2.99805H20.2541C20.8722 2.99805 21.225 3.70369 20.8541 4.19811L16.6898 9.74927L20.8541 15.3004C21.225 15.7948 20.8722 16.5005 20.2541 16.5005L4.5 16.5V21.2499C4.5 21.6296 4.21785 21.9434 3.85177 21.993L3.75 21.9999C3.3703 21.9999 3.05651 21.7177 3.00685 21.3517L3 21.2499V3.74805Z",fill:"#222222"})})});export{a as default};
@@ -1,4 +1,4 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { ISVGIconProps } from './types';
3
- export declare const IconFolderLink: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
3
+ declare const IconFolderLink: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
4
  export default IconFolderLink;
@@ -1,29 +1 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
3
- import classNames from 'classnames';
4
-
5
- var IconFolderLink = function IconFolderLink(_ref) {
6
- var size = _ref.size,
7
- type = _ref.type,
8
- _ref$className = _ref.className,
9
- className = _ref$className === void 0 ? '' : _ref$className,
10
- onClick = _ref.onClick,
11
- refHandler = _ref.refHandler,
12
- id = _ref.id,
13
- dataId = _ref.dataId;
14
- return /*#__PURE__*/React.createElement("svg", {
15
- xmlns: "http://www.w3.org/2000/svg",
16
- className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
- viewBox: "0 0 24 24",
18
- fill: "none",
19
- onClick: onClick,
20
- ref: refHandler,
21
- id: id,
22
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
- }, /*#__PURE__*/React.createElement("path", {
24
- d: "M18.25 14.5C20.3211 14.5 22 16.1789 22 18.25C22 20.2543 20.4276 21.8913 18.4523 21.9948L18.2534 22L17.2534 22.0046C16.8392 22.0065 16.5019 21.6722 16.5 21.258C16.4983 20.8783 16.779 20.5633 17.1448 20.5119L17.2466 20.5046L18.25 20.5C19.4926 20.5 20.5 19.4926 20.5 18.25C20.5 17.0591 19.5748 16.0844 18.404 16.0052L18.25 16H17.25C16.8358 16 16.5 15.6642 16.5 15.25C16.5 14.8703 16.7822 14.5565 17.1482 14.5068L17.25 14.5H18.25ZM13.75 14.5C14.1642 14.5 14.5 14.8358 14.5 15.25C14.5 15.6297 14.2178 15.9435 13.8518 15.9932L13.75 16H12.75C11.5074 16 10.5 17.0074 10.5 18.25C10.5 19.4409 11.4252 20.4156 12.596 20.4948L12.75 20.5H13.75C14.1642 20.5 14.5 20.8358 14.5 21.25C14.5 21.6297 14.2178 21.9435 13.8518 21.9932L13.75 22H12.75C10.6789 22 9 20.3211 9 18.25C9 16.2457 10.5724 14.6087 12.5508 14.5052L12.75 14.5H13.75ZM8.20693 4C8.66749 4 9.1153 4.14129 9.49094 4.40235L9.64734 4.5215L12.022 6.5H19.75C20.8867 6.5 21.8266 7.34297 21.9785 8.43788L21.9948 8.59595L22 8.75L22.0008 15.3352C21.5959 14.8148 21.085 14.3809 20.5005 14.0659L20.5 8.75C20.5 8.3703 20.2178 8.05651 19.8518 8.00685L19.75 8H12.021L9.64734 9.9785C9.29353 10.2733 8.85906 10.4515 8.40335 10.4914L8.20693 10.5L3.5 10.499V17.75C3.5 18.1297 3.78215 18.4435 4.14823 18.4932L4.25 18.5L8.0065 18.5006C8.03392 19.0282 8.14742 19.5329 8.33322 20.0012L4.25 20C3.05914 20 2.08436 19.0748 2.00519 17.904L2 17.75V6.25C2 5.05914 2.92516 4.08436 4.09595 4.00519L4.25 4H8.20693ZM18.25 17.5C18.6642 17.5 19 17.8358 19 18.25C19 18.6297 18.7178 18.9435 18.3518 18.9932L18.25 19H12.75C12.3358 19 12 18.6642 12 18.25C12 17.8703 12.2822 17.5565 12.6482 17.5068L12.75 17.5H18.25ZM8.20693 5.5H4.25C3.8703 5.5 3.55651 5.78215 3.50685 6.14823L3.5 6.25V8.999L8.20693 9C8.34729 9 8.4841 8.96063 8.60221 8.88738L8.68706 8.82617L10.578 7.249L8.68706 5.67383C8.57923 5.58398 8.44893 5.52664 8.31129 5.5073L8.20693 5.5Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconFolderLink, IconFolderLink as default };
1
+ import{jsx as i}from"react/jsx-runtime";import r from"classnames";const t=({size:C,type:L,className:s="",onClick:e,refHandler:a,id:t,dataId:o})=>/* @__PURE__ */i("svg",{xmlns:"http://www.w3.org/2000/svg",className:r("svg-icon",{[`svg-icon__size-${C}`]:C,[`svg-icon__type-${L}`]:L,[s]:s}),viewBox:"0 0 24 24",fill:"none",onClick:e,ref:a,id:t,"data-id":o?`${o}-svg-icon`:"",children:/* @__PURE__ */i("path",{d:"M18.25 14.5C20.3211 14.5 22 16.1789 22 18.25C22 20.2543 20.4276 21.8913 18.4523 21.9948L18.2534 22L17.2534 22.0046C16.8392 22.0065 16.5019 21.6722 16.5 21.258C16.4983 20.8783 16.779 20.5633 17.1448 20.5119L17.2466 20.5046L18.25 20.5C19.4926 20.5 20.5 19.4926 20.5 18.25C20.5 17.0591 19.5748 16.0844 18.404 16.0052L18.25 16H17.25C16.8358 16 16.5 15.6642 16.5 15.25C16.5 14.8703 16.7822 14.5565 17.1482 14.5068L17.25 14.5H18.25ZM13.75 14.5C14.1642 14.5 14.5 14.8358 14.5 15.25C14.5 15.6297 14.2178 15.9435 13.8518 15.9932L13.75 16H12.75C11.5074 16 10.5 17.0074 10.5 18.25C10.5 19.4409 11.4252 20.4156 12.596 20.4948L12.75 20.5H13.75C14.1642 20.5 14.5 20.8358 14.5 21.25C14.5 21.6297 14.2178 21.9435 13.8518 21.9932L13.75 22H12.75C10.6789 22 9 20.3211 9 18.25C9 16.2457 10.5724 14.6087 12.5508 14.5052L12.75 14.5H13.75ZM8.20693 4C8.66749 4 9.1153 4.14129 9.49094 4.40235L9.64734 4.5215L12.022 6.5H19.75C20.8867 6.5 21.8266 7.34297 21.9785 8.43788L21.9948 8.59595L22 8.75L22.0008 15.3352C21.5959 14.8148 21.085 14.3809 20.5005 14.0659L20.5 8.75C20.5 8.3703 20.2178 8.05651 19.8518 8.00685L19.75 8H12.021L9.64734 9.9785C9.29353 10.2733 8.85906 10.4515 8.40335 10.4914L8.20693 10.5L3.5 10.499V17.75C3.5 18.1297 3.78215 18.4435 4.14823 18.4932L4.25 18.5L8.0065 18.5006C8.03392 19.0282 8.14742 19.5329 8.33322 20.0012L4.25 20C3.05914 20 2.08436 19.0748 2.00519 17.904L2 17.75V6.25C2 5.05914 2.92516 4.08436 4.09595 4.00519L4.25 4H8.20693ZM18.25 17.5C18.6642 17.5 19 17.8358 19 18.25C19 18.6297 18.7178 18.9435 18.3518 18.9932L18.25 19H12.75C12.3358 19 12 18.6642 12 18.25C12 17.8703 12.2822 17.5565 12.6482 17.5068L12.75 17.5H18.25ZM8.20693 5.5H4.25C3.8703 5.5 3.55651 5.78215 3.50685 6.14823L3.5 6.25V8.999L8.20693 9C8.34729 9 8.4841 8.96063 8.60221 8.88738L8.68706 8.82617L10.578 7.249L8.68706 5.67383C8.57923 5.58398 8.44893 5.52664 8.31129 5.5073L8.20693 5.5Z",fill:"#222222"})});export{t as default};
@@ -1,4 +1,4 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { ISVGIconProps } from './types';
3
- export declare const IconFolderLinkFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
3
+ declare const IconFolderLinkFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
4
  export default IconFolderLinkFilled;
@@ -1,29 +1 @@
1
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
- import React from 'react';
3
- import classNames from 'classnames';
4
-
5
- var IconFolderLinkFilled = function IconFolderLinkFilled(_ref) {
6
- var size = _ref.size,
7
- type = _ref.type,
8
- _ref$className = _ref.className,
9
- className = _ref$className === void 0 ? '' : _ref$className,
10
- onClick = _ref.onClick,
11
- refHandler = _ref.refHandler,
12
- id = _ref.id,
13
- dataId = _ref.dataId;
14
- return /*#__PURE__*/React.createElement("svg", {
15
- xmlns: "http://www.w3.org/2000/svg",
16
- className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
17
- viewBox: "0 0 24 24",
18
- fill: "none",
19
- onClick: onClick,
20
- ref: refHandler,
21
- id: id,
22
- "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
23
- }, /*#__PURE__*/React.createElement("path", {
24
- d: "M18.25 14.5C20.3211 14.5 22 16.1789 22 18.25C22 20.2543 20.4276 21.8913 18.4523 21.9948L18.2534 22L17.2534 22.0046C16.8392 22.0065 16.5019 21.6722 16.5 21.258C16.4983 20.8783 16.779 20.5633 17.1448 20.5119L17.2466 20.5046L18.25 20.5C19.4926 20.5 20.5 19.4926 20.5 18.25C20.5 17.0591 19.5748 16.0844 18.404 16.0052L18.25 16H17.25C16.8358 16 16.5 15.6642 16.5 15.25C16.5 14.8703 16.7822 14.5565 17.1482 14.5068L17.25 14.5H18.25ZM13.75 14.5C14.1642 14.5 14.5 14.8358 14.5 15.25C14.5 15.6297 14.2178 15.9435 13.8518 15.9932L13.75 16H12.75C11.5074 16 10.5 17.0074 10.5 18.25C10.5 19.4409 11.4252 20.4156 12.596 20.4948L12.75 20.5H13.75C14.1642 20.5 14.5 20.8358 14.5 21.25C14.5 21.6297 14.2178 21.9435 13.8518 21.9932L13.75 22H12.75C10.6789 22 9 20.3211 9 18.25C9 16.2457 10.5724 14.6087 12.5508 14.5052L12.75 14.5H13.75ZM19.75 6.5C20.8867 6.5 21.8266 7.34297 21.9785 8.43788L21.9948 8.59595L22 8.75L22.0008 15.3352C21.1317 14.2184 19.7748 13.5 18.25 13.5H12.75C10.1266 13.5 8 15.6266 8 18.25C8 18.8684 8.11819 19.4593 8.33322 20.0012L4.25 20C3.05914 20 2.08436 19.0748 2.00519 17.904L2 17.75V10.499L8.20693 10.5L8.40335 10.4914C8.79396 10.4572 9.16896 10.3214 9.49094 10.0977L9.64734 9.9785L13.821 6.5H19.75ZM18.25 17.5C18.6642 17.5 19 17.8358 19 18.25C19 18.6297 18.7178 18.9435 18.3518 18.9932L18.25 19H12.75C12.3358 19 12 18.6642 12 18.25C12 17.8703 12.2822 17.5565 12.6482 17.5068L12.75 17.5H18.25ZM8.20693 4C8.66749 4 9.1153 4.14129 9.49094 4.40235L9.64734 4.5215L11.75 6.273L8.68706 8.82617L8.60221 8.88738C8.51363 8.94232 8.41452 8.9782 8.31129 8.9927L8.20693 9L2 8.999V6.25C2 5.05914 2.92516 4.08436 4.09595 4.00519L4.25 4H8.20693Z",
25
- fill: "#222222"
26
- }));
27
- };
28
-
29
- export { IconFolderLinkFilled, IconFolderLinkFilled as default };
1
+ import{jsx as s}from"react/jsx-runtime";import e from"classnames";const t=({size:C,type:L,className:i="",onClick:a,refHandler:t,id:o,dataId:n})=>/* @__PURE__ */s("svg",{xmlns:"http://www.w3.org/2000/svg",className:e("svg-icon",{[`svg-icon__size-${C}`]:C,[`svg-icon__type-${L}`]:L,[i]:i}),viewBox:"0 0 24 24",fill:"none",onClick:a,ref:t,id:o,"data-id":n?`${n}-svg-icon`:"",children:/* @__PURE__ */s("path",{d:"M18.25 14.5C20.3211 14.5 22 16.1789 22 18.25C22 20.2543 20.4276 21.8913 18.4523 21.9948L18.2534 22L17.2534 22.0046C16.8392 22.0065 16.5019 21.6722 16.5 21.258C16.4983 20.8783 16.779 20.5633 17.1448 20.5119L17.2466 20.5046L18.25 20.5C19.4926 20.5 20.5 19.4926 20.5 18.25C20.5 17.0591 19.5748 16.0844 18.404 16.0052L18.25 16H17.25C16.8358 16 16.5 15.6642 16.5 15.25C16.5 14.8703 16.7822 14.5565 17.1482 14.5068L17.25 14.5H18.25ZM13.75 14.5C14.1642 14.5 14.5 14.8358 14.5 15.25C14.5 15.6297 14.2178 15.9435 13.8518 15.9932L13.75 16H12.75C11.5074 16 10.5 17.0074 10.5 18.25C10.5 19.4409 11.4252 20.4156 12.596 20.4948L12.75 20.5H13.75C14.1642 20.5 14.5 20.8358 14.5 21.25C14.5 21.6297 14.2178 21.9435 13.8518 21.9932L13.75 22H12.75C10.6789 22 9 20.3211 9 18.25C9 16.2457 10.5724 14.6087 12.5508 14.5052L12.75 14.5H13.75ZM19.75 6.5C20.8867 6.5 21.8266 7.34297 21.9785 8.43788L21.9948 8.59595L22 8.75L22.0008 15.3352C21.1317 14.2184 19.7748 13.5 18.25 13.5H12.75C10.1266 13.5 8 15.6266 8 18.25C8 18.8684 8.11819 19.4593 8.33322 20.0012L4.25 20C3.05914 20 2.08436 19.0748 2.00519 17.904L2 17.75V10.499L8.20693 10.5L8.40335 10.4914C8.79396 10.4572 9.16896 10.3214 9.49094 10.0977L9.64734 9.9785L13.821 6.5H19.75ZM18.25 17.5C18.6642 17.5 19 17.8358 19 18.25C19 18.6297 18.7178 18.9435 18.3518 18.9932L18.25 19H12.75C12.3358 19 12 18.6642 12 18.25C12 17.8703 12.2822 17.5565 12.6482 17.5068L12.75 17.5H18.25ZM8.20693 4C8.66749 4 9.1153 4.14129 9.49094 4.40235L9.64734 4.5215L11.75 6.273L8.68706 8.82617L8.60221 8.88738C8.51363 8.94232 8.41452 8.9782 8.31129 8.9927L8.20693 9L2 8.999V6.25C2 5.05914 2.92516 4.08436 4.09595 4.00519L4.25 4H8.20693Z",fill:"#222222"})});export{t as default};
@@ -1,4 +1,4 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { ISVGIconProps } from './types';
3
- export declare const IconFood: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
3
+ declare const IconFood: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
4
  export default IconFood;