hrm_ui_lib 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (933) hide show
  1. package/.babelrc +4 -0
  2. package/.eslintignore +5 -0
  3. package/.eslintrc.yml +43 -0
  4. package/.github/workflows/main.yml +71 -0
  5. package/.prettierrc +9 -0
  6. package/.releaserc +21 -0
  7. package/.storybook/main.ts +36 -0
  8. package/.storybook/preview-head.html +3 -0
  9. package/.storybook/preview.ts +7 -0
  10. package/.vscode/settings.json +16 -0
  11. package/CHANGELOG.md +0 -0
  12. package/bin/generate_svg_component.js +112 -0
  13. package/bin/import_all_svg_components.js +29 -0
  14. package/commitlint.config.js +3 -0
  15. package/package.json +143 -0
  16. package/rollup.config.js +149 -0
  17. package/slack-notification.yml +38 -0
  18. package/src/assets/images/ArCa.svg +3 -0
  19. package/src/assets/images/Avatar.png +0 -0
  20. package/src/assets/images/Mastercard.svg +5 -0
  21. package/src/assets/images/Visa.svg +3 -0
  22. package/src/assets/images/avatar.jpg +0 -0
  23. package/src/assets/images/cards-img.png +0 -0
  24. package/src/assets/images/illustrations.svg +15 -0
  25. package/src/assets/images/image-placeholder.png +0 -0
  26. package/src/assets/images/logo-closed.svg +8 -0
  27. package/src/assets/images/logo.svg +14 -0
  28. package/src/assets/images/no-result.svg +35 -0
  29. package/src/assets/styles/components/_alert.scss +85 -0
  30. package/src/assets/styles/components/_avatar.scss +268 -0
  31. package/src/assets/styles/components/_badge.scss +52 -0
  32. package/src/assets/styles/components/_breadcrumb.scss +43 -0
  33. package/src/assets/styles/components/_button-icon.scss +73 -0
  34. package/src/assets/styles/components/_button.scss +423 -0
  35. package/src/assets/styles/components/_card-body.scss +25 -0
  36. package/src/assets/styles/components/_card-item.scss +35 -0
  37. package/src/assets/styles/components/_card-select.scss +96 -0
  38. package/src/assets/styles/components/_chips.scss +267 -0
  39. package/src/assets/styles/components/_collapse.scss +62 -0
  40. package/src/assets/styles/components/_controllers.scss +333 -0
  41. package/src/assets/styles/components/_copy.scss +3 -0
  42. package/src/assets/styles/components/_counter.scss +15 -0
  43. package/src/assets/styles/components/_date-picker.scss +781 -0
  44. package/src/assets/styles/components/_divider.scss +28 -0
  45. package/src/assets/styles/components/_empty.scss +41 -0
  46. package/src/assets/styles/components/_error-message.scss +7 -0
  47. package/src/assets/styles/components/_file-upload.scss +89 -0
  48. package/src/assets/styles/components/_form-container.scss +7 -0
  49. package/src/assets/styles/components/_image.scss +15 -0
  50. package/src/assets/styles/components/_input.scss +225 -0
  51. package/src/assets/styles/components/_item-select.scss +115 -0
  52. package/src/assets/styles/components/_link.scss +27 -0
  53. package/src/assets/styles/components/_loader.scss +108 -0
  54. package/src/assets/styles/components/_modal.scss +178 -0
  55. package/src/assets/styles/components/_more.scss +4 -0
  56. package/src/assets/styles/components/_nested-menu.scss +46 -0
  57. package/src/assets/styles/components/_pagination.scss +130 -0
  58. package/src/assets/styles/components/_popover.scss +112 -0
  59. package/src/assets/styles/components/_progres-stepper.scss +263 -0
  60. package/src/assets/styles/components/_progress.scss +124 -0
  61. package/src/assets/styles/components/_radio-group.scss +60 -0
  62. package/src/assets/styles/components/_select.scss +287 -0
  63. package/src/assets/styles/components/_side-navigation.scss +224 -0
  64. package/src/assets/styles/components/_side-sheet.scss +113 -0
  65. package/src/assets/styles/components/_snackbar.scss +57 -0
  66. package/src/assets/styles/components/_status.scss +60 -0
  67. package/src/assets/styles/components/_svg-icons.scss +54 -0
  68. package/src/assets/styles/components/_switcher.scss +17 -0
  69. package/src/assets/styles/components/_tab.scss +203 -0
  70. package/src/assets/styles/components/_table.scss +99 -0
  71. package/src/assets/styles/components/_textarea.scss +122 -0
  72. package/src/assets/styles/components/_tooltip.scss +117 -0
  73. package/src/assets/styles/helpers/_classname.scss +606 -0
  74. package/src/assets/styles/helpers/_mixin.scss +718 -0
  75. package/src/assets/styles/helpers/_reset.scss +369 -0
  76. package/src/assets/styles/index.scss +59 -0
  77. package/src/assets/styles/tokens/_borders.scss +48 -0
  78. package/src/assets/styles/tokens/_colors.scss +208 -0
  79. package/src/assets/styles/tokens/_fonts.scss +107 -0
  80. package/src/assets/styles/tokens/_overlays.scss +36 -0
  81. package/src/assets/styles/tokens/_shadows.scss +53 -0
  82. package/src/assets/styles/tokens/_sizes.scss +58 -0
  83. package/src/assets/styles/tokens/_spaces.scss +54 -0
  84. package/src/components/Alert/Alert.tsx +69 -0
  85. package/src/components/Alert/consts.ts +17 -0
  86. package/src/components/Alert/index.ts +1 -0
  87. package/src/components/Alert/types.ts +18 -0
  88. package/src/components/Avatar/Avatar.tsx +60 -0
  89. package/src/components/Avatar/AvatarGroup.tsx +73 -0
  90. package/src/components/Avatar/index.ts +2 -0
  91. package/src/components/Avatar/types.ts +27 -0
  92. package/src/components/Badge/Badge.tsx +22 -0
  93. package/src/components/Badge/index.ts +1 -0
  94. package/src/components/Badge/types.ts +6 -0
  95. package/src/components/Breadcrumb/Breadcrumb.tsx +25 -0
  96. package/src/components/Breadcrumb/index.ts +1 -0
  97. package/src/components/Breadcrumb/types.ts +11 -0
  98. package/src/components/Button/Button.tsx +67 -0
  99. package/src/components/Button/consts.ts +18 -0
  100. package/src/components/Button/index.ts +1 -0
  101. package/src/components/Button/types.ts +24 -0
  102. package/src/components/ButtonIcon/ButtonIcon.tsx +39 -0
  103. package/src/components/ButtonIcon/index.ts +1 -0
  104. package/src/components/ButtonIcon/types.ts +18 -0
  105. package/src/components/CardBody/CardBody.tsx +28 -0
  106. package/src/components/CardBody/index.ts +1 -0
  107. package/src/components/CardBody/types.ts +12 -0
  108. package/src/components/CardSelect/CardSelect.tsx +73 -0
  109. package/src/components/CardSelect/CardSelectGroup.tsx +49 -0
  110. package/src/components/CardSelect/components/CardAdditionalInfo.tsx +34 -0
  111. package/src/components/CardSelect/components/CardChips.tsx +25 -0
  112. package/src/components/CardSelect/components/CardDescription.tsx +15 -0
  113. package/src/components/CardSelect/components/CardInput.tsx +12 -0
  114. package/src/components/CardSelect/components/index.ts +4 -0
  115. package/src/components/CardSelect/index.ts +2 -0
  116. package/src/components/CardSelect/types.ts +39 -0
  117. package/src/components/Cards/CardItem.tsx +45 -0
  118. package/src/components/Cards/index.tsx +1 -0
  119. package/src/components/Cards/types.ts +15 -0
  120. package/src/components/Checkbox/Checkbox.tsx +139 -0
  121. package/src/components/Checkbox/index.ts +1 -0
  122. package/src/components/Checkbox/types.ts +19 -0
  123. package/src/components/Chips/Chips.tsx +70 -0
  124. package/src/components/Chips/consts.ts +15 -0
  125. package/src/components/Chips/index.ts +1 -0
  126. package/src/components/Chips/types.ts +30 -0
  127. package/src/components/Collapse/CollapseGroup/CollapseGroup.tsx +50 -0
  128. package/src/components/Collapse/CollapseItem/CollapseItem.tsx +86 -0
  129. package/src/components/Collapse/index.ts +2 -0
  130. package/src/components/Collapse/types.ts +43 -0
  131. package/src/components/Container/Container.tsx +8 -0
  132. package/src/components/Container/index.ts +1 -0
  133. package/src/components/Container/types.ts +5 -0
  134. package/src/components/Copy/Copy.tsx +38 -0
  135. package/src/components/Copy/index.ts +1 -0
  136. package/src/components/Copy/types.ts +6 -0
  137. package/src/components/Counter/Counter.tsx +82 -0
  138. package/src/components/Counter/index.ts +1 -0
  139. package/src/components/Counter/types.ts +9 -0
  140. package/src/components/DatePicker/CustomHeader/CustomHeader.tsx +87 -0
  141. package/src/components/DatePicker/CustomHeader/styles.scss +21 -0
  142. package/src/components/DatePicker/RangeDatePicker.tsx +126 -0
  143. package/src/components/DatePicker/SimpleDatePicker.tsx +105 -0
  144. package/src/components/DatePicker/TimePicker.tsx +85 -0
  145. package/src/components/DatePicker/hooks.ts +30 -0
  146. package/src/components/DatePicker/index.ts +3 -0
  147. package/src/components/DatePicker/types.ts +50 -0
  148. package/src/components/Divider/Divider.tsx +20 -0
  149. package/src/components/Divider/index.ts +1 -0
  150. package/src/components/Divider/types.ts +5 -0
  151. package/src/components/Empty/Empty.tsx +42 -0
  152. package/src/components/Empty/index.ts +1 -0
  153. package/src/components/Empty/types.ts +10 -0
  154. package/src/components/FileUpload/FileUpload.tsx +159 -0
  155. package/src/components/FileUpload/UploadItems.tsx +60 -0
  156. package/src/components/FileUpload/index.ts +2 -0
  157. package/src/components/FileUpload/types.ts +37 -0
  158. package/src/components/FormContainer/FormContainer.tsx +93 -0
  159. package/src/components/FormContainer/index.ts +1 -0
  160. package/src/components/FormContainer/types.ts +21 -0
  161. package/src/components/FormField/FormField.tsx +70 -0
  162. package/src/components/FormField/index.ts +1 -0
  163. package/src/components/FormField/types.ts +8 -0
  164. package/src/components/Heading/Heading.tsx +33 -0
  165. package/src/components/Heading/index.ts +1 -0
  166. package/src/components/Heading/types.ts +12 -0
  167. package/src/components/Image/Image.tsx +37 -0
  168. package/src/components/Image/index.ts +1 -0
  169. package/src/components/Image/types.ts +10 -0
  170. package/src/components/Input/Input.tsx +209 -0
  171. package/src/components/Input/index.ts +1 -0
  172. package/src/components/Input/types.ts +46 -0
  173. package/src/components/ItemSelect/ItemSelect.tsx +74 -0
  174. package/src/components/ItemSelect/ItemSelectGroup.tsx +35 -0
  175. package/src/components/ItemSelect/index.ts +2 -0
  176. package/src/components/ItemSelect/types.ts +23 -0
  177. package/src/components/Link/Link.tsx +51 -0
  178. package/src/components/Link/index.ts +1 -0
  179. package/src/components/Link/types.ts +10 -0
  180. package/src/components/Menu/Menu.tsx +99 -0
  181. package/src/components/Menu/NestedMenu.tsx +97 -0
  182. package/src/components/Menu/index.ts +2 -0
  183. package/src/components/Menu/types.ts +37 -0
  184. package/src/components/Modal/Modal.tsx +132 -0
  185. package/src/components/Modal/ModalConfirmation.tsx +108 -0
  186. package/src/components/Modal/index.ts +2 -0
  187. package/src/components/Modal/types.ts +41 -0
  188. package/src/components/More/More.tsx +38 -0
  189. package/src/components/More/index.ts +1 -0
  190. package/src/components/More/types.ts +11 -0
  191. package/src/components/Pagination/Pagination.tsx +50 -0
  192. package/src/components/Pagination/consts.ts +9 -0
  193. package/src/components/Pagination/index.ts +1 -0
  194. package/src/components/Pagination/types.ts +16 -0
  195. package/src/components/Popover/Popover.tsx +89 -0
  196. package/src/components/Popover/index.ts +1 -0
  197. package/src/components/Popover/types.ts +22 -0
  198. package/src/components/Progress/Progress.tsx +67 -0
  199. package/src/components/Progress/index.ts +1 -0
  200. package/src/components/Progress/types.ts +11 -0
  201. package/src/components/ProgressStep/ProgressStep.tsx +36 -0
  202. package/src/components/ProgressStep/Step.tsx +96 -0
  203. package/src/components/ProgressStep/consts.ts +6 -0
  204. package/src/components/ProgressStep/index.ts +1 -0
  205. package/src/components/ProgressStep/types.ts +34 -0
  206. package/src/components/Radio/Radio.tsx +64 -0
  207. package/src/components/Radio/RadioGroup.tsx +74 -0
  208. package/src/components/Radio/index.ts +2 -0
  209. package/src/components/Radio/types.ts +31 -0
  210. package/src/components/SVGIcons/IconAdd.tsx +35 -0
  211. package/src/components/SVGIcons/IconAddCircle.tsx +38 -0
  212. package/src/components/SVGIcons/IconAddCircleFilled.tsx +38 -0
  213. package/src/components/SVGIcons/IconAddFilled.tsx +35 -0
  214. package/src/components/SVGIcons/IconAlert.tsx +38 -0
  215. package/src/components/SVGIcons/IconAlertBadge.tsx +38 -0
  216. package/src/components/SVGIcons/IconAlertBadgeFilled.tsx +38 -0
  217. package/src/components/SVGIcons/IconAlertFilled.tsx +38 -0
  218. package/src/components/SVGIcons/IconAm.tsx +46 -0
  219. package/src/components/SVGIcons/IconAmd.tsx +35 -0
  220. package/src/components/SVGIcons/IconAmdFilled.tsx +35 -0
  221. package/src/components/SVGIcons/IconApple.tsx +38 -0
  222. package/src/components/SVGIcons/IconArrowDown.tsx +38 -0
  223. package/src/components/SVGIcons/IconArrowDownFilled.tsx +38 -0
  224. package/src/components/SVGIcons/IconArrowDownLeft.tsx +38 -0
  225. package/src/components/SVGIcons/IconArrowDownLeftFilled.tsx +38 -0
  226. package/src/components/SVGIcons/IconArrowDownload.tsx +38 -0
  227. package/src/components/SVGIcons/IconArrowDownloadFilled.tsx +38 -0
  228. package/src/components/SVGIcons/IconArrowEnter.tsx +35 -0
  229. package/src/components/SVGIcons/IconArrowEnterFilled.tsx +35 -0
  230. package/src/components/SVGIcons/IconArrowExit.tsx +35 -0
  231. package/src/components/SVGIcons/IconArrowExitFilled.tsx +35 -0
  232. package/src/components/SVGIcons/IconArrowExportLeftToRight.tsx +38 -0
  233. package/src/components/SVGIcons/IconArrowExportLeftToRightFilled.tsx +38 -0
  234. package/src/components/SVGIcons/IconArrowExportRightToLeft.tsx +38 -0
  235. package/src/components/SVGIcons/IconArrowExportRightToLeftFilled.tsx +38 -0
  236. package/src/components/SVGIcons/IconArrowExportUp.tsx +38 -0
  237. package/src/components/SVGIcons/IconArrowExportUpFilled.tsx +38 -0
  238. package/src/components/SVGIcons/IconArrowImport.tsx +38 -0
  239. package/src/components/SVGIcons/IconArrowImportFilled.tsx +38 -0
  240. package/src/components/SVGIcons/IconArrowLeft.tsx +38 -0
  241. package/src/components/SVGIcons/IconArrowLeftFilled.tsx +38 -0
  242. package/src/components/SVGIcons/IconArrowRepeatAll.tsx +38 -0
  243. package/src/components/SVGIcons/IconArrowRepeatAllFilled.tsx +38 -0
  244. package/src/components/SVGIcons/IconArrowReset.tsx +38 -0
  245. package/src/components/SVGIcons/IconArrowResetFilled.tsx +38 -0
  246. package/src/components/SVGIcons/IconArrowRight.tsx +38 -0
  247. package/src/components/SVGIcons/IconArrowRightFilled.tsx +38 -0
  248. package/src/components/SVGIcons/IconArrowSort.tsx +35 -0
  249. package/src/components/SVGIcons/IconArrowSortFilled.tsx +35 -0
  250. package/src/components/SVGIcons/IconArrowSync.tsx +35 -0
  251. package/src/components/SVGIcons/IconArrowSyncFilled.tsx +35 -0
  252. package/src/components/SVGIcons/IconArrowUp.tsx +38 -0
  253. package/src/components/SVGIcons/IconArrowUpFilled.tsx +38 -0
  254. package/src/components/SVGIcons/IconArrowUpLeft.tsx +38 -0
  255. package/src/components/SVGIcons/IconArrowUpLeftFilled.tsx +38 -0
  256. package/src/components/SVGIcons/IconArrowUpRight.tsx +38 -0
  257. package/src/components/SVGIcons/IconArrowUpRightFilled.tsx +38 -0
  258. package/src/components/SVGIcons/IconAttach.tsx +38 -0
  259. package/src/components/SVGIcons/IconAttachFilled.tsx +38 -0
  260. package/src/components/SVGIcons/IconBeach.tsx +35 -0
  261. package/src/components/SVGIcons/IconBeachFilled.tsx +35 -0
  262. package/src/components/SVGIcons/IconBook.tsx +38 -0
  263. package/src/components/SVGIcons/IconBookFilled.tsx +38 -0
  264. package/src/components/SVGIcons/IconBookmark.tsx +38 -0
  265. package/src/components/SVGIcons/IconBookmarkFilled.tsx +38 -0
  266. package/src/components/SVGIcons/IconBriefcase.tsx +38 -0
  267. package/src/components/SVGIcons/IconBriefcaseFilled.tsx +38 -0
  268. package/src/components/SVGIcons/IconBuilding.tsx +55 -0
  269. package/src/components/SVGIcons/IconBuildingBank.tsx +35 -0
  270. package/src/components/SVGIcons/IconBuildingBankFilled.tsx +35 -0
  271. package/src/components/SVGIcons/IconBuildingFilled.tsx +38 -0
  272. package/src/components/SVGIcons/IconBulletListAdd.tsx +38 -0
  273. package/src/components/SVGIcons/IconBulletListAddFilled.tsx +38 -0
  274. package/src/components/SVGIcons/IconCalculator.tsx +38 -0
  275. package/src/components/SVGIcons/IconCalculatorFilled.tsx +38 -0
  276. package/src/components/SVGIcons/IconCalendarClock.tsx +35 -0
  277. package/src/components/SVGIcons/IconCalendarClockFilled.tsx +35 -0
  278. package/src/components/SVGIcons/IconCalendarDay.tsx +38 -0
  279. package/src/components/SVGIcons/IconCalendarDayFilled.tsx +38 -0
  280. package/src/components/SVGIcons/IconCalendarLeft.tsx +35 -0
  281. package/src/components/SVGIcons/IconCalendarLeftFilled.tsx +35 -0
  282. package/src/components/SVGIcons/IconCalendarRight.tsx +35 -0
  283. package/src/components/SVGIcons/IconCalendarRightFilled.tsx +35 -0
  284. package/src/components/SVGIcons/IconCall.tsx +38 -0
  285. package/src/components/SVGIcons/IconCallFilled.tsx +38 -0
  286. package/src/components/SVGIcons/IconCard.tsx +35 -0
  287. package/src/components/SVGIcons/IconCardFilled.tsx +35 -0
  288. package/src/components/SVGIcons/IconCaretDown.tsx +35 -0
  289. package/src/components/SVGIcons/IconCaretDownFilled.tsx +35 -0
  290. package/src/components/SVGIcons/IconCaretDownRight.tsx +35 -0
  291. package/src/components/SVGIcons/IconCaretDownRightFilled.tsx +35 -0
  292. package/src/components/SVGIcons/IconCaretLeft.tsx +35 -0
  293. package/src/components/SVGIcons/IconCaretLeftFilled.tsx +35 -0
  294. package/src/components/SVGIcons/IconCaretRight.tsx +35 -0
  295. package/src/components/SVGIcons/IconCaretRightFilled.tsx +35 -0
  296. package/src/components/SVGIcons/IconCaretUp.tsx +35 -0
  297. package/src/components/SVGIcons/IconCaretUpFilled.tsx +35 -0
  298. package/src/components/SVGIcons/IconChat.tsx +35 -0
  299. package/src/components/SVGIcons/IconChatFilled.tsx +35 -0
  300. package/src/components/SVGIcons/IconChatMultiple.tsx +35 -0
  301. package/src/components/SVGIcons/IconChatMultipleFilled.tsx +35 -0
  302. package/src/components/SVGIcons/IconCheckboxArrowRight.tsx +38 -0
  303. package/src/components/SVGIcons/IconCheckboxArrowRightFilled.tsx +38 -0
  304. package/src/components/SVGIcons/IconCheckmark.tsx +35 -0
  305. package/src/components/SVGIcons/IconCheckmarkCircle.tsx +35 -0
  306. package/src/components/SVGIcons/IconCheckmarkCircleFilled.tsx +35 -0
  307. package/src/components/SVGIcons/IconCheckmarkFilled.tsx +35 -0
  308. package/src/components/SVGIcons/IconChevronDown.tsx +35 -0
  309. package/src/components/SVGIcons/IconChevronDownFilled.tsx +35 -0
  310. package/src/components/SVGIcons/IconChevronLeft.tsx +35 -0
  311. package/src/components/SVGIcons/IconChevronLeftFilled.tsx +35 -0
  312. package/src/components/SVGIcons/IconChevronRight.tsx +35 -0
  313. package/src/components/SVGIcons/IconChevronRightFilled.tsx +35 -0
  314. package/src/components/SVGIcons/IconChevronUp.tsx +35 -0
  315. package/src/components/SVGIcons/IconChevronUpDown.tsx +38 -0
  316. package/src/components/SVGIcons/IconChevronUpDownFilled.tsx +38 -0
  317. package/src/components/SVGIcons/IconChevronUpFilled.tsx +35 -0
  318. package/src/components/SVGIcons/IconClock.tsx +38 -0
  319. package/src/components/SVGIcons/IconClockDismiss.tsx +35 -0
  320. package/src/components/SVGIcons/IconClockDismissFilled.tsx +35 -0
  321. package/src/components/SVGIcons/IconClockFilled.tsx +38 -0
  322. package/src/components/SVGIcons/IconComment.tsx +38 -0
  323. package/src/components/SVGIcons/IconCommentFilled.tsx +38 -0
  324. package/src/components/SVGIcons/IconContractCard.tsx +35 -0
  325. package/src/components/SVGIcons/IconContractCardFilled.tsx +35 -0
  326. package/src/components/SVGIcons/IconCopy.tsx +35 -0
  327. package/src/components/SVGIcons/IconCopyFilled.tsx +35 -0
  328. package/src/components/SVGIcons/IconCubeTree.tsx +35 -0
  329. package/src/components/SVGIcons/IconCubeTreeFilled.tsx +38 -0
  330. package/src/components/SVGIcons/IconDatabase.tsx +38 -0
  331. package/src/components/SVGIcons/IconDatabaseFilled.tsx +38 -0
  332. package/src/components/SVGIcons/IconDelete.tsx +35 -0
  333. package/src/components/SVGIcons/IconDeleteFilled.tsx +35 -0
  334. package/src/components/SVGIcons/IconDeviceMeetingRoom.tsx +35 -0
  335. package/src/components/SVGIcons/IconDeviceMeetingRoomFilled.tsx +35 -0
  336. package/src/components/SVGIcons/IconDismiss.tsx +35 -0
  337. package/src/components/SVGIcons/IconDismissCircle.tsx +38 -0
  338. package/src/components/SVGIcons/IconDismissCircleFilled.tsx +38 -0
  339. package/src/components/SVGIcons/IconDismissFilled.tsx +35 -0
  340. package/src/components/SVGIcons/IconDocument.tsx +35 -0
  341. package/src/components/SVGIcons/IconDocumentBulletList.tsx +38 -0
  342. package/src/components/SVGIcons/IconDocumentBulletListFilled.tsx +38 -0
  343. package/src/components/SVGIcons/IconDocumentEdit.tsx +35 -0
  344. package/src/components/SVGIcons/IconDocumentEditFilled.tsx +35 -0
  345. package/src/components/SVGIcons/IconDocumentFilled.tsx +35 -0
  346. package/src/components/SVGIcons/IconEdit.tsx +35 -0
  347. package/src/components/SVGIcons/IconEditFilled.tsx +35 -0
  348. package/src/components/SVGIcons/IconErrorCircle.tsx +35 -0
  349. package/src/components/SVGIcons/IconErrorCircleFilled.tsx +35 -0
  350. package/src/components/SVGIcons/IconEur.tsx +35 -0
  351. package/src/components/SVGIcons/IconEurFilled.tsx +35 -0
  352. package/src/components/SVGIcons/IconExpandUpLeft.tsx +38 -0
  353. package/src/components/SVGIcons/IconExpandUpLeftFilled.tsx +38 -0
  354. package/src/components/SVGIcons/IconExpandUpRight.tsx +38 -0
  355. package/src/components/SVGIcons/IconExpandUpRightFilled.tsx +38 -0
  356. package/src/components/SVGIcons/IconEyeOff.tsx +38 -0
  357. package/src/components/SVGIcons/IconEyeOffFilled.tsx +38 -0
  358. package/src/components/SVGIcons/IconEyeOn.tsx +38 -0
  359. package/src/components/SVGIcons/IconEyeOnFilled.tsx +38 -0
  360. package/src/components/SVGIcons/IconFacebook.tsx +43 -0
  361. package/src/components/SVGIcons/IconFilter.tsx +35 -0
  362. package/src/components/SVGIcons/IconFilterFilled.tsx +35 -0
  363. package/src/components/SVGIcons/IconFlag.tsx +38 -0
  364. package/src/components/SVGIcons/IconFlagFilled.tsx +38 -0
  365. package/src/components/SVGIcons/IconFolderLink.tsx +35 -0
  366. package/src/components/SVGIcons/IconFolderLinkFilled.tsx +35 -0
  367. package/src/components/SVGIcons/IconGb.tsx +68 -0
  368. package/src/components/SVGIcons/IconGlobe.tsx +35 -0
  369. package/src/components/SVGIcons/IconGlobeFilled.tsx +35 -0
  370. package/src/components/SVGIcons/IconGoogle.tsx +45 -0
  371. package/src/components/SVGIcons/IconHandOpenHeart.tsx +38 -0
  372. package/src/components/SVGIcons/IconHandOpenHeartFilled.tsx +38 -0
  373. package/src/components/SVGIcons/IconHeart.tsx +38 -0
  374. package/src/components/SVGIcons/IconHeartFilled.tsx +38 -0
  375. package/src/components/SVGIcons/IconHistory.tsx +38 -0
  376. package/src/components/SVGIcons/IconHistoryFilled.tsx +38 -0
  377. package/src/components/SVGIcons/IconHome.tsx +38 -0
  378. package/src/components/SVGIcons/IconHomeFilled.tsx +38 -0
  379. package/src/components/SVGIcons/IconImage.tsx +38 -0
  380. package/src/components/SVGIcons/IconImageFilled.tsx +38 -0
  381. package/src/components/SVGIcons/IconInfo.tsx +35 -0
  382. package/src/components/SVGIcons/IconInfoFilled.tsx +35 -0
  383. package/src/components/SVGIcons/IconInstagram.tsx +48 -0
  384. package/src/components/SVGIcons/IconKeyReset.tsx +38 -0
  385. package/src/components/SVGIcons/IconKeyResetFilled.tsx +38 -0
  386. package/src/components/SVGIcons/IconLink.tsx +38 -0
  387. package/src/components/SVGIcons/IconLinkFilled.tsx +38 -0
  388. package/src/components/SVGIcons/IconLinkedin.tsx +38 -0
  389. package/src/components/SVGIcons/IconList.tsx +35 -0
  390. package/src/components/SVGIcons/IconListFilled.tsx +38 -0
  391. package/src/components/SVGIcons/IconLocation.tsx +38 -0
  392. package/src/components/SVGIcons/IconLocationFilled.tsx +38 -0
  393. package/src/components/SVGIcons/IconLockClosed.tsx +38 -0
  394. package/src/components/SVGIcons/IconLockClosedFilled.tsx +38 -0
  395. package/src/components/SVGIcons/IconLockOpen.tsx +38 -0
  396. package/src/components/SVGIcons/IconLockOpenFilled.tsx +38 -0
  397. package/src/components/SVGIcons/IconMail.tsx +38 -0
  398. package/src/components/SVGIcons/IconMailAdd.tsx +38 -0
  399. package/src/components/SVGIcons/IconMailAddFilled.tsx +38 -0
  400. package/src/components/SVGIcons/IconMailArrowForward.tsx +38 -0
  401. package/src/components/SVGIcons/IconMailArrowForwardFilled.tsx +38 -0
  402. package/src/components/SVGIcons/IconMailFilled.tsx +38 -0
  403. package/src/components/SVGIcons/IconMailLink.tsx +38 -0
  404. package/src/components/SVGIcons/IconMailLinkFilled.tsx +38 -0
  405. package/src/components/SVGIcons/IconMedium.tsx +38 -0
  406. package/src/components/SVGIcons/IconMore.tsx +38 -0
  407. package/src/components/SVGIcons/IconMoreFilled.tsx +38 -0
  408. package/src/components/SVGIcons/IconMoreVertical.tsx +38 -0
  409. package/src/components/SVGIcons/IconMoreVerticalFilled.tsx +38 -0
  410. package/src/components/SVGIcons/IconNavigation.tsx +38 -0
  411. package/src/components/SVGIcons/IconNavigationFilled.tsx +38 -0
  412. package/src/components/SVGIcons/IconNotebook.tsx +38 -0
  413. package/src/components/SVGIcons/IconNotebookAdd.tsx +59 -0
  414. package/src/components/SVGIcons/IconNotebookAddFilled.tsx +55 -0
  415. package/src/components/SVGIcons/IconNotebookFilled.tsx +38 -0
  416. package/src/components/SVGIcons/IconOnlyEmployee.tsx +35 -0
  417. package/src/components/SVGIcons/IconOpen.tsx +38 -0
  418. package/src/components/SVGIcons/IconOpenFilled.tsx +38 -0
  419. package/src/components/SVGIcons/IconPatient.tsx +35 -0
  420. package/src/components/SVGIcons/IconPatientFilled.tsx +35 -0
  421. package/src/components/SVGIcons/IconPeople.tsx +35 -0
  422. package/src/components/SVGIcons/IconPeopleAdd.tsx +38 -0
  423. package/src/components/SVGIcons/IconPeopleAddFilled.tsx +38 -0
  424. package/src/components/SVGIcons/IconPeopleFilled.tsx +38 -0
  425. package/src/components/SVGIcons/IconPercent.tsx +40 -0
  426. package/src/components/SVGIcons/IconPerson.tsx +38 -0
  427. package/src/components/SVGIcons/IconPersonAccount.tsx +35 -0
  428. package/src/components/SVGIcons/IconPersonAccountFilled.tsx +35 -0
  429. package/src/components/SVGIcons/IconPersonAdd.tsx +38 -0
  430. package/src/components/SVGIcons/IconPersonAddFilled.tsx +38 -0
  431. package/src/components/SVGIcons/IconPersonFilled.tsx +38 -0
  432. package/src/components/SVGIcons/IconPersonStar.tsx +38 -0
  433. package/src/components/SVGIcons/IconPersonStarFilled.tsx +38 -0
  434. package/src/components/SVGIcons/IconPersonSubtract.tsx +38 -0
  435. package/src/components/SVGIcons/IconPersonSubtractFilled.tsx +38 -0
  436. package/src/components/SVGIcons/IconPhone.tsx +38 -0
  437. package/src/components/SVGIcons/IconPhoneFilled.tsx +38 -0
  438. package/src/components/SVGIcons/IconPos.tsx +40 -0
  439. package/src/components/SVGIcons/IconPosFilled.tsx +40 -0
  440. package/src/components/SVGIcons/IconProhibited.tsx +38 -0
  441. package/src/components/SVGIcons/IconProhibitedFilled.tsx +38 -0
  442. package/src/components/SVGIcons/IconProjectProduct.tsx +35 -0
  443. package/src/components/SVGIcons/IconQuestion.tsx +38 -0
  444. package/src/components/SVGIcons/IconQuestionFilled.tsx +38 -0
  445. package/src/components/SVGIcons/IconRedo.tsx +38 -0
  446. package/src/components/SVGIcons/IconRedoFilled.tsx +38 -0
  447. package/src/components/SVGIcons/IconRu.tsx +63 -0
  448. package/src/components/SVGIcons/IconRub.tsx +35 -0
  449. package/src/components/SVGIcons/IconRubFilled.tsx +35 -0
  450. package/src/components/SVGIcons/IconSave.tsx +38 -0
  451. package/src/components/SVGIcons/IconSaveFilled.tsx +38 -0
  452. package/src/components/SVGIcons/IconSavings.tsx +38 -0
  453. package/src/components/SVGIcons/IconSavingsFilled.tsx +38 -0
  454. package/src/components/SVGIcons/IconSearch.tsx +38 -0
  455. package/src/components/SVGIcons/IconSearchFilled.tsx +38 -0
  456. package/src/components/SVGIcons/IconSelectAllOff.tsx +38 -0
  457. package/src/components/SVGIcons/IconSelectAllOffFilled.tsx +38 -0
  458. package/src/components/SVGIcons/IconSelectAllOn.tsx +38 -0
  459. package/src/components/SVGIcons/IconSelectAllOnFilled.tsx +38 -0
  460. package/src/components/SVGIcons/IconSend.tsx +38 -0
  461. package/src/components/SVGIcons/IconSendFilled.tsx +38 -0
  462. package/src/components/SVGIcons/IconSettings.tsx +35 -0
  463. package/src/components/SVGIcons/IconSettingsFilled.tsx +38 -0
  464. package/src/components/SVGIcons/IconShare.tsx +38 -0
  465. package/src/components/SVGIcons/IconShareAndroid.tsx +38 -0
  466. package/src/components/SVGIcons/IconShareAndroidFilled.tsx +38 -0
  467. package/src/components/SVGIcons/IconShareFilled.tsx +38 -0
  468. package/src/components/SVGIcons/IconSignOut.tsx +38 -0
  469. package/src/components/SVGIcons/IconSignOutFilled.tsx +38 -0
  470. package/src/components/SVGIcons/IconSpinner.tsx +38 -0
  471. package/src/components/SVGIcons/IconSpinnerFilled.tsx +38 -0
  472. package/src/components/SVGIcons/IconStatus.tsx +38 -0
  473. package/src/components/SVGIcons/IconStatusFilled.tsx +38 -0
  474. package/src/components/SVGIcons/IconSubtract.tsx +38 -0
  475. package/src/components/SVGIcons/IconSubtractCircle.tsx +38 -0
  476. package/src/components/SVGIcons/IconSubtractCircleFilled.tsx +38 -0
  477. package/src/components/SVGIcons/IconSubtractFilled.tsx +38 -0
  478. package/src/components/SVGIcons/IconTableCellEdit.tsx +43 -0
  479. package/src/components/SVGIcons/IconTableCellEditFilled.tsx +51 -0
  480. package/src/components/SVGIcons/IconTelegram.tsx +45 -0
  481. package/src/components/SVGIcons/IconTimer.tsx +38 -0
  482. package/src/components/SVGIcons/IconTimerFilled.tsx +38 -0
  483. package/src/components/SVGIcons/IconTwitter.tsx +38 -0
  484. package/src/components/SVGIcons/IconUndo.tsx +38 -0
  485. package/src/components/SVGIcons/IconUndoFilled.tsx +38 -0
  486. package/src/components/SVGIcons/IconUnitsEmployee.tsx +35 -0
  487. package/src/components/SVGIcons/IconUsd.tsx +35 -0
  488. package/src/components/SVGIcons/IconUsdFilled.tsx +35 -0
  489. package/src/components/SVGIcons/IconVideo.tsx +35 -0
  490. package/src/components/SVGIcons/IconVideoFilled.tsx +35 -0
  491. package/src/components/SVGIcons/IconWallet.tsx +38 -0
  492. package/src/components/SVGIcons/IconWalletFilled.tsx +38 -0
  493. package/src/components/SVGIcons/IconWarning.tsx +35 -0
  494. package/src/components/SVGIcons/IconWarningFilled.tsx +35 -0
  495. package/src/components/SVGIcons/IconYoutube.tsx +38 -0
  496. package/src/components/SVGIcons/index.ts +286 -0
  497. package/src/components/SVGIcons/types.ts +38 -0
  498. package/src/components/Select/ButtonSelect/ButtonSelect.tsx +120 -0
  499. package/src/components/Select/FilterSelect/FilterDropdown.tsx +46 -0
  500. package/src/components/Select/FilterSelect/FilterGroupDropdown.tsx +22 -0
  501. package/src/components/Select/FilterSelect/FilterSelect.tsx +138 -0
  502. package/src/components/Select/MultiSelect/MultiBase/MultiBase.tsx +162 -0
  503. package/src/components/Select/MultiSelect/MultiSelect.tsx +147 -0
  504. package/src/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.tsx +219 -0
  505. package/src/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.tsx +177 -0
  506. package/src/components/Select/MultiSelect/OptionsWrapper.tsx +128 -0
  507. package/src/components/Select/NestedSelect/NestedSelect.tsx +124 -0
  508. package/src/components/Select/ProfileDropdown/index.tsx +90 -0
  509. package/src/components/Select/ProfileDropdown/styles.scss +47 -0
  510. package/src/components/Select/Select/Select.tsx +268 -0
  511. package/src/components/Select/SharedComponents/Actions.tsx +42 -0
  512. package/src/components/Select/SharedComponents/ButtonSelectWrapper/Button/Button.tsx +52 -0
  513. package/src/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.tsx +100 -0
  514. package/src/components/Select/SharedComponents/ContentTop.tsx +123 -0
  515. package/src/components/Select/SharedComponents/Footer.tsx +35 -0
  516. package/src/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.tsx +137 -0
  517. package/src/components/Select/SharedComponents/Loading.tsx +15 -0
  518. package/src/components/Select/SharedComponents/index.ts +6 -0
  519. package/src/components/Select/constants.ts +10 -0
  520. package/src/components/Select/index.ts +6 -0
  521. package/src/components/Select/types.ts +240 -0
  522. package/src/components/SideNavigation/Block.tsx +19 -0
  523. package/src/components/SideNavigation/NavigationItem/index.tsx +93 -0
  524. package/src/components/SideNavigation/NavigationItem/types.ts +26 -0
  525. package/src/components/SideNavigation/SideNavigation.tsx +46 -0
  526. package/src/components/SideNavigation/index.ts +2 -0
  527. package/src/components/SideNavigation/types.ts +19 -0
  528. package/src/components/SideSheet/Footer/Footer.tsx +59 -0
  529. package/src/components/SideSheet/SideSheet.tsx +168 -0
  530. package/src/components/SideSheet/index.ts +1 -0
  531. package/src/components/SideSheet/types.ts +37 -0
  532. package/src/components/Snackbar/Snackbar.tsx +75 -0
  533. package/src/components/Snackbar/consts.ts +17 -0
  534. package/src/components/Snackbar/index.ts +1 -0
  535. package/src/components/Snackbar/types.ts +22 -0
  536. package/src/components/Status/Status.tsx +50 -0
  537. package/src/components/Status/index.ts +1 -0
  538. package/src/components/Status/types.ts +24 -0
  539. package/src/components/Stepper/Stepper.tsx +45 -0
  540. package/src/components/Stepper/index.ts +1 -0
  541. package/src/components/Stepper/types.ts +15 -0
  542. package/src/components/Switcher/Switcher.tsx +75 -0
  543. package/src/components/Switcher/index.ts +1 -0
  544. package/src/components/Switcher/types.ts +11 -0
  545. package/src/components/Tab/Tab.tsx +29 -0
  546. package/src/components/Tab/TabItem.tsx +61 -0
  547. package/src/components/Tab/index.ts +1 -0
  548. package/src/components/Tab/types.ts +51 -0
  549. package/src/components/Table/Header.tsx +86 -0
  550. package/src/components/Table/IndeterminateCheckbox.tsx +31 -0
  551. package/src/components/Table/Row.tsx +48 -0
  552. package/src/components/Table/Table.tsx +134 -0
  553. package/src/components/Table/index.ts +1 -0
  554. package/src/components/Table/types.ts +45 -0
  555. package/src/components/Table/utils.tsx +27 -0
  556. package/src/components/Text/Text.tsx +38 -0
  557. package/src/components/Text/index.ts +1 -0
  558. package/src/components/Text/types.ts +33 -0
  559. package/src/components/Textarea/Textarea.tsx +100 -0
  560. package/src/components/Textarea/index.ts +1 -0
  561. package/src/components/Textarea/types.ts +17 -0
  562. package/src/components/Tooltip/Tooltip.tsx +88 -0
  563. package/src/components/Tooltip/index.ts +1 -0
  564. package/src/components/Tooltip/types.ts +23 -0
  565. package/src/consts/index.ts +85 -0
  566. package/src/context/FormContextProvider.tsx +12 -0
  567. package/src/context/index.ts +2 -0
  568. package/src/context/types.ts +41 -0
  569. package/src/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.tsx +19 -0
  570. package/src/helperComponents/AnimatePresenceWrapper/index.ts +1 -0
  571. package/src/helperComponents/CodeBlock/CodeBlock.tsx +20 -0
  572. package/src/helperComponents/CodeBlock/index.ts +2 -0
  573. package/src/helperComponents/ErrorMessage/ErrorMessage.tsx +23 -0
  574. package/src/helperComponents/ErrorMessage/index.ts +1 -0
  575. package/src/helperComponents/ErrorMessage/types.ts +6 -0
  576. package/src/helperComponents/IconDynamicComponent/IconDynamicComponent.tsx +31 -0
  577. package/src/helperComponents/IconDynamicComponent/constants.ts +16 -0
  578. package/src/helperComponents/IconDynamicComponent/index.ts +1 -0
  579. package/src/helperComponents/Label/Label.tsx +31 -0
  580. package/src/helperComponents/Label/index.ts +1 -0
  581. package/src/helperComponents/Label/types.ts +12 -0
  582. package/src/helperComponents/Loader/Loader.tsx +11 -0
  583. package/src/helperComponents/Loader/index.ts +1 -0
  584. package/src/helperComponents/Loader/types.ts +4 -0
  585. package/src/helperComponents/OptionItem/OptionItem.tsx +98 -0
  586. package/src/helperComponents/OptionItem/index.ts +1 -0
  587. package/src/helperComponents/OptionItem/types.ts +18 -0
  588. package/src/helperComponents/index.ts +6 -0
  589. package/src/hooks/index.ts +12 -0
  590. package/src/hooks/useChangePositionsOnScroll.tsx +37 -0
  591. package/src/hooks/useDispatchEventOnScroll.tsx +10 -0
  592. package/src/hooks/useFieldArray.ts +1 -0
  593. package/src/hooks/useFormContext.ts +14 -0
  594. package/src/hooks/useFormProps.ts +6 -0
  595. package/src/hooks/useGetElemPositions.ts +28 -0
  596. package/src/hooks/useGetElemSizes.ts +29 -0
  597. package/src/hooks/useGetHasBottomSpace.ts +35 -0
  598. package/src/hooks/useGetTooltipPosition.ts +81 -0
  599. package/src/hooks/useGetTooltipStyles.ts +71 -0
  600. package/src/hooks/useHideBodyScroll.ts +29 -0
  601. package/src/hooks/useHideOnScroll.ts +24 -0
  602. package/src/hooks/useOnOutsideClick.ts +58 -0
  603. package/src/hooks/useScreenSize.ts +36 -0
  604. package/src/index.ts +53 -0
  605. package/src/stories/Alert.stories.tsx +42 -0
  606. package/src/stories/Avatar.stories.tsx +100 -0
  607. package/src/stories/Badge.stories.tsx +29 -0
  608. package/src/stories/Breadcrumb.stories.tsx +37 -0
  609. package/src/stories/Button.stories.tsx +74 -0
  610. package/src/stories/ButtonIcon.stories.tsx +52 -0
  611. package/src/stories/CardBody.stories.tsx +32 -0
  612. package/src/stories/CardSelect.stories.tsx +192 -0
  613. package/src/stories/Cards.stories.tsx +42 -0
  614. package/src/stories/Checkbox.stories.tsx +40 -0
  615. package/src/stories/Chips.stories.tsx +40 -0
  616. package/src/stories/Collapse.stories.tsx +69 -0
  617. package/src/stories/Container.stories.tsx +28 -0
  618. package/src/stories/Copy.stories.tsx +18 -0
  619. package/src/stories/Counter.stories.tsx +27 -0
  620. package/src/stories/DatePicker.stories.tsx +99 -0
  621. package/src/stories/Divider.stories.tsx +30 -0
  622. package/src/stories/Empty.stories.tsx +33 -0
  623. package/src/stories/FileUpload.stories.tsx +43 -0
  624. package/src/stories/Form.stories.tsx +188 -0
  625. package/src/stories/Heading.stories.tsx +42 -0
  626. package/src/stories/Image.stories.tsx +44 -0
  627. package/src/stories/Input.stories.tsx +71 -0
  628. package/src/stories/ItemSelect.stories.tsx +94 -0
  629. package/src/stories/Link.stories.tsx +21 -0
  630. package/src/stories/Menu.stories.tsx +178 -0
  631. package/src/stories/Modal.stories.tsx +93 -0
  632. package/src/stories/More.stories.tsx +27 -0
  633. package/src/stories/NavigationItem.stories.tsx +24 -0
  634. package/src/stories/Pagination.stories.tsx +34 -0
  635. package/src/stories/Popover.stories.tsx +55 -0
  636. package/src/stories/Progress.stories.tsx +33 -0
  637. package/src/stories/ProgressStep.stories.tsx +84 -0
  638. package/src/stories/Radio.stories.tsx +57 -0
  639. package/src/stories/SVGIcons.stories.tsx +75 -0
  640. package/src/stories/Select.stories.tsx +600 -0
  641. package/src/stories/SideNavigation.stories.tsx +252 -0
  642. package/src/stories/SideSheet.stories.tsx +346 -0
  643. package/src/stories/Snackbar.stories.tsx +72 -0
  644. package/src/stories/Status.stories.tsx +71 -0
  645. package/src/stories/Stepper.stories.tsx +28 -0
  646. package/src/stories/Switcher.stories.tsx +32 -0
  647. package/src/stories/Tab.stories.tsx +77 -0
  648. package/src/stories/Table.stories.tsx +96 -0
  649. package/src/stories/Text.stories.tsx +62 -0
  650. package/src/stories/Textarea.stories.tsx +37 -0
  651. package/src/stories/Tooltip.stories.tsx +60 -0
  652. package/src/types.d.ts +192 -0
  653. package/src/utils/helpers.ts +94 -0
  654. package/svg-icons/add-circle-filled.svg +5 -0
  655. package/svg-icons/add-circle.svg +5 -0
  656. package/svg-icons/add-filled.svg +3 -0
  657. package/svg-icons/add.svg +3 -0
  658. package/svg-icons/alert-badge-filled.svg +5 -0
  659. package/svg-icons/alert-badge.svg +5 -0
  660. package/svg-icons/alert-filled.svg +5 -0
  661. package/svg-icons/alert.svg +5 -0
  662. package/svg-icons/am.svg +11 -0
  663. package/svg-icons/amd-filled.svg +3 -0
  664. package/svg-icons/amd.svg +3 -0
  665. package/svg-icons/apple.svg +5 -0
  666. package/svg-icons/arrow-down-filled.svg +5 -0
  667. package/svg-icons/arrow-down-left-filled.svg +5 -0
  668. package/svg-icons/arrow-down-left.svg +5 -0
  669. package/svg-icons/arrow-down.svg +5 -0
  670. package/svg-icons/arrow-download-filled.svg +5 -0
  671. package/svg-icons/arrow-download.svg +5 -0
  672. package/svg-icons/arrow-enter-filled.svg +3 -0
  673. package/svg-icons/arrow-enter.svg +3 -0
  674. package/svg-icons/arrow-exit-filled.svg +3 -0
  675. package/svg-icons/arrow-exit.svg +3 -0
  676. package/svg-icons/arrow-export-left-to-right-filled.svg +5 -0
  677. package/svg-icons/arrow-export-left-to-right.svg +5 -0
  678. package/svg-icons/arrow-export-right-to-left-filled.svg +5 -0
  679. package/svg-icons/arrow-export-right-to-left.svg +5 -0
  680. package/svg-icons/arrow-export-up-filled.svg +5 -0
  681. package/svg-icons/arrow-export-up.svg +5 -0
  682. package/svg-icons/arrow-import-filled.svg +5 -0
  683. package/svg-icons/arrow-import.svg +5 -0
  684. package/svg-icons/arrow-left-filled.svg +5 -0
  685. package/svg-icons/arrow-left.svg +5 -0
  686. package/svg-icons/arrow-repeat-all-filled.svg +5 -0
  687. package/svg-icons/arrow-repeat-all.svg +5 -0
  688. package/svg-icons/arrow-reset-filled.svg +5 -0
  689. package/svg-icons/arrow-reset.svg +5 -0
  690. package/svg-icons/arrow-right-filled.svg +5 -0
  691. package/svg-icons/arrow-right.svg +5 -0
  692. package/svg-icons/arrow-sort-filled.svg +3 -0
  693. package/svg-icons/arrow-sort.svg +3 -0
  694. package/svg-icons/arrow-sync-filled.svg +3 -0
  695. package/svg-icons/arrow-sync.svg +3 -0
  696. package/svg-icons/arrow-up-filled.svg +5 -0
  697. package/svg-icons/arrow-up-left-filled.svg +5 -0
  698. package/svg-icons/arrow-up-left.svg +5 -0
  699. package/svg-icons/arrow-up-right-filled.svg +5 -0
  700. package/svg-icons/arrow-up-right.svg +5 -0
  701. package/svg-icons/arrow-up.svg +5 -0
  702. package/svg-icons/attach-filled.svg +5 -0
  703. package/svg-icons/attach.svg +5 -0
  704. package/svg-icons/beach-filled.svg +3 -0
  705. package/svg-icons/beach.svg +3 -0
  706. package/svg-icons/book-filled.svg +5 -0
  707. package/svg-icons/book.svg +5 -0
  708. package/svg-icons/bookmark-filled.svg +5 -0
  709. package/svg-icons/bookmark.svg +5 -0
  710. package/svg-icons/briefcase-filled.svg +5 -0
  711. package/svg-icons/briefcase.svg +5 -0
  712. package/svg-icons/building-bank-filled.svg +3 -0
  713. package/svg-icons/building-bank.svg +3 -0
  714. package/svg-icons/building-filled.svg +5 -0
  715. package/svg-icons/building.svg +14 -0
  716. package/svg-icons/bullet-list-add-filled.svg +5 -0
  717. package/svg-icons/bullet-list-add.svg +5 -0
  718. package/svg-icons/calculator-filled.svg +5 -0
  719. package/svg-icons/calculator.svg +5 -0
  720. package/svg-icons/calendar-clock-filled.svg +3 -0
  721. package/svg-icons/calendar-clock.svg +3 -0
  722. package/svg-icons/calendar-day-filled.svg +5 -0
  723. package/svg-icons/calendar-day.svg +5 -0
  724. package/svg-icons/calendar-left-filled.svg +3 -0
  725. package/svg-icons/calendar-left.svg +3 -0
  726. package/svg-icons/calendar-right-filled.svg +3 -0
  727. package/svg-icons/calendar-right.svg +3 -0
  728. package/svg-icons/call-filled.svg +5 -0
  729. package/svg-icons/call.svg +5 -0
  730. package/svg-icons/card-filled.svg +3 -0
  731. package/svg-icons/card.svg +3 -0
  732. package/svg-icons/caret-down-filled.svg +3 -0
  733. package/svg-icons/caret-down-right-filled.svg +3 -0
  734. package/svg-icons/caret-down-right.svg +3 -0
  735. package/svg-icons/caret-down.svg +3 -0
  736. package/svg-icons/caret-left-filled.svg +3 -0
  737. package/svg-icons/caret-left.svg +3 -0
  738. package/svg-icons/caret-right-filled.svg +3 -0
  739. package/svg-icons/caret-right.svg +3 -0
  740. package/svg-icons/caret-up-filled.svg +3 -0
  741. package/svg-icons/caret-up.svg +3 -0
  742. package/svg-icons/chat-filled.svg +3 -0
  743. package/svg-icons/chat-multiple-filled.svg +3 -0
  744. package/svg-icons/chat-multiple.svg +3 -0
  745. package/svg-icons/chat.svg +3 -0
  746. package/svg-icons/checkbox-arrow-right-filled.svg +5 -0
  747. package/svg-icons/checkbox-arrow-right.svg +5 -0
  748. package/svg-icons/checkmark-circle-filled.svg +3 -0
  749. package/svg-icons/checkmark-circle.svg +3 -0
  750. package/svg-icons/checkmark-filled.svg +3 -0
  751. package/svg-icons/checkmark.svg +3 -0
  752. package/svg-icons/chevron-down.svg +3 -0
  753. package/svg-icons/chevron-left.svg +3 -0
  754. package/svg-icons/chevron-right.svg +3 -0
  755. package/svg-icons/chevron-up-down-filled.svg +5 -0
  756. package/svg-icons/chevron-up-down.svg +5 -0
  757. package/svg-icons/chevron-up.svg +3 -0
  758. package/svg-icons/clock-filled.svg +5 -0
  759. package/svg-icons/clock.svg +5 -0
  760. package/svg-icons/comment-filled.svg +5 -0
  761. package/svg-icons/comment.svg +5 -0
  762. package/svg-icons/contract-card-filled.svg +3 -0
  763. package/svg-icons/contract-card.svg +3 -0
  764. package/svg-icons/copy.svg +3 -0
  765. package/svg-icons/cube-tree-filled.svg +5 -0
  766. package/svg-icons/cube-tree.svg +3 -0
  767. package/svg-icons/database-filled.svg +5 -0
  768. package/svg-icons/database.svg +5 -0
  769. package/svg-icons/delete-filled.svg +3 -0
  770. package/svg-icons/delete.svg +3 -0
  771. package/svg-icons/device-meeting-room-filled.svg +3 -0
  772. package/svg-icons/device-meeting-room.svg +3 -0
  773. package/svg-icons/dismiss-circle-filled.svg +5 -0
  774. package/svg-icons/dismiss-circle.svg +5 -0
  775. package/svg-icons/dismiss-filled.svg +3 -0
  776. package/svg-icons/dismiss.svg +3 -0
  777. package/svg-icons/document-bullet-list-filled.svg +5 -0
  778. package/svg-icons/document-bullet-list.svg +5 -0
  779. package/svg-icons/document-edit-filled.svg +3 -0
  780. package/svg-icons/document-edit.svg +3 -0
  781. package/svg-icons/document-filled.svg +3 -0
  782. package/svg-icons/document.svg +3 -0
  783. package/svg-icons/edit-filled.svg +3 -0
  784. package/svg-icons/edit.svg +4 -0
  785. package/svg-icons/error-circle-filled.svg +3 -0
  786. package/svg-icons/error-circle.svg +3 -0
  787. package/svg-icons/eur-filled.svg +3 -0
  788. package/svg-icons/eur.svg +3 -0
  789. package/svg-icons/expand-up-left-filled.svg +5 -0
  790. package/svg-icons/expand-up-left.svg +5 -0
  791. package/svg-icons/expand-up-right-filled.svg +5 -0
  792. package/svg-icons/expand-up-right.svg +5 -0
  793. package/svg-icons/eye-off-filled.svg +5 -0
  794. package/svg-icons/eye-off.svg +5 -0
  795. package/svg-icons/eye-on-filled.svg +5 -0
  796. package/svg-icons/eye-on.svg +5 -0
  797. package/svg-icons/facebook.svg +10 -0
  798. package/svg-icons/filter-filled.svg +3 -0
  799. package/svg-icons/filter.svg +3 -0
  800. package/svg-icons/flag-filled.svg +5 -0
  801. package/svg-icons/flag.svg +5 -0
  802. package/svg-icons/folder-link-filled.svg +3 -0
  803. package/svg-icons/folder-link.svg +3 -0
  804. package/svg-icons/gb.svg +15 -0
  805. package/svg-icons/globe-filled.svg +3 -0
  806. package/svg-icons/globe.svg +3 -0
  807. package/svg-icons/google.svg +10 -0
  808. package/svg-icons/hand-open-heart-filled.svg +5 -0
  809. package/svg-icons/hand-open-heart.svg +5 -0
  810. package/svg-icons/heart-filled.svg +5 -0
  811. package/svg-icons/heart.svg +5 -0
  812. package/svg-icons/history-filled.svg +5 -0
  813. package/svg-icons/history.svg +5 -0
  814. package/svg-icons/home-filled.svg +5 -0
  815. package/svg-icons/home.svg +5 -0
  816. package/svg-icons/image-filled.svg +5 -0
  817. package/svg-icons/image.svg +5 -0
  818. package/svg-icons/info-filled.svg +3 -0
  819. package/svg-icons/info.svg +3 -0
  820. package/svg-icons/instagram.svg +7 -0
  821. package/svg-icons/key-reset-filled.svg +5 -0
  822. package/svg-icons/key-reset.svg +5 -0
  823. package/svg-icons/link-filled.svg +5 -0
  824. package/svg-icons/link.svg +5 -0
  825. package/svg-icons/linkedin.svg +5 -0
  826. package/svg-icons/list-filled.svg +5 -0
  827. package/svg-icons/list.svg +3 -0
  828. package/svg-icons/location-filled.svg +5 -0
  829. package/svg-icons/location.svg +5 -0
  830. package/svg-icons/lock-closed-filled.svg +5 -0
  831. package/svg-icons/lock-closed.svg +5 -0
  832. package/svg-icons/lock-open-filled.svg +5 -0
  833. package/svg-icons/lock-open.svg +5 -0
  834. package/svg-icons/mail-add-filled.svg +5 -0
  835. package/svg-icons/mail-add.svg +5 -0
  836. package/svg-icons/mail-arrow-forward-filled.svg +5 -0
  837. package/svg-icons/mail-arrow-forward.svg +5 -0
  838. package/svg-icons/mail-filled.svg +5 -0
  839. package/svg-icons/mail-link-filled.svg +5 -0
  840. package/svg-icons/mail-link.svg +5 -0
  841. package/svg-icons/mail.svg +5 -0
  842. package/svg-icons/medium.svg +5 -0
  843. package/svg-icons/more-filled.svg +5 -0
  844. package/svg-icons/more-vertical-filled.svg +5 -0
  845. package/svg-icons/more-vertical.svg +5 -0
  846. package/svg-icons/more.svg +5 -0
  847. package/svg-icons/navigation-filled.svg +5 -0
  848. package/svg-icons/navigation.svg +5 -0
  849. package/svg-icons/notebook-add-filled.svg +11 -0
  850. package/svg-icons/notebook-add.svg +12 -0
  851. package/svg-icons/notebook-filled.svg +5 -0
  852. package/svg-icons/notebook.svg +5 -0
  853. package/svg-icons/only-employee.svg +3 -0
  854. package/svg-icons/open-filled.svg +5 -0
  855. package/svg-icons/open.svg +5 -0
  856. package/svg-icons/patient-filled.svg +3 -0
  857. package/svg-icons/patient.svg +3 -0
  858. package/svg-icons/people-add-filled.svg +5 -0
  859. package/svg-icons/people-add.svg +5 -0
  860. package/svg-icons/people-filled.svg +5 -0
  861. package/svg-icons/people.svg +3 -0
  862. package/svg-icons/percent.svg +5 -0
  863. package/svg-icons/person-account-filled.svg +3 -0
  864. package/svg-icons/person-account.svg +3 -0
  865. package/svg-icons/person-add-filled.svg +5 -0
  866. package/svg-icons/person-add.svg +5 -0
  867. package/svg-icons/person-filled.svg +5 -0
  868. package/svg-icons/person-star-filled.svg +5 -0
  869. package/svg-icons/person-star.svg +5 -0
  870. package/svg-icons/person-subtract-filled.svg +5 -0
  871. package/svg-icons/person-subtract.svg +5 -0
  872. package/svg-icons/person.svg +5 -0
  873. package/svg-icons/phone-filled.svg +5 -0
  874. package/svg-icons/phone.svg +5 -0
  875. package/svg-icons/pos-filled.svg +5 -0
  876. package/svg-icons/pos.svg +5 -0
  877. package/svg-icons/prohibited-filled.svg +5 -0
  878. package/svg-icons/prohibited.svg +5 -0
  879. package/svg-icons/project-product.svg +3 -0
  880. package/svg-icons/question-filled.svg +5 -0
  881. package/svg-icons/question.svg +5 -0
  882. package/svg-icons/redo-filled.svg +5 -0
  883. package/svg-icons/redo.svg +5 -0
  884. package/svg-icons/ru.svg +10 -0
  885. package/svg-icons/rub-filled.svg +3 -0
  886. package/svg-icons/rub.svg +3 -0
  887. package/svg-icons/save-filled.svg +5 -0
  888. package/svg-icons/save.svg +5 -0
  889. package/svg-icons/savings-filled.svg +5 -0
  890. package/svg-icons/savings.svg +5 -0
  891. package/svg-icons/search-filled.svg +5 -0
  892. package/svg-icons/search.svg +5 -0
  893. package/svg-icons/select-all-off-filled.svg +5 -0
  894. package/svg-icons/select-all-off.svg +5 -0
  895. package/svg-icons/select-all-on-filled.svg +5 -0
  896. package/svg-icons/select-all-on.svg +5 -0
  897. package/svg-icons/send-filled.svg +5 -0
  898. package/svg-icons/send.svg +5 -0
  899. package/svg-icons/settings-filled.svg +5 -0
  900. package/svg-icons/settings.svg +3 -0
  901. package/svg-icons/share-android-filled.svg +5 -0
  902. package/svg-icons/share-android.svg +5 -0
  903. package/svg-icons/share-filled.svg +5 -0
  904. package/svg-icons/share.svg +5 -0
  905. package/svg-icons/sign-out-filled.svg +5 -0
  906. package/svg-icons/sign-out.svg +5 -0
  907. package/svg-icons/spinner-filled.svg +5 -0
  908. package/svg-icons/spinner.svg +5 -0
  909. package/svg-icons/status-filled.svg +5 -0
  910. package/svg-icons/status.svg +5 -0
  911. package/svg-icons/subtract-circle-filled.svg +5 -0
  912. package/svg-icons/subtract-circle.svg +5 -0
  913. package/svg-icons/subtract-filled.svg +5 -0
  914. package/svg-icons/subtract.svg +5 -0
  915. package/svg-icons/table-cell-edit-filled.svg +10 -0
  916. package/svg-icons/table-cell-edit.svg +8 -0
  917. package/svg-icons/telegram.svg +10 -0
  918. package/svg-icons/timer-filled.svg +5 -0
  919. package/svg-icons/timer.svg +5 -0
  920. package/svg-icons/twitter.svg +5 -0
  921. package/svg-icons/undo-filled.svg +5 -0
  922. package/svg-icons/undo.svg +5 -0
  923. package/svg-icons/units-employee.svg +3 -0
  924. package/svg-icons/usd-filled.svg +3 -0
  925. package/svg-icons/usd.svg +3 -0
  926. package/svg-icons/video-filled.svg +3 -0
  927. package/svg-icons/video.svg +3 -0
  928. package/svg-icons/wallet-filled.svg +5 -0
  929. package/svg-icons/wallet.svg +5 -0
  930. package/svg-icons/warning-filled.svg +3 -0
  931. package/svg-icons/warning.svg +3 -0
  932. package/svg-icons/youtube.svg +5 -0
  933. package/tsconfig.json +33 -0
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconSavingsFilled = ({
6
+ size,
7
+ type,
8
+ className = '',
9
+ onClick,
10
+ refHandler,
11
+ id,
12
+ dataId
13
+ }: ISVGIconProps): ReactElement => (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ className={classNames('svg-icon', {
17
+ [`svg-icon__size-${size}`]: size,
18
+ [`svg-icon__type-${type}`]: type,
19
+ [className]: className
20
+ })}
21
+ viewBox="0 0 24 24"
22
+ fill="none"
23
+ onClick={onClick}
24
+ ref={refHandler}
25
+ id={id}
26
+ data-id={dataId ? `${dataId}-svg-icon` : ''}
27
+ >
28
+ <g id="Size=24, Theme=Filled">
29
+ <path
30
+ id="Shape"
31
+ d="M18.8225 11.1283C19.7843 10.4718 20.466 9.51181 20.7894 8.43654C20.8886 8.57241 20.9827 8.71346 21.0713 8.85993C21.6755 9.85813 22 11.063 22 12.5001C22 14.706 21.1671 16.2492 20.3194 17.2381C19.899 17.7287 19.4777 18.0802 19.1579 18.3112C19.1021 18.3514 19.0493 18.3881 19 18.4214V20.2501C19 21.2166 18.2165 22.0001 17.25 22.0001H16C15.1716 22.0001 14.5 21.3285 14.5 20.5001H12.5C12.5 21.3285 11.8284 22.0001 11 22.0001H9.75C8.7835 22.0001 8 21.2166 8 20.2501V19.5674C7.86194 19.5209 7.7053 19.4631 7.53573 19.3922C6.93965 19.1427 6.15955 18.7203 5.46967 18.0304C4.68564 17.2464 4.16052 16.4283 3.8651 15.8994C3.77791 15.7433 3.64768 15.66 3.53621 15.6414C2.64973 15.4937 2 14.7267 2 13.828V12.0751C2 11.2324 2.60926 10.5132 3.44051 10.3746C3.52742 10.3601 3.6555 10.2738 3.71651 10.0911C3.90886 9.51484 4.28209 8.6573 4.96967 7.96972C5.53209 7.40731 6.15488 6.99416 6.6279 6.72387C6.76427 6.64594 6.88983 6.57896 7 6.52288V3.67121C7 2.73331 8.13062 2.34833 8.73986 2.95499C9.07031 3.28404 9.55006 3.72288 10.0811 4.08935C10.6111 4.45512 11.1177 4.69615 11.5352 4.74929C11.0507 5.71174 10.8779 6.82571 11.0853 7.92421C11.2662 8.88185 11.999 9.48693 12.6874 9.77201L16.3831 11.3024C17.0715 11.5875 18.0175 11.6777 18.8225 11.1283ZM8 11C8.55228 11 9 10.5523 9 10C9 9.44775 8.55228 9.00003 8 9.00003C7.44772 9.00003 7 9.44775 7 10C7 10.5523 7.44772 11 8 11ZM18.2588 10.3023C19.211 9.65236 19.8199 8.62989 19.9666 7.52135C19.9666 7.52133 19.9666 7.52136 19.9666 7.52135C20.0558 6.8476 19.9742 6.14201 19.6954 5.46899C18.8498 3.42808 16.5099 2.45907 14.4689 3.30465C12.6886 4.04227 11.7239 5.91709 12.0679 7.73856C12.0926 7.86889 12.1369 7.99071 12.1972 8.10332C12.2471 8.19656 12.3079 8.28348 12.3776 8.36366C12.5604 8.57394 12.8039 8.7379 13.07 8.84809L16.7657 10.3785C17.2558 10.5815 17.8206 10.6013 18.2588 10.3023Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconSavingsFilled
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconSearch = ({
6
+ size,
7
+ type,
8
+ className = '',
9
+ onClick,
10
+ refHandler,
11
+ id,
12
+ dataId
13
+ }: ISVGIconProps): ReactElement => (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ className={classNames('svg-icon', {
17
+ [`svg-icon__size-${size}`]: size,
18
+ [`svg-icon__type-${type}`]: type,
19
+ [className]: className
20
+ })}
21
+ viewBox="0 0 24 24"
22
+ fill="none"
23
+ onClick={onClick}
24
+ ref={refHandler}
25
+ id={id}
26
+ data-id={dataId ? `${dataId}-svg-icon` : ''}
27
+ >
28
+ <g id="Size=24, Theme=Regular">
29
+ <path
30
+ id="Shape"
31
+ d="M10 2.75C14.0041 2.75 17.25 5.99594 17.25 10C17.25 11.7319 16.6427 13.3219 15.6295 14.5688L20.5303 19.4697C20.8232 19.7626 20.8232 20.2374 20.5303 20.5303C20.2641 20.7966 19.8474 20.8208 19.5538 20.6029L19.4697 20.5303L14.5688 15.6295C13.3219 16.6427 11.7319 17.25 10 17.25C5.99594 17.25 2.75 14.0041 2.75 10C2.75 5.99594 5.99594 2.75 10 2.75ZM10 4.25C6.82436 4.25 4.25 6.82436 4.25 10C4.25 13.1756 6.82436 15.75 10 15.75C13.1756 15.75 15.75 13.1756 15.75 10C15.75 6.82436 13.1756 4.25 10 4.25Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconSearch
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconSearchFilled = ({
6
+ size,
7
+ type,
8
+ className = '',
9
+ onClick,
10
+ refHandler,
11
+ id,
12
+ dataId
13
+ }: ISVGIconProps): ReactElement => (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ className={classNames('svg-icon', {
17
+ [`svg-icon__size-${size}`]: size,
18
+ [`svg-icon__type-${type}`]: type,
19
+ [className]: className
20
+ })}
21
+ viewBox="0 0 24 24"
22
+ fill="none"
23
+ onClick={onClick}
24
+ ref={refHandler}
25
+ id={id}
26
+ data-id={dataId ? `${dataId}-svg-icon` : ''}
27
+ >
28
+ <g id="Size=24, Theme=Filled">
29
+ <path
30
+ id="Shape"
31
+ d="M10 2.5C14.1421 2.5 17.5 5.85786 17.5 10C17.5 11.7101 16.9276 13.2866 15.964 14.5483L20.7071 19.2929C21.0976 19.6834 21.0976 20.3166 20.7071 20.7071C20.3466 21.0676 19.7794 21.0953 19.3871 20.7903L19.2929 20.7071L14.5483 15.964C13.2866 16.9276 11.7101 17.5 10 17.5C5.85786 17.5 2.5 14.1421 2.5 10C2.5 5.85786 5.85786 2.5 10 2.5ZM10 4.5C6.96243 4.5 4.5 6.96243 4.5 10C4.5 13.0376 6.96243 15.5 10 15.5C13.0376 15.5 15.5 13.0376 15.5 10C15.5 6.96243 13.0376 4.5 10 4.5Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconSearchFilled
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconSelectAllOff = ({
6
+ size,
7
+ type,
8
+ className = '',
9
+ onClick,
10
+ refHandler,
11
+ id,
12
+ dataId
13
+ }: ISVGIconProps): ReactElement => (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ className={classNames('svg-icon', {
17
+ [`svg-icon__size-${size}`]: size,
18
+ [`svg-icon__type-${type}`]: type,
19
+ [className]: className
20
+ })}
21
+ viewBox="0 0 24 24"
22
+ fill="none"
23
+ onClick={onClick}
24
+ ref={refHandler}
25
+ id={id}
26
+ data-id={dataId ? `${dataId}-svg-icon` : ''}
27
+ >
28
+ <g id="State=Off, Size=24, Theme=Regular">
29
+ <path
30
+ id="Shape"
31
+ d="M20.4962 5.62668C21.3721 5.93448 22 6.76891 22 7.75V17.75C22 20.0972 20.0972 22 17.75 22H7.75C6.76891 22 5.93448 21.3721 5.62668 20.4962L7.72396 20.4996L17.75 20.5C19.2688 20.5 20.5 19.2688 20.5 17.75V7.75L20.496 7.69902L20.4962 5.62668ZM17.2468 2C18.4895 2 19.4968 3.00736 19.4968 4.25V17.2468C19.4968 18.4895 18.4895 19.4968 17.2468 19.4968H4.25C3.00736 19.4968 2 18.4895 2 17.2468V4.25C2 3.00736 3.00736 2 4.25 2H17.2468ZM17.2468 3.5H4.25C3.83579 3.5 3.5 3.83579 3.5 4.25V17.2468C3.5 17.661 3.83579 17.9968 4.25 17.9968H17.2468C17.661 17.9968 17.9968 17.661 17.9968 17.2468V4.25C17.9968 3.83579 17.661 3.5 17.2468 3.5Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconSelectAllOff
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconSelectAllOffFilled = ({
6
+ size,
7
+ type,
8
+ className = '',
9
+ onClick,
10
+ refHandler,
11
+ id,
12
+ dataId
13
+ }: ISVGIconProps): ReactElement => (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ className={classNames('svg-icon', {
17
+ [`svg-icon__size-${size}`]: size,
18
+ [`svg-icon__type-${type}`]: type,
19
+ [className]: className
20
+ })}
21
+ viewBox="0 0 24 24"
22
+ fill="none"
23
+ onClick={onClick}
24
+ ref={refHandler}
25
+ id={id}
26
+ data-id={dataId ? `${dataId}-svg-icon` : ''}
27
+ >
28
+ <g id="State=Off, Size=24, Theme=Filled">
29
+ <path
30
+ id="Shape"
31
+ d="M20.4962 5.62668C21.3721 5.93448 22 6.76891 22 7.75V17.75C22 20.0972 20.0972 22 17.75 22H7.75C6.76891 22 5.93448 21.3721 5.62668 20.4962L7.72396 20.4996L17.75 20.5C19.2688 20.5 20.5 19.2688 20.5 17.75V7.75L20.496 7.69902L20.4962 5.62668ZM17.2468 2C18.4895 2 19.4968 3.00736 19.4968 4.25V17.2468C19.4968 18.4895 18.4895 19.4968 17.2468 19.4968H4.25C3.00736 19.4968 2 18.4895 2 17.2468V4.25C2 3.00736 3.00736 2 4.25 2H17.2468Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconSelectAllOffFilled
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconSelectAllOn = ({
6
+ size,
7
+ type,
8
+ className = '',
9
+ onClick,
10
+ refHandler,
11
+ id,
12
+ dataId
13
+ }: ISVGIconProps): ReactElement => (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ className={classNames('svg-icon', {
17
+ [`svg-icon__size-${size}`]: size,
18
+ [`svg-icon__type-${type}`]: type,
19
+ [className]: className
20
+ })}
21
+ viewBox="0 0 24 24"
22
+ fill="none"
23
+ onClick={onClick}
24
+ ref={refHandler}
25
+ id={id}
26
+ data-id={dataId ? `${dataId}-svg-icon` : ''}
27
+ >
28
+ <g id="State=On, Size=24, Theme=Regular">
29
+ <path
30
+ id="Shape"
31
+ d="M20.4962 5.62668C21.3721 5.93448 22 6.76891 22 7.75V17.75C22 20.0972 20.0972 22 17.75 22H7.75C6.76891 22 5.93448 21.3721 5.62668 20.4962L7.72396 20.4996L17.75 20.5C19.2688 20.5 20.5 19.2688 20.5 17.75V7.75L20.496 7.69902L20.4962 5.62668ZM17.2468 2C18.4895 2 19.4968 3.00736 19.4968 4.25V17.2468C19.4968 18.4895 18.4895 19.4968 17.2468 19.4968H4.25C3.00736 19.4968 2 18.4895 2 17.2468V4.25C2 3.00736 3.00736 2 4.25 2H17.2468ZM17.2468 3.5H4.25C3.83579 3.5 3.5 3.83579 3.5 4.25V17.2468C3.5 17.661 3.83579 17.9968 4.25 17.9968H17.2468C17.661 17.9968 17.9968 17.661 17.9968 17.2468V4.25C17.9968 3.83579 17.661 3.5 17.2468 3.5ZM9.58115 11.3582L13.4697 7.46967C13.7626 7.17678 14.2374 7.17678 14.5303 7.46967C14.7966 7.73594 14.8208 8.1526 14.6029 8.44621L14.5303 8.53033L10.0303 13.0303C9.73449 13.3262 9.26134 13.3189 8.9736 13.0344L8.9 12.95L7.4 10.95C7.15147 10.6186 7.21863 10.1485 7.55 9.9C7.85125 9.67407 8.26715 9.70903 8.527 9.96622L8.6 10.05L9.58115 11.3582L13.4697 7.46967L9.58115 11.3582Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconSelectAllOn
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconSelectAllOnFilled = ({
6
+ size,
7
+ type,
8
+ className = '',
9
+ onClick,
10
+ refHandler,
11
+ id,
12
+ dataId
13
+ }: ISVGIconProps): ReactElement => (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ className={classNames('svg-icon', {
17
+ [`svg-icon__size-${size}`]: size,
18
+ [`svg-icon__type-${type}`]: type,
19
+ [className]: className
20
+ })}
21
+ viewBox="0 0 24 24"
22
+ fill="none"
23
+ onClick={onClick}
24
+ ref={refHandler}
25
+ id={id}
26
+ data-id={dataId ? `${dataId}-svg-icon` : ''}
27
+ >
28
+ <g id="State=On, Size=24, Theme=Filled">
29
+ <path
30
+ id="Shape"
31
+ d="M20.4962 5.62668C21.3721 5.93448 22 6.76891 22 7.75V17.75C22 20.0972 20.0972 22 17.75 22H7.75C6.76891 22 5.93448 21.3721 5.62668 20.4962L7.72396 20.4996L17.75 20.5C19.2688 20.5 20.5 19.2688 20.5 17.75V7.75L20.496 7.69902L20.4962 5.62668ZM17.2468 2C18.4895 2 19.4968 3.00736 19.4968 4.25V17.2468C19.4968 18.4895 18.4895 19.4968 17.2468 19.4968H4.25C3.00736 19.4968 2 18.4895 2 17.2468V4.25C2 3.00736 3.00736 2 4.25 2H17.2468ZM13.4697 7.46967L9.58115 11.3582L8.6 10.05C8.35147 9.71863 7.88137 9.65147 7.55 9.9C7.21863 10.1485 7.15147 10.6186 7.4 10.95L8.9 12.95C9.17385 13.3151 9.7076 13.3531 10.0303 13.0303L14.5303 8.53033C14.8232 8.23744 14.8232 7.76256 14.5303 7.46967C14.2374 7.17678 13.7626 7.17678 13.4697 7.46967Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconSelectAllOnFilled
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconSend = ({
6
+ size,
7
+ type,
8
+ className = '',
9
+ onClick,
10
+ refHandler,
11
+ id,
12
+ dataId
13
+ }: ISVGIconProps): ReactElement => (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ className={classNames('svg-icon', {
17
+ [`svg-icon__size-${size}`]: size,
18
+ [`svg-icon__type-${type}`]: type,
19
+ [className]: className
20
+ })}
21
+ viewBox="0 0 24 24"
22
+ fill="none"
23
+ onClick={onClick}
24
+ ref={refHandler}
25
+ id={id}
26
+ data-id={dataId ? `${dataId}-svg-icon` : ''}
27
+ >
28
+ <g id="Size=24, Theme=Regular">
29
+ <path
30
+ id="Shape"
31
+ d="M5.69362 11.9999L2.29933 3.27174C2.0631 2.66427 2.65544 2.08334 3.2414 2.28983L3.33375 2.32909L21.3337 11.3291C21.852 11.5882 21.8844 12.2977 21.4309 12.6132L21.3337 12.6707L3.33375 21.6707C2.75077 21.9622 2.11746 21.4262 2.2688 20.8237L2.29933 20.7281L5.69362 11.9999L2.29933 3.27174L5.69362 11.9999ZM4.4021 4.54032L7.01109 11.2493L13.6387 11.2499C14.0184 11.2499 14.3322 11.5321 14.3818 11.8981L14.3887 11.9999C14.3887 12.3796 14.1065 12.6934 13.7404 12.7431L13.6387 12.7499L7.01109 12.7493L4.4021 19.4595L19.3213 11.9999L4.4021 4.54032Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconSend
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconSendFilled = ({
6
+ size,
7
+ type,
8
+ className = '',
9
+ onClick,
10
+ refHandler,
11
+ id,
12
+ dataId
13
+ }: ISVGIconProps): ReactElement => (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ className={classNames('svg-icon', {
17
+ [`svg-icon__size-${size}`]: size,
18
+ [`svg-icon__type-${type}`]: type,
19
+ [className]: className
20
+ })}
21
+ viewBox="0 0 24 24"
22
+ fill="none"
23
+ onClick={onClick}
24
+ ref={refHandler}
25
+ id={id}
26
+ data-id={dataId ? `${dataId}-svg-icon` : ''}
27
+ >
28
+ <g id="Size=24, Theme=Filled">
29
+ <path
30
+ id="Shape"
31
+ d="M12.8147 12.1972L5.28344 13.4524C5.10705 13.4818 4.95979 13.6032 4.89723 13.7707L2.29933 20.7281C2.05066 21.3675 2.72008 21.9776 3.33375 21.6707L21.3337 12.6707C21.8865 12.3943 21.8865 11.6055 21.3337 11.3291L3.33375 2.32909C2.72008 2.02226 2.05066 2.6323 2.29933 3.27174L4.89723 10.2291C4.95979 10.3967 5.10705 10.518 5.28344 10.5474L12.8147 11.8026C12.9236 11.8208 12.9972 11.9238 12.9791 12.0328C12.965 12.1171 12.899 12.1831 12.8147 12.1972Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconSendFilled
@@ -0,0 +1,35 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconSettings = ({
6
+ size,
7
+ type,
8
+ className = '',
9
+ onClick,
10
+ refHandler,
11
+ id,
12
+ dataId
13
+ }: ISVGIconProps): ReactElement => (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ className={classNames('svg-icon', {
17
+ [`svg-icon__size-${size}`]: size,
18
+ [`svg-icon__type-${type}`]: type,
19
+ [className]: className
20
+ })}
21
+ viewBox="0 0 24 24"
22
+ fill="none"
23
+ onClick={onClick}
24
+ ref={refHandler}
25
+ id={id}
26
+ data-id={dataId ? `${dataId}-svg-icon` : ''}
27
+ >
28
+ <path
29
+ d="M12.0124 2.25C12.7464 2.25846 13.4775 2.34326 14.1939 2.50304C14.5067 2.57279 14.7406 2.83351 14.7761 3.15196L14.9463 4.67881C15.0233 5.37986 15.6152 5.91084 16.3209 5.91158C16.5105 5.91188 16.6982 5.87238 16.8734 5.79483L18.2741 5.17956C18.5654 5.05159 18.9057 5.12136 19.1232 5.35362C20.1354 6.43464 20.8892 7.73115 21.3279 9.14558C21.4225 9.45058 21.3137 9.78203 21.0566 9.9715L19.8151 10.8866C19.461 11.1468 19.2518 11.56 19.2518 11.9995C19.2518 12.4389 19.461 12.8521 19.8159 13.1129L21.0585 14.0283C21.3156 14.2177 21.4246 14.5492 21.3299 14.8543C20.8914 16.2685 20.138 17.5649 19.1264 18.6461C18.9091 18.8783 18.569 18.9483 18.2777 18.8206L16.8714 18.2045C16.4691 18.0284 16.007 18.0542 15.6268 18.274C15.2466 18.4937 14.9935 18.8812 14.9452 19.3177L14.7761 20.8444C14.7413 21.1592 14.5124 21.4182 14.2043 21.4915C12.7558 21.8361 11.2467 21.8361 9.79828 21.4915C9.49015 21.4182 9.26129 21.1592 9.22643 20.8444L9.0576 19.32C9.00802 18.8843 8.75459 18.498 8.37467 18.279C7.99475 18.06 7.53345 18.0343 7.13244 18.2094L5.72582 18.8256C5.43446 18.9533 5.09428 18.8833 4.87703 18.6509C3.86487 17.5685 3.11144 16.2705 2.67344 14.8548C2.57911 14.5499 2.68811 14.2186 2.94509 14.0293L4.18842 13.1133C4.54256 12.8531 4.75172 12.4399 4.75172 12.0005C4.75172 11.561 4.54256 11.1478 4.18796 10.8873L2.94541 9.97285C2.68804 9.78345 2.57894 9.45178 2.67361 9.14658C3.11236 7.73215 3.86619 6.43564 4.87837 5.35462C5.09584 5.12236 5.43618 5.05259 5.72749 5.18056L7.12786 5.79572C7.53081 5.97256 7.99404 5.94585 8.37601 5.72269C8.75633 5.50209 9.00953 5.11422 9.05841 4.67764L9.22849 3.15196C9.26401 2.83335 9.49811 2.57254 9.81105 2.50294C10.5283 2.34342 11.2602 2.25865 12.0124 2.25ZM12.0126 3.7499C11.5586 3.75524 11.1058 3.79443 10.6581 3.86702L10.5491 4.84418C10.4473 5.75368 9.92028 6.56102 9.13066 7.01903C8.33622 7.48317 7.36761 7.53903 6.52483 7.16917L5.62654 6.77456C5.0546 7.46873 4.59938 8.25135 4.27877 9.09168L5.07656 9.67879C5.81537 10.2216 6.25172 11.0837 6.25172 12.0005C6.25172 12.9172 5.81537 13.7793 5.07734 14.3215L4.27829 14.9102C4.59863 15.752 5.05392 16.5361 5.62625 17.2316L6.53138 16.8351C7.36947 16.4692 8.33149 16.5227 9.12377 16.9794C9.91606 17.4361 10.4446 18.2417 10.5482 19.1526L10.6572 20.1365C11.5468 20.2878 12.4557 20.2878 13.3453 20.1365L13.4543 19.1527C13.5551 18.2421 14.083 17.4337 14.8762 16.9753C15.6695 16.5168 16.6334 16.463 17.473 16.8305L18.3775 17.2267C18.9493 16.5323 19.4044 15.7495 19.7249 14.909L18.927 14.3211C18.1882 13.7783 17.7518 12.9162 17.7518 11.9995C17.7518 11.0827 18.1882 10.2206 18.9261 9.67847L19.7229 9.09109C19.4023 8.25061 18.947 7.46784 18.375 6.77356L17.4785 7.16737C17.1132 7.32901 16.718 7.4122 16.3189 7.41158C14.8492 7.41004 13.6158 6.30355 13.4554 4.84383L13.3464 3.8667C12.9009 3.7942 12.4529 3.75512 12.0126 3.7499ZM11.9999 8.24995C14.071 8.24995 15.7499 9.92888 15.7499 12C15.7499 14.071 14.071 15.75 11.9999 15.75C9.92887 15.75 8.24994 14.071 8.24994 12C8.24994 9.92888 9.92887 8.24995 11.9999 8.24995ZM11.9999 9.74995C10.7573 9.74995 9.74994 10.7573 9.74994 12C9.74994 13.2426 10.7573 14.25 11.9999 14.25C13.2426 14.25 14.2499 13.2426 14.2499 12C14.2499 10.7573 13.2426 9.74995 11.9999 9.74995Z"
30
+ fill="#222222"
31
+ />
32
+ </svg>
33
+ )
34
+
35
+ export default IconSettings
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconSettingsFilled = ({
6
+ size,
7
+ type,
8
+ className = '',
9
+ onClick,
10
+ refHandler,
11
+ id,
12
+ dataId
13
+ }: ISVGIconProps): ReactElement => (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ className={classNames('svg-icon', {
17
+ [`svg-icon__size-${size}`]: size,
18
+ [`svg-icon__type-${type}`]: type,
19
+ [className]: className
20
+ })}
21
+ viewBox="0 0 24 24"
22
+ fill="none"
23
+ onClick={onClick}
24
+ ref={refHandler}
25
+ id={id}
26
+ data-id={dataId ? `${dataId}-svg-icon` : ''}
27
+ >
28
+ <g id="Size=24, Theme=Filled">
29
+ <path
30
+ id="Shape"
31
+ d="M12.0124 2.25C12.7464 2.25846 13.4775 2.34326 14.1939 2.50304C14.5067 2.57279 14.7406 2.83351 14.7761 3.15196L14.9463 4.67881C15.0233 5.37986 15.6152 5.91084 16.3209 5.91158C16.5105 5.91188 16.6982 5.87238 16.8734 5.79483L18.2741 5.17956C18.5654 5.05159 18.9057 5.12136 19.1232 5.35362C20.1354 6.43464 20.8892 7.73115 21.3279 9.14558C21.4225 9.45058 21.3137 9.78203 21.0566 9.9715L19.8151 10.8866C19.461 11.1468 19.2518 11.56 19.2518 11.9995C19.2518 12.4389 19.461 12.8521 19.8159 13.1129L21.0585 14.0283C21.3156 14.2177 21.4246 14.5492 21.3299 14.8543C20.8914 16.2685 20.138 17.5649 19.1264 18.6461C18.9091 18.8783 18.569 18.9483 18.2777 18.8206L16.8714 18.2045C16.4691 18.0284 16.007 18.0542 15.6268 18.274C15.2466 18.4937 14.9935 18.8812 14.9452 19.3177L14.7761 20.8444C14.7413 21.1592 14.5124 21.4182 14.2043 21.4915C12.7558 21.8361 11.2467 21.8361 9.79828 21.4915C9.49015 21.4182 9.26129 21.1592 9.22643 20.8444L9.0576 19.32C9.00802 18.8843 8.75459 18.498 8.37467 18.279C7.99475 18.06 7.53345 18.0343 7.13244 18.2094L5.72582 18.8256C5.43446 18.9533 5.09428 18.8833 4.87703 18.6509C3.86487 17.5685 3.11144 16.2705 2.67344 14.8548C2.57911 14.5499 2.68811 14.2186 2.94509 14.0293L4.18842 13.1133C4.54256 12.8531 4.75172 12.4399 4.75172 12.0005C4.75172 11.561 4.54256 11.1478 4.18796 10.8873L2.94541 9.97285C2.68804 9.78345 2.57894 9.45178 2.67361 9.14658C3.11236 7.73215 3.86619 6.43564 4.87837 5.35462C5.09584 5.12236 5.43618 5.05259 5.72749 5.18056L7.12786 5.79572C7.53081 5.97256 7.99404 5.94585 8.37601 5.72269C8.75633 5.50209 9.00953 5.11422 9.05841 4.67764L9.22849 3.15196C9.26401 2.83335 9.49811 2.57254 9.81105 2.50294C10.5283 2.34342 11.2602 2.25865 12.0124 2.25ZM11.9999 8.99995C10.3431 8.99995 8.99994 10.3431 8.99994 12C8.99994 13.6568 10.3431 15 11.9999 15C13.6568 15 14.9999 13.6568 14.9999 12C14.9999 10.3431 13.6568 8.99995 11.9999 8.99995Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconSettingsFilled
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconShare = ({
6
+ size,
7
+ type,
8
+ className = '',
9
+ onClick,
10
+ refHandler,
11
+ id,
12
+ dataId
13
+ }: ISVGIconProps): ReactElement => (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ className={classNames('svg-icon', {
17
+ [`svg-icon__size-${size}`]: size,
18
+ [`svg-icon__type-${type}`]: type,
19
+ [className]: className
20
+ })}
21
+ viewBox="0 0 24 24"
22
+ fill="none"
23
+ onClick={onClick}
24
+ ref={refHandler}
25
+ id={id}
26
+ data-id={dataId ? `${dataId}-svg-icon` : ''}
27
+ >
28
+ <g id="Size=24, Theme=Regular">
29
+ <path
30
+ id="Shape"
31
+ d="M6.74658 4.00003H10.2108C10.625 4.00003 10.9608 4.33582 10.9608 4.75003C10.9608 5.12972 10.6786 5.44352 10.3126 5.49318L10.2108 5.50003H6.74658C5.55572 5.50003 4.58094 6.42519 4.50177 7.59598L4.49658 7.75003V17.25C4.49658 18.4409 5.42174 19.4157 6.59253 19.4948L6.74658 19.5H16.2473C17.4382 19.5 18.413 18.5749 18.4921 17.4041L18.4973 17.25V16.7522C18.4973 16.338 18.8331 16.0022 19.2473 16.0022C19.627 16.0022 19.9408 16.2844 19.9905 16.6505L19.9973 16.7522V17.25C19.9973 19.2543 18.425 20.8913 16.4465 20.9948L16.2473 21H6.74658C4.74232 21 3.10531 19.4277 3.00178 17.4492L2.99658 17.25V7.75003C2.99658 5.74577 4.56894 4.10876 6.54742 4.00523L6.74658 4.00003H10.2108H6.74658ZM14.5006 6.51988V3.75003C14.5006 3.12606 15.2074 2.78998 15.6876 3.13983L15.7697 3.20877L21.7643 8.95877C22.0441 9.22712 22.0696 9.65814 21.8407 9.9561L21.7644 10.0412L15.7698 15.7931C15.3196 16.2251 14.5877 15.9477 14.5077 15.3589L14.5006 15.2519V12.5266L14.1571 12.5567C11.7574 12.807 9.45735 13.8879 7.24253 15.8174C6.72342 16.2696 5.92029 15.842 6.00567 15.1589C6.67046 9.83933 9.45233 6.90733 14.2012 6.53953L14.5006 6.51988V3.75003V6.51988ZM16.0006 5.50867V7.25003C16.0006 7.66424 15.6648 8.00003 15.2506 8.00003C11.3772 8.00003 8.97655 9.67616 7.93931 13.1572L7.86025 13.4358L8.21244 13.199C10.4489 11.7372 12.7983 11 15.2506 11C15.6303 11 15.9441 11.2822 15.9937 11.6483L16.0006 11.75V13.4928L20.1618 9.50012L16.0006 5.50867Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconShare
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconShareAndroid = ({
6
+ size,
7
+ type,
8
+ className = '',
9
+ onClick,
10
+ refHandler,
11
+ id,
12
+ dataId
13
+ }: ISVGIconProps): ReactElement => (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ className={classNames('svg-icon', {
17
+ [`svg-icon__size-${size}`]: size,
18
+ [`svg-icon__type-${type}`]: type,
19
+ [className]: className
20
+ })}
21
+ viewBox="0 0 24 24"
22
+ fill="none"
23
+ onClick={onClick}
24
+ ref={refHandler}
25
+ id={id}
26
+ data-id={dataId ? `${dataId}-svg-icon` : ''}
27
+ >
28
+ <g id="Size=24, Theme=Regular">
29
+ <path
30
+ id="Shape"
31
+ d="M17 2.49829C18.934 2.49829 20.5018 4.06609 20.5018 6.00006C20.5018 7.93403 18.934 9.50183 17 9.50183C15.97 9.50183 15.0439 9.05716 14.4032 8.34934L9.84455 10.9538C9.94786 11.2842 10.0035 11.6356 10.0035 12.0001C10.0035 12.3645 9.94786 12.716 9.84455 13.0464L14.4023 15.6518C15.043 14.9434 15.9695 14.4983 17 14.4983C18.934 14.4983 20.5018 16.0661 20.5018 18.0001C20.5018 19.934 18.934 21.5018 17 21.5018C15.066 21.5018 13.4982 19.934 13.4982 18.0001C13.4982 17.6356 13.5539 17.2842 13.6572 16.9538L9.09951 14.3483C8.45873 15.0567 7.53223 15.5018 6.50177 15.5018C4.5678 15.5018 3 13.934 3 12.0001C3 10.0661 4.5678 8.49829 6.50177 8.49829C7.53173 8.49829 8.45784 8.94296 9.09859 9.65078L13.6572 7.04636C13.5539 6.71596 13.4982 6.36451 13.4982 6.00006C13.4982 4.06609 15.066 2.49829 17 2.49829ZM17 15.9983C15.8945 15.9983 14.9982 16.8945 14.9982 18.0001C14.9982 19.1056 15.8945 20.0018 17 20.0018C18.1055 20.0018 19.0018 19.1056 19.0018 18.0001C19.0018 16.8945 18.1055 15.9983 17 15.9983ZM6.50177 9.99829C5.39622 9.99829 4.5 10.8945 4.5 12.0001C4.5 13.1056 5.39622 14.0018 6.50177 14.0018C7.60732 14.0018 8.50354 13.1056 8.50354 12.0001C8.50354 10.8945 7.60732 9.99829 6.50177 9.99829ZM17 3.99829C15.8945 3.99829 14.9982 4.89451 14.9982 6.00006C14.9982 7.10561 15.8945 8.00183 17 8.00183C18.1055 8.00183 19.0018 7.10561 19.0018 6.00006C19.0018 4.89451 18.1055 3.99829 17 3.99829Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconShareAndroid
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconShareAndroidFilled = ({
6
+ size,
7
+ type,
8
+ className = '',
9
+ onClick,
10
+ refHandler,
11
+ id,
12
+ dataId
13
+ }: ISVGIconProps): ReactElement => (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ className={classNames('svg-icon', {
17
+ [`svg-icon__size-${size}`]: size,
18
+ [`svg-icon__type-${type}`]: type,
19
+ [className]: className
20
+ })}
21
+ viewBox="0 0 24 24"
22
+ fill="none"
23
+ onClick={onClick}
24
+ ref={refHandler}
25
+ id={id}
26
+ data-id={dataId ? `${dataId}-svg-icon` : ''}
27
+ >
28
+ <g id="Size=24, Theme=Filled">
29
+ <path
30
+ id="Shape"
31
+ d="M17 3.00195C18.6558 3.00195 19.998 4.34424 19.998 6.00003C19.998 7.65582 18.6558 8.9981 17 8.9981C16.1578 8.9981 15.3967 8.65085 14.8521 8.09171L9.39499 11.2113C9.46333 11.4626 9.49981 11.7271 9.49981 12C9.49981 12.273 9.46333 12.5374 9.39499 12.7887L14.8528 15.9076C15.3974 15.3489 16.1582 15.002 17 15.002C18.6558 15.002 19.998 16.3442 19.998 18C19.998 19.6558 18.6558 20.9981 17 20.9981C15.3442 20.9981 14.0019 19.6558 14.0019 18C14.0019 17.7271 14.0384 17.4626 14.1067 17.2113L8.6496 14.0917C8.105 14.6508 7.34392 14.9981 6.50174 14.9981C4.84595 14.9981 3.50366 13.6558 3.50366 12C3.50366 10.3442 4.84595 9.00195 6.50174 9.00195C7.34355 9.00195 8.10432 9.3489 8.64887 9.9076L14.1067 6.78874C14.0384 6.53743 14.0019 6.27299 14.0019 6.00003C14.0019 4.34424 15.3442 3.00195 17 3.00195Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconShareAndroidFilled
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconShareFilled = ({
6
+ size,
7
+ type,
8
+ className = '',
9
+ onClick,
10
+ refHandler,
11
+ id,
12
+ dataId
13
+ }: ISVGIconProps): ReactElement => (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ className={classNames('svg-icon', {
17
+ [`svg-icon__size-${size}`]: size,
18
+ [`svg-icon__type-${type}`]: type,
19
+ [className]: className
20
+ })}
21
+ viewBox="0 0 24 24"
22
+ fill="none"
23
+ onClick={onClick}
24
+ ref={refHandler}
25
+ id={id}
26
+ data-id={dataId ? `${dataId}-svg-icon` : ''}
27
+ >
28
+ <g id="Size=24, Theme=Filled">
29
+ <path
30
+ id="Shape"
31
+ d="M6.74658 4.00003H10.2108C10.625 4.00003 10.9608 4.33582 10.9608 4.75003C10.9608 5.12972 10.6786 5.44352 10.3126 5.49318L10.2108 5.50003H6.74658C5.55572 5.50003 4.58094 6.42519 4.50177 7.59598L4.49658 7.75003V17.25C4.49658 18.4409 5.42174 19.4157 6.59253 19.4948L6.74658 19.5H16.2473C17.4382 19.5 18.413 18.5749 18.4921 17.4041L18.4973 17.25V16.7522C18.4973 16.338 18.8331 16.0022 19.2473 16.0022C19.627 16.0022 19.9408 16.2844 19.9905 16.6505L19.9973 16.7522V17.25C19.9973 19.2543 18.425 20.8913 16.4465 20.9948L16.2473 21H6.74658C4.74232 21 3.10531 19.4277 3.00178 17.4492L2.99658 17.25V7.75003C2.99658 5.74577 4.56894 4.10876 6.54742 4.00523L6.74658 4.00003H10.2108H6.74658ZM14.5006 6.54434V3.75003C14.5006 3.12606 15.2074 2.78998 15.6876 3.13983L15.7697 3.20877L21.7643 8.95877C22.0441 9.22712 22.0696 9.65814 21.8407 9.9561L21.7644 10.0412L15.7698 15.7931C15.3196 16.2251 14.5877 15.9477 14.5077 15.3589L14.5006 15.2519V12.45L14.1798 12.4438C11.5223 12.4359 9.25072 13.5269 7.31495 15.745C6.81934 16.3129 5.88968 15.8769 6.0094 15.1328C6.83639 9.99236 9.60847 7.08831 14.1986 6.57446L14.5006 6.54434V3.75003V6.54434Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconShareFilled
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconSignOut = ({
6
+ size,
7
+ type,
8
+ className = '',
9
+ onClick,
10
+ refHandler,
11
+ id,
12
+ dataId
13
+ }: ISVGIconProps): ReactElement => (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ className={classNames('svg-icon', {
17
+ [`svg-icon__size-${size}`]: size,
18
+ [`svg-icon__type-${type}`]: type,
19
+ [className]: className
20
+ })}
21
+ viewBox="0 0 24 24"
22
+ fill="none"
23
+ onClick={onClick}
24
+ ref={refHandler}
25
+ id={id}
26
+ data-id={dataId ? `${dataId}-svg-icon` : ''}
27
+ >
28
+ <g id="Size=24, Theme=Regular">
29
+ <path
30
+ id="Shape"
31
+ d="M8.50215 11.5C9.05562 11.5 9.5043 11.9487 9.5043 12.5022C9.5043 13.0556 9.05562 13.5043 8.50215 13.5043C7.94868 13.5043 7.5 13.0556 7.5 12.5022C7.5 11.9487 7.94868 11.5 8.50215 11.5ZM12 4.35418V10.5L12.0005 11.005L19.442 11.004L17.7196 9.28026C17.4534 9.01395 17.4292 8.59728 17.6471 8.3037L17.7198 8.2196C17.9861 7.95338 18.4027 7.92924 18.6963 8.14715L18.7804 8.21978L21.777 11.2174C22.043 11.4835 22.0674 11.8997 21.85 12.1933L21.7775 12.2774L18.7809 15.2808C18.4884 15.5741 18.0135 15.5746 17.7203 15.282C17.4537 15.0161 17.429 14.5994 17.6465 14.3056L17.7191 14.2214L19.432 12.504L12.0005 12.505L12 19.25C12 19.7164 11.5788 20.0697 11.1196 19.9886L2.61955 18.4873C2.26121 18.424 2 18.1126 2 17.7487V5.75002C2 5.38271 2.26601 5.06945 2.62847 5.00993L11.1285 3.6141C11.5851 3.53911 12 3.89145 12 4.35418ZM10.5 5.23739L3.5 6.3869V17.1196L10.5 18.3559V5.23739ZM13 18.5013L13.7652 18.5015L13.867 18.4946C14.2335 18.4448 14.5158 18.1304 14.5152 17.7502L14.508 13.5H13V18.5013ZM13.002 10L13 8.72536V5.00001L13.7453 5.00002C14.1245 5.00002 14.4381 5.28154 14.4883 5.64713L14.4953 5.74878L14.502 10H13.002Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconSignOut