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 IconLinkedin = ({
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="Group">
29
+ <path
30
+ id="Vector"
31
+ d="M22.2234 0H1.77187C0.792187 0 0 0.773438 0 1.72969V22.2656C0 23.2219 0.792187 24 1.77187 24H22.2234C23.2031 24 24 23.2219 24 22.2703V1.72969C24 0.773438 23.2031 0 22.2234 0ZM7.12031 20.4516H3.55781V8.99531H7.12031V20.4516ZM5.33906 7.43438C4.19531 7.43438 3.27188 6.51094 3.27188 5.37187C3.27188 4.23281 4.19531 3.30937 5.33906 3.30937C6.47813 3.30937 7.40156 4.23281 7.40156 5.37187C7.40156 6.50625 6.47813 7.43438 5.33906 7.43438ZM20.4516 20.4516H16.8937V14.8828C16.8937 13.5562 16.8703 11.8453 15.0422 11.8453C13.1906 11.8453 12.9094 13.2937 12.9094 14.7891V20.4516H9.35625V8.99531H12.7687V10.5609H12.8156C13.2891 9.66094 14.4516 8.70938 16.1813 8.70938C19.7859 8.70938 20.4516 11.0813 20.4516 14.1656V20.4516Z"
32
+ fill="#555555"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconLinkedin
@@ -0,0 +1,35 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconList = ({
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="M2.75 18H15.25C15.6642 18 16 18.3358 16 18.75C16 19.1297 15.7178 19.4435 15.3518 19.4931L15.25 19.5H2.75C2.33579 19.5 2 19.1642 2 18.75C2 18.3703 2.28215 18.0565 2.64823 18.0068L2.75 18H15.25H2.75ZM2.75 11.5H21.25C21.6642 11.5 22 11.8358 22 12.25C22 12.6297 21.7178 12.9435 21.3518 12.9931L21.25 13H2.75C2.33579 13 2 12.6642 2 12.25C2 11.8703 2.28215 11.5565 2.64823 11.5068L2.75 11.5H21.25H2.75ZM2.75 5.00323H18.25C18.6642 5.00323 19 5.33902 19 5.75323C19 6.13293 18.7178 6.44673 18.3518 6.49639L18.25 6.50323H2.75C2.33579 6.50323 2 6.16745 2 5.75323C2 5.37354 2.28215 5.05974 2.64823 5.01008L2.75 5.00323H18.25H2.75Z"
30
+ fill="#222222"
31
+ />
32
+ </svg>
33
+ )
34
+
35
+ export default IconList
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconListFilled = ({
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="M3 17H15C15.5523 17 16 17.4477 16 18C16 18.5128 15.614 18.9355 15.1166 18.9933L15 19H3C2.44772 19 2 18.5523 2 18C2 17.4872 2.38604 17.0645 2.88338 17.0067L3 17H15H3ZM3 11H21C21.5523 11 22 11.4477 22 12C22 12.5128 21.614 12.9355 21.1166 12.9933L21 13H3C2.44772 13 2 12.5523 2 12C2 11.4872 2.38604 11.0645 2.88338 11.0067L3 11H21H3ZM3 5H18C18.5523 5 19 5.44772 19 6C19 6.51284 18.614 6.93551 18.1166 6.99327L18 7H3C2.44772 7 2 6.55228 2 6C2 5.48716 2.38604 5.06449 2.88338 5.00673L3 5H18H3Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconListFilled
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconLocation = ({
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.84303 4.56831C9.24344 1.1679 14.7566 1.1679 18.157 4.56831C21.5574 7.96872 21.5574 13.4819 18.157 16.8823L16.97 18.0562C16.0952 18.9149 14.96 20.0188 13.5642 21.3684C12.6919 22.2117 11.3081 22.2116 10.436 21.3681L6.9449 17.9723C6.50614 17.5414 6.13887 17.1781 5.84303 16.8823C2.44262 13.4819 2.44262 7.96872 5.84303 4.56831ZM17.0963 5.62897C14.2817 2.81435 9.71832 2.81435 6.90369 5.62897C4.08907 8.4436 4.08907 13.007 6.90369 15.8216L8.39077 17.2891C9.20967 18.0905 10.2391 19.0909 11.4788 20.2899C11.7695 20.5711 12.2308 20.5711 12.5215 20.29L15.9164 16.9885C16.3854 16.5282 16.7787 16.1393 17.0963 15.8216C19.911 13.007 19.911 8.4436 17.0963 5.62897ZM12 7.99897C13.6577 7.99897 15.0016 9.34281 15.0016 11.0005C15.0016 12.6582 13.6577 14.0021 12 14.0021C10.3423 14.0021 8.99847 12.6582 8.99847 11.0005C8.99847 9.34281 10.3423 7.99897 12 7.99897ZM12 9.49897C11.1707 9.49897 10.4985 10.1712 10.4985 11.0005C10.4985 11.8298 11.1707 12.5021 12 12.5021C12.8293 12.5021 13.5016 11.8298 13.5016 11.0005C13.5016 10.1712 12.8293 9.49897 12 9.49897Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconLocation
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconLocationFilled = ({
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.157 16.8823L16.97 18.0562C16.0952 18.9149 14.96 20.0188 13.5642 21.3684C12.6919 22.2117 11.3081 22.2116 10.436 21.3681L6.9449 17.9723C6.50614 17.5414 6.13887 17.1781 5.84303 16.8823C2.44262 13.4819 2.44262 7.96872 5.84303 4.56831C9.24344 1.1679 14.7566 1.1679 18.157 4.56831C21.5574 7.96872 21.5574 13.4819 18.157 16.8823ZM14.5002 11C14.5002 9.61918 13.3808 8.4998 12 8.4998C10.6192 8.4998 9.49982 9.61918 9.49982 11C9.49982 12.3808 10.6192 13.5002 12 13.5002C13.3808 13.5002 14.5002 12.3808 14.5002 11Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconLocationFilled
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconLockClosed = ({
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=Closed, Size=24, Theme=Regular">
29
+ <path
30
+ id="Shape"
31
+ d="M12 2C14.2091 2 16 3.79086 16 6V8H17.75C18.9926 8 20 9.00736 20 10.25V19.75C20 20.9926 18.9926 22 17.75 22H6.25C5.00736 22 4 20.9926 4 19.75V10.25C4 9.00736 5.00736 8 6.25 8H8V6C8 3.79086 9.79086 2 12 2ZM17.75 9.5H6.25C5.83579 9.5 5.5 9.83579 5.5 10.25V19.75C5.5 20.1642 5.83579 20.5 6.25 20.5H17.75C18.1642 20.5 18.5 20.1642 18.5 19.75V10.25C18.5 9.83579 18.1642 9.5 17.75 9.5ZM12.0001 13.5C12.8286 13.5 13.5001 14.1716 13.5001 15C13.5001 15.8284 12.8286 16.5 12.0001 16.5C11.1717 16.5 10.5001 15.8284 10.5001 15C10.5001 14.1716 11.1717 13.5 12.0001 13.5ZM12 3.5C10.6193 3.5 9.5 4.61929 9.5 6V8H14.5V6C14.5 4.61929 13.3807 3.5 12 3.5Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconLockClosed
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconLockClosedFilled = ({
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=Closed, Size=24, Theme=Filled">
29
+ <path
30
+ id="Shape"
31
+ d="M12 2C14.2091 2 16 3.79086 16 6V8H18.5C19.3284 8 20 8.67157 20 9.5V20.5C20 21.3284 19.3284 22 18.5 22H5.5C4.67157 22 4 21.3284 4 20.5V9.5C4 8.67157 4.67157 8 5.5 8H8V6C8 3.79086 9.79086 2 12 2ZM12.0001 13.5C11.1717 13.5 10.5001 14.1716 10.5001 15C10.5001 15.8284 11.1717 16.5 12.0001 16.5C12.8286 16.5 13.5001 15.8284 13.5001 15C13.5001 14.1716 12.8286 13.5 12.0001 13.5ZM12 4C10.8954 4 10 4.89543 10 6V8H14V6C14 4.89543 13.1046 4 12 4Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconLockClosedFilled
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconLockOpen = ({
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=Open, Size=24, Theme=Regular">
29
+ <path
30
+ id="Shape"
31
+ d="M12 2.00391C13.8753 2.00391 15.3342 3.2102 15.9276 5.00689C16.0575 5.4002 15.844 5.82436 15.4507 5.95427C15.0574 6.08419 14.6332 5.87066 14.5033 5.47734C14.1018 4.26162 13.1854 3.50391 12 3.50391C10.5927 3.50391 9.57976 4.46178 9.50392 6.05538L9.49935 6.24964L9.499 7.99891L17.75 7.99964C18.9409 7.99964 19.9156 8.9248 19.9948 10.0956L20 10.2496V19.7459C20 20.9368 19.0748 21.9116 17.904 21.9907L17.75 21.9959H6.25C5.05914 21.9959 4.08436 21.0708 4.00519 19.9L4 19.7459V10.2496C4 9.05878 4.92516 8.08399 6.09595 8.00483L6.25 7.99964L7.999 7.99891L7.99935 6.24964C7.99935 3.71117 9.70837 2.00391 12 2.00391ZM17.75 9.49964H6.25C5.8703 9.49964 5.55651 9.78179 5.50685 10.1479L5.5 10.2496V19.7459C5.5 20.1256 5.78215 20.4394 6.14823 20.4891L6.25 20.4959H17.75C18.1297 20.4959 18.4435 20.2138 18.4932 19.8477L18.5 19.7459V10.2496C18.5 9.86994 18.2178 9.55615 17.8518 9.50649L17.75 9.49964ZM12 13.4992C12.8277 13.4992 13.4986 14.1701 13.4986 14.9978C13.4986 15.8254 12.8277 16.4964 12 16.4964C11.1723 16.4964 10.5014 15.8254 10.5014 14.9978C10.5014 14.1701 11.1723 13.4992 12 13.4992Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconLockOpen
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconLockOpenFilled = ({
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=Open, Size=24, Theme=Filled">
29
+ <path
30
+ id="Shape"
31
+ d="M12 2.00104C13.7084 2.00104 15.2111 3.0822 15.7713 4.66746C15.9553 5.18819 15.6823 5.75949 15.1616 5.94348C14.678 6.11434 14.1509 5.89117 13.9307 5.44149L13.8855 5.33377C13.6057 4.54174 12.8541 4.00104 12 4.00104C10.9462 4.00104 10.0828 4.81649 10.0065 5.85082L10.001 6L10.001 7.99904L17.75 8C18.9409 8 19.9156 8.92516 19.9948 10.096L20 10.25V19.7463C20 20.9371 19.0748 21.9119 17.904 21.9911L17.75 21.9963H6.25C5.05914 21.9963 4.08436 21.0711 4.00519 19.9003L4 19.7463V10.25C4 9.05914 4.92516 8.08436 6.09595 8.00519L6.25 8L8.001 7.99904L8.00104 6C8.00104 3.79143 9.79143 2.00104 12 2.00104ZM12 13.4995C11.1723 13.4995 10.5014 14.1705 10.5014 14.9981C10.5014 15.8258 11.1723 16.4968 12 16.4968C12.8277 16.4968 13.4986 15.8258 13.4986 14.9981C13.4986 14.1705 12.8277 13.4995 12 13.4995Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconLockOpenFilled
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconMail = ({
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.25 4H18.75C20.483 4 21.8992 5.35645 21.9949 7.06558L22 7.25V16.75C22 18.483 20.6435 19.8992 18.9344 19.9949L18.75 20H5.25C3.51697 20 2.10075 18.6435 2.00514 16.9344L2 16.75V7.25C2 5.51697 3.35645 4.10075 5.06558 4.00514L5.25 4H18.75H5.25ZM20.5 9.373L12.3493 13.6637C12.1619 13.7623 11.9431 13.7764 11.7468 13.706L11.6507 13.6637L3.5 9.374V16.75C3.5 17.6682 4.20711 18.4212 5.10647 18.4942L5.25 18.5H18.75C19.6682 18.5 20.4212 17.7929 20.4942 16.8935L20.5 16.75V9.373ZM18.75 5.5H5.25C4.33183 5.5 3.57881 6.20711 3.5058 7.10647L3.5 7.25V7.679L12 12.1525L20.5 7.678V7.25C20.5 6.33183 19.7929 5.57881 18.8935 5.5058L18.75 5.5Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconMail
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconMailAdd = ({
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="M23 6.5C23 3.46243 20.5376 1 17.5 1C14.4624 1 12 3.46243 12 6.5C12 9.53757 14.4624 12 17.5 12C20.5376 12 23 9.53757 23 6.5ZM18.0006 7.00001L18.0011 9.50352C18.0011 9.77966 17.7773 10.0035 17.5011 10.0035C17.225 10.0035 17.0011 9.77966 17.0011 9.50352L17.0006 7.00001H14.4956C14.2197 7.00001 13.9961 6.77615 13.9961 6.50001C13.9961 6.22387 14.2197 6.00001 14.4956 6.00001H17.0005L17 3.49927C17 3.22313 17.2239 2.99927 17.5 2.99927C17.7761 2.99927 18 3.22313 18 3.49927L18.0005 6.00001H20.4966C20.7725 6.00001 20.9961 6.22387 20.9961 6.50001C20.9961 6.77615 20.7725 7.00001 20.4966 7.00001H18.0006ZM20.5 16.75V12.2678C21.051 11.9806 21.5557 11.6168 22 11.1904V16.75C22 18.483 20.6435 19.8992 18.9344 19.9949L18.75 20H5.25C3.51697 20 2.10075 18.6435 2.00514 16.9344L2 16.75V7.25C2 5.51697 3.35645 4.10075 5.06558 4.00514L5.25 4H11.4982C11.3004 4.47417 11.1572 4.97679 11.0764 5.5H5.25C4.33183 5.5 3.57881 6.20711 3.5058 7.10647L3.5 7.25V7.679L12 12.1525L13.3052 11.4654C13.7437 11.8363 14.232 12.1501 14.7587 12.3954L12.3493 13.6637C12.1619 13.7623 11.9431 13.7764 11.7468 13.706L11.6507 13.6637L3.5 9.374V16.75C3.5 17.6682 4.20711 18.4212 5.10647 18.4942L5.25 18.5H18.75C19.6682 18.5 20.4212 17.7929 20.4942 16.8935L20.5 16.75Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconMailAdd
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconMailAddFilled = ({
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="M23 6.5C23 3.46243 20.5376 1 17.5 1C14.4624 1 12 3.46243 12 6.5C12 9.53757 14.4624 12 17.5 12C20.5376 12 23 9.53757 23 6.5ZM18.0006 7.00001L18.0011 9.50352C18.0011 9.77966 17.7773 10.0035 17.5011 10.0035C17.225 10.0035 17.0011 9.77966 17.0011 9.50352L17.0006 7.00001H14.4956C14.2197 7.00001 13.9961 6.77615 13.9961 6.50001C13.9961 6.22387 14.2197 6.00001 14.4956 6.00001H17.0005L17 3.49927C17 3.22313 17.2239 2.99927 17.5 2.99927C17.7761 2.99927 18 3.22313 18 3.49927L18.0005 6.00001H20.4966C20.7725 6.00001 20.9961 6.22387 20.9961 6.50001C20.9961 6.77615 20.7725 7.00001 20.4966 7.00001H18.0006ZM17.5 13C19.2465 13 20.8321 12.3112 22 11.1904V16.75C22 18.483 20.6435 19.8992 18.9344 19.9949L18.75 20H5.25C3.51697 20 2.10075 18.6435 2.00514 16.9344L2 16.75V8.608L11.652 13.6644C11.87 13.7785 12.13 13.7785 12.348 13.6644L14.7649 12.3983C15.5963 12.7844 16.523 13 17.5 13ZM5.25 4H11.4982C11.1772 4.76959 11 5.6141 11 6.5C11 8.49255 11.8966 10.2757 13.3083 11.468L12 12.1533L2.01619 6.92355C2.17386 5.34271 3.46432 4.09545 5.06409 4.00523L5.25 4Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconMailAddFilled
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconMailArrowForward = ({
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="M20.3999 17.4V12.4803C20.8292 12.2609 21.2314 11.9958 21.5999 11.6914V17.4C21.5999 19.0569 20.2568 20.4 18.5999 20.4H5.3999C3.74305 20.4 2.3999 19.0569 2.3999 17.4V7.8C2.3999 6.14314 3.74305 4.8 5.3999 4.8H11.0483C10.939 5.18674 10.8639 5.58791 10.8268 6H5.3999C4.40579 6 3.5999 6.80588 3.5999 7.8V8.1624L11.9999 13.1039L13.7296 12.0861C14.1191 12.3473 14.538 12.568 14.9803 12.7424L12.3041 14.3172C12.1476 14.4092 11.9598 14.4245 11.7929 14.3632L11.6957 14.3172L3.5999 9.5556V17.4C3.5999 18.3941 4.40579 19.2 5.3999 19.2H18.5999C19.594 19.2 20.3999 18.3941 20.3999 17.4ZM11.9999 6.6C11.9999 9.58234 14.4176 12 17.3999 12C20.3822 12 22.7999 9.58234 22.7999 6.6C22.7999 3.61766 20.3822 1.2 17.3999 1.2C14.4176 1.2 11.9999 3.61766 11.9999 6.6ZM18.4756 3.47573C18.71 3.24142 19.0899 3.24142 19.3242 3.47573L21.4242 5.57573C21.4817 5.63326 21.5251 5.69956 21.5544 5.77033C21.5837 5.84107 21.5999 5.91864 21.5999 6C21.5999 6.08135 21.5837 6.15892 21.5544 6.22967C21.5255 6.29939 21.483 6.36478 21.4267 6.42171L19.3242 8.52426C19.0899 8.75858 18.71 8.75858 18.4756 8.52426C18.2413 8.28995 18.2413 7.91005 18.4756 7.67573L19.5514 6.6H17.6999C16.5401 6.6 15.5999 7.5402 15.5999 8.7V9C15.5999 9.33137 15.3313 9.6 14.9999 9.6C14.6685 9.6 14.3999 9.33137 14.3999 9V8.7C14.3999 6.87746 15.8774 5.4 17.6999 5.4H19.5514L18.4756 4.32426C18.2413 4.08995 18.2413 3.71005 18.4756 3.47573Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconMailArrowForward
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconMailArrowForwardFilled = ({
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.3999 13.2C18.9955 13.2 20.4589 12.6338 21.6 11.6913V17.4C21.6 19.0569 20.2569 20.4 18.6 20.4H5.4C3.74314 20.4 2.3999 19.0569 2.3999 17.4V8.8476L11.6958 14.3172C11.8836 14.4276 12.1164 14.4276 12.3042 14.3172L14.9805 12.7425C15.7297 13.0378 16.5458 13.2 17.3999 13.2ZM5.4 4.8H11.0483C10.8865 5.3722 10.7999 5.97598 10.7999 6.6C10.7999 8.88684 11.963 10.902 13.7298 12.0863L12 13.1039L2.41821 7.46751C2.58364 5.96712 3.85552 4.8 5.4 4.8ZM11.9999 6.6C11.9999 9.58234 14.4176 12 17.3999 12C20.3822 12 22.7999 9.58234 22.7999 6.6C22.7999 3.61766 20.3822 1.2 17.3999 1.2C14.4176 1.2 11.9999 3.61766 11.9999 6.6ZM18.4756 3.47573C18.71 3.24142 19.0899 3.24142 19.3242 3.47573L21.4242 5.57573C21.4817 5.63326 21.5251 5.69956 21.5544 5.77033C21.5837 5.84107 21.5999 5.91864 21.5999 6C21.5999 6.08135 21.5837 6.15892 21.5544 6.22967C21.5255 6.29939 21.483 6.36478 21.4267 6.42171L19.3242 8.52426C19.0899 8.75858 18.71 8.75858 18.4756 8.52426C18.2413 8.28995 18.2413 7.91005 18.4756 7.67573L19.5514 6.6H17.6999C16.5401 6.6 15.5999 7.5402 15.5999 8.7V9C15.5999 9.33137 15.3313 9.6 14.9999 9.6C14.6685 9.6 14.3999 9.33137 14.3999 9V8.7C14.3999 6.87746 15.8774 5.4 17.6999 5.4H19.5514L18.4756 4.32426C18.2413 4.08995 18.2413 3.71005 18.4756 3.47573Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconMailArrowForwardFilled
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconMailFilled = ({
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="M22 8.608V16.75C22 18.483 20.6435 19.8992 18.9344 19.9949L18.75 20H5.25C3.51697 20 2.10075 18.6435 2.00514 16.9344L2 16.75V8.608L11.652 13.6644C11.87 13.7785 12.13 13.7785 12.348 13.6644L22 8.608ZM5.25 4H18.75C20.4347 4 21.8201 5.28191 21.9838 6.92355L12 12.1533L2.01619 6.92355C2.17386 5.34271 3.46432 4.09545 5.06409 4.00523L5.25 4H18.75H5.25Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconMailFilled
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconMailLink = ({
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="M23 6.75C23 4.67893 21.3211 3 19.25 3L19.1482 3.00685C18.7822 3.05651 18.5 3.3703 18.5 3.75C18.5 4.16421 18.8358 4.5 19.25 4.5L19.404 4.50519C20.5748 4.58435 21.5 5.55914 21.5 6.75C21.5 7.99264 20.4926 9 19.25 9L19.2466 9.0046L19.1448 9.01191C18.779 9.06326 18.4983 9.37834 18.5 9.75803C18.5019 10.1722 18.8392 10.5065 19.2534 10.5046V10.5L19.4523 10.4948C21.4276 10.3913 23 8.75426 23 6.75ZM16.5 3.75C16.5 3.33579 16.1642 3 15.75 3L15.5508 3.0052C13.5724 3.10873 12 4.74574 12 6.75C12 8.82107 13.6789 10.5 15.75 10.5L15.8518 10.4932C16.2178 10.4435 16.5 10.1297 16.5 9.75C16.5 9.33579 16.1642 9 15.75 9L15.596 8.99481C14.4252 8.91565 13.5 7.94086 13.5 6.75C13.5 5.50736 14.5074 4.5 15.75 4.5L15.8518 4.49315C16.2178 4.44349 16.5 4.1297 16.5 3.75ZM20 6.75C20 6.33579 19.6642 6 19.25 6H15.75L15.6482 6.00685C15.2822 6.05651 15 6.3703 15 6.75C15 7.16421 15.3358 7.5 15.75 7.5H19.25L19.3518 7.49315C19.7178 7.44349 20 7.1297 20 6.75ZM5.25 4H11.8766C11.5576 4.44848 11.3145 4.95473 11.1662 5.5H5.25C4.33183 5.5 3.57881 6.20711 3.5058 7.10647L3.5 7.25V7.679L12 12.1525L13.9275 11.1378C14.4887 11.3712 15.1043 11.5 15.75 11.5H16.4595L12.3493 13.6637C12.1619 13.7623 11.9431 13.7764 11.7468 13.706L11.6507 13.6637L3.5 9.374V16.75C3.5 17.6682 4.20711 18.4212 5.10647 18.4942L5.25 18.5H18.75C19.6682 18.5 20.4212 17.7929 20.4942 16.8935L20.5 16.75V11.3338C21.0453 11.1855 21.5515 10.9424 22 10.6234V16.75C22 18.483 20.6435 19.8992 18.9344 19.9949L18.75 20H5.25C3.51697 20 2.10075 18.6435 2.00514 16.9344L2 16.75V7.25C2 5.51697 3.35645 4.10075 5.06558 4.00514L5.25 4Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconMailLink
@@ -0,0 +1,38 @@
1
+ import React, { ReactElement } from 'react'
2
+ import { ISVGIconProps } from './types'
3
+ import classNames from 'classnames'
4
+
5
+ export const IconMailLinkFilled = ({
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="M23 6.75C23 4.67893 21.3211 3 19.25 3L19.1482 3.00685C18.7822 3.05651 18.5 3.3703 18.5 3.75C18.5 4.16421 18.8358 4.5 19.25 4.5L19.404 4.50519C20.5748 4.58435 21.5 5.55914 21.5 6.75C21.5 7.99264 20.4926 9 19.25 9L19.2466 9.0046L19.1448 9.01191C18.779 9.06326 18.4983 9.37834 18.5 9.75803C18.5019 10.1722 18.8392 10.5065 19.2534 10.5046V10.5L19.4523 10.4948C21.4276 10.3913 23 8.75426 23 6.75ZM16.5 3.75C16.5 3.33579 16.1642 3 15.75 3L15.5508 3.0052C13.5724 3.10873 12 4.74574 12 6.75C12 8.82107 13.6789 10.5 15.75 10.5L15.8518 10.4932C16.2178 10.4435 16.5 10.1297 16.5 9.75C16.5 9.33579 16.1642 9 15.75 9L15.596 8.99481C14.4252 8.91565 13.5 7.94086 13.5 6.75C13.5 5.50736 14.5074 4.5 15.75 4.5L15.8518 4.49315C16.2178 4.44349 16.5 4.1297 16.5 3.75ZM20 6.75C20 6.33579 19.6642 6 19.25 6H15.75L15.6482 6.00685C15.2822 6.05651 15 6.3703 15 6.75C15 7.16421 15.3358 7.5 15.75 7.5H19.25L19.3518 7.49315C19.7178 7.44349 20 7.1297 20 6.75ZM19.25 11.5H16.4796L12.348 13.6644C12.13 13.7785 11.87 13.7785 11.652 13.6644L2 8.608V16.75L2.00514 16.9344C2.10075 18.6435 3.51697 20 5.25 20H18.75L18.9344 19.9949C20.6435 19.8992 22 18.483 22 16.75V10.6234C21.2239 11.1754 20.2749 11.5 19.25 11.5ZM5.25 4H11.8766C11.3246 4.77607 11 5.72513 11 6.75C11 8.73004 12.2115 10.4271 13.9337 11.1404L12 12.1533L2.01619 6.92355C2.17386 5.34271 3.46432 4.09545 5.06409 4.00523L5.25 4Z"
32
+ fill="#222222"
33
+ />
34
+ </g>
35
+ </svg>
36
+ )
37
+
38
+ export default IconMailLinkFilled