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,94 @@
1
+ import dayjs from 'dayjs'
2
+
3
+ export const noop = (): void => {
4
+ return undefined
5
+ }
6
+
7
+ export const checkIsAllowedFileSize = (allowedSize: number, fileSize: number): boolean => {
8
+ console.log('test')
9
+ return fileSize <= allowedSize
10
+ }
11
+
12
+ export const openFileInNewWindow = ({
13
+ e,
14
+ file,
15
+ handleFileClick
16
+ }: {
17
+ e: TClickEventType
18
+ file: File
19
+ handleFileClick?: (file: File) => void
20
+ }): void => {
21
+ e.preventDefault()
22
+
23
+ if (handleFileClick) {
24
+ handleFileClick(file)
25
+ }
26
+
27
+ if (file) {
28
+ if (file instanceof Blob) {
29
+ const fileURL = URL.createObjectURL(file)
30
+ window.open(fileURL)
31
+ } else {
32
+ console.error('The provided object is not a File or Blob.')
33
+ }
34
+ } else {
35
+ console.error('No file provided.')
36
+ }
37
+ }
38
+
39
+ export const getFormattedValues = (files: File[]): FileReader[] => {
40
+ const readers: FileReader[] = []
41
+
42
+ for (let i = 0; i < files.length; i++) {
43
+ const reader = new FileReader()
44
+ reader.onloadend = () => {
45
+ console.log(reader.result)
46
+ }
47
+ reader.readAsDataURL(files[i])
48
+ readers.push(reader)
49
+ }
50
+
51
+ return readers
52
+ }
53
+
54
+ export const uniqueFiles = (files: File[]): File[] =>
55
+ files.filter((file, index, self) => {
56
+ return index === self.findIndex((f) => f.name === file.name)
57
+ })
58
+
59
+ export const checkIsAllowedTypes = (allowedTypes: string, mimeType: string): boolean => {
60
+ return allowedTypes.includes(mimeType)
61
+ }
62
+
63
+ export const getStringWidth = (text: string, fontSize: number): number => {
64
+ const canvas = document.createElement('canvas')
65
+ const context = canvas.getContext('2d')
66
+ if (!context) {
67
+ return 0
68
+ }
69
+ context.font = fontSize + 'px Arial'
70
+
71
+ return context.measureText(text).width
72
+ }
73
+
74
+ export const setTranslationValue = (translation: string, value: string | number): string => {
75
+ return translation.replace('%s', value.toString())
76
+ }
77
+
78
+ export const getYearOptions = (startYear: number, lastYear: number): TSelectOptions => {
79
+ const years = []
80
+
81
+ while (startYear <= lastYear) {
82
+ years.push({ value: lastYear, label: lastYear })
83
+ lastYear--
84
+ }
85
+ return years
86
+ }
87
+
88
+ export const isSameDay = (date1?: Date, date2?: Date): boolean => {
89
+ if (!date1 || !date2) {
90
+ return false
91
+ }
92
+
93
+ return dayjs(date1).isSame(date2, 'day')
94
+ }
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Filled">
3
+ <path id="Shape" d="M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 7C11.6203 7 11.3065 7.28215 11.2568 7.64823L11.25 7.75V11.25H7.75C7.33579 11.25 7 11.5858 7 12C7 12.3797 7.28215 12.6935 7.64823 12.7432L7.75 12.75H11.25V16.25C11.25 16.6642 11.5858 17 12 17C12.3797 17 12.6935 16.7178 12.7432 16.3518L12.75 16.25V12.75H16.25C16.6642 12.75 17 12.4142 17 12C17 11.6203 16.7178 11.3065 16.3518 11.2568L16.25 11.25H12.75V7.75C12.75 7.33579 12.4142 7 12 7Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Regular">
3
+ <path id="Shape" d="M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5ZM12 7C12.4142 7 12.75 7.33579 12.75 7.75V11.25H16.25C16.6642 11.25 17 11.5858 17 12C17 12.4142 16.6642 12.75 16.25 12.75H12.75V16.25C12.75 16.6642 12.4142 17 12 17C11.5858 17 11.25 16.6642 11.25 16.25V12.75H7.75C7.33579 12.75 7 12.4142 7 12C7 11.5858 7.33579 11.25 7.75 11.25H11.25V7.75C11.25 7.33579 11.5858 7 12 7Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.8834 3.00673L12 3C12.5128 3 12.9355 3.38604 12.9933 3.88338L13 4V11H20C20.5128 11 20.9355 11.386 20.9933 11.8834L21 12C21 12.5128 20.614 12.9355 20.1166 12.9933L20 13H13V20C13 20.5128 12.614 20.9355 12.1166 20.9933L12 21C11.4872 21 11.0645 20.614 11.0067 20.1166L11 20V13H4C3.48716 13 3.06449 12.614 3.00673 12.1166L3 12C3 11.4872 3.38604 11.0645 3.88338 11.0067L4 11H11V4C11 3.48716 11.386 3.06449 11.8834 3.00673L12 3L11.8834 3.00673Z" fill="#222222"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.7501 3C12.1298 3 12.4436 3.28201 12.4934 3.64808L12.5002 3.74985L12.5014 11H19.7545C20.1687 11 20.5045 11.3358 20.5045 11.75C20.5045 12.1297 20.2224 12.4435 19.8563 12.4932L19.7545 12.5H12.5014L12.5035 19.7491C12.5036 20.1633 12.1679 20.4993 11.7536 20.4993C11.3739 20.4993 11.0601 20.2173 11.0104 19.8512L11.0035 19.7494L11.0014 12.5H3.75244C3.33823 12.5 3.00244 12.1642 3.00244 11.75C3.00244 11.3703 3.2846 11.0565 3.65067 11.0068L3.75244 11H11.0014L11.0002 3.75015C11.0002 3.33594 11.3359 3 11.7501 3Z" fill="#222222"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Filled">
3
+ <path id="Shape" d="M18.5 9C18.8376 9 19.1641 8.95219 19.473 8.86298C19.4909 9.07425 19.5 9.28801 19.5 9.50391V13.5024L20.9183 16.6625C20.9732 16.7848 21.0016 16.9174 21.0016 17.0515C21.0016 17.5762 20.5763 18.0015 20.0516 18.0015H3.95219C3.8184 18.0015 3.68613 17.9733 3.56402 17.9186C3.08515 17.7042 2.87073 17.1422 3.08511 16.6633L4.50001 13.5028L4.50011 9.49099L4.50453 9.24107C4.6436 5.21035 7.95588 2.00391 12 2.00391C13.4433 2.00391 14.7915 2.41162 15.9355 3.11815C15.355 3.74286 15 4.57997 15 5.5C15 7.433 16.567 9 18.5 9ZM14.9583 19.003C14.7196 20.4211 13.486 21.5015 12 21.5015C10.514 21.5015 9.28037 20.4211 9.04173 19.003H14.9583ZM18.5 8C19.8807 8 21 6.88071 21 5.5C21 4.11929 19.8807 3 18.5 3C17.1193 3 16 4.11929 16 5.5C16 6.88071 17.1193 8 18.5 8Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Regular">
3
+ <path id="Shape" d="M11.9876 1.99609C13.4351 1.99609 14.7878 2.40297 15.9353 3.11058C15.5934 3.47585 15.329 3.91431 15.1682 4.39985C14.2457 3.82617 13.1554 3.49569 11.9876 3.49569C8.66297 3.49569 5.97997 6.16922 5.97949 9.49407V13.9025L4.63369 16.9958H19.3502L17.9958 13.9035L17.9959 9.50692L17.9921 9.28178C17.9884 9.17344 17.9818 9.06586 17.9725 8.95912C18.1435 8.98472 18.3185 8.99798 18.4966 8.99798C18.8347 8.99798 19.1616 8.95018 19.4709 8.86099C19.4816 8.98748 19.4892 9.1149 19.4936 9.24319L19.4978 9.49407V13.5899L20.8797 16.7451C20.9489 16.903 20.9846 17.0734 20.9846 17.2457C20.9846 17.9359 20.4241 18.4954 19.7329 18.4954L14.9917 18.4969C14.9917 20.1533 13.6467 21.4961 11.9876 21.4961C10.3878 21.4961 9.08004 20.2475 8.98867 18.6731L8.98312 18.4946L4.25202 18.4954C4.08044 18.4954 3.9107 18.4602 3.75334 18.392C3.11928 18.117 2.82853 17.3809 3.10394 16.7479L4.47746 13.5909V9.49396C4.47805 5.34029 7.8341 1.99609 11.9876 1.99609ZM13.4892 18.4946L10.4856 18.4969C10.4856 19.3251 11.1581 19.9965 11.9876 19.9965C12.7684 19.9965 13.41 19.4018 13.4828 18.6413L13.4892 18.4946ZM16.033 5.05266C16.1282 4.52552 16.3889 4.05584 16.7595 3.6992C17.2097 3.26601 17.822 2.99961 18.4966 2.99961C19.8792 2.99961 21 4.11859 21 5.49893C21 6.59182 20.2974 7.52087 19.3185 7.86042C19.0611 7.94973 18.7845 7.99826 18.4966 7.99826C18.2482 7.99826 18.0083 7.96214 17.7818 7.89488C16.7475 7.58775 15.9932 6.63128 15.9932 5.49893C15.9932 5.34661 16.0069 5.19746 16.033 5.05266Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Filled">
3
+ <path id="Shape" d="M9.04173 19.003H14.9583C14.7196 20.4211 13.486 21.5015 12 21.5015C10.514 21.5015 9.28037 20.4211 9.04173 19.003ZM12 2.00391C16.1421 2.00391 19.5 5.36177 19.5 9.50391V13.5024L20.9183 16.6625C20.9732 16.7848 21.0016 16.9174 21.0016 17.0515C21.0016 17.5762 20.5763 18.0015 20.0516 18.0015H3.95219C3.8184 18.0015 3.68613 17.9733 3.56402 17.9186C3.08515 17.7042 2.87073 17.1422 3.08511 16.6633L4.50001 13.5028L4.50011 9.49099L4.50453 9.24107C4.6436 5.21035 7.95588 2.00391 12 2.00391Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Regular">
3
+ <path id="Shape" d="M11.9999 1.99609C16.0498 1.99609 19.3565 5.19084 19.4957 9.24515L19.4999 9.49609V13.5931L20.8799 16.7491C20.9489 16.907 20.9846 17.0775 20.9846 17.2499C20.9846 17.9402 20.4249 18.4999 19.7346 18.4999L14.9999 18.5014C14.9999 20.1582 13.6567 21.5014 11.9999 21.5014C10.4022 21.5014 9.09621 20.2524 9.00496 18.6776L8.99941 18.4991L4.27473 18.4999C4.10339 18.4999 3.93388 18.4646 3.77673 18.3964C3.14353 18.1213 2.85318 17.3851 3.12822 16.7519L4.49987 13.594V9.49599C4.50046 5.3412 7.85195 1.99609 11.9999 1.99609ZM13.4994 18.4991L10.4999 18.5014C10.4999 19.3298 11.1714 20.0014 11.9999 20.0014C12.7796 20.0014 13.4203 19.4065 13.493 18.6458L13.4994 18.4991ZM11.9999 3.49609C8.67971 3.49609 6.00034 6.17035 5.99987 9.49609V13.9057L4.65589 16.9999H19.3524L17.9999 13.9067L18 9.50895L17.9962 9.28375C17.8852 6.05027 15.2414 3.49609 11.9999 3.49609Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect y="3.43005" width="24" height="17.1429" rx="2" fill="white"/>
3
+ <mask id="mask0_1993_1683" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="3" width="24" height="18">
4
+ <rect y="3.43005" width="24" height="17.1429" rx="2" fill="white"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1993_1683)">
7
+ <path d="M0 14.8587H24V9.14441H0V14.8587Z" fill="#1047B9"/>
8
+ <path d="M0 9.14434H24V3.43005H0V9.14434Z" fill="#F01C31"/>
9
+ <path d="M0 20.5729H24V14.8586H0V20.5729Z" fill="#FECB2F"/>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.75511 9.31063C5.75511 7.77012 6.32348 6.68322 7.12352 5.97204C7.94069 5.24564 9.05657 4.86249 10.2029 4.86253C11.3492 4.86255 12.4651 5.24575 13.2823 5.9722C14.0824 6.68341 14.6508 7.7703 14.6508 9.31065V11.9654H11.996C11.4816 11.9654 11.0647 12.3823 11.0647 12.8966C11.0647 13.411 11.4816 13.8279 11.996 13.8279H14.6508V15.5514H11.996C11.4816 15.5514 11.0647 15.9683 11.0647 16.4827C11.0647 16.997 11.4816 17.4139 11.996 17.4139H14.6508V20.0687C14.6508 20.5831 15.0677 21 15.582 21C16.0964 21 16.5133 20.5831 16.5133 20.0687V17.4139H19.1681C19.6824 17.4139 20.0993 16.997 20.0993 16.4827C20.0993 15.9683 19.6824 15.5514 19.1681 15.5514H16.5133V13.8279H19.1681C19.6824 13.8279 20.0993 13.411 20.0993 12.8966C20.0993 12.3823 19.6824 11.9654 19.1681 11.9654H16.5133V9.31065C16.5133 7.26491 15.7369 5.66212 14.5198 4.58017C13.3198 3.51346 11.7461 3.00004 10.2029 3C8.65975 2.99995 7.08609 3.51329 5.88609 4.58C4.66896 5.66194 3.89258 7.26476 3.89258 9.31063C3.89258 9.82494 4.30952 10.2419 4.82384 10.2419C5.33816 10.2419 5.75511 9.82494 5.75511 9.31063Z" fill="#222222"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.75511 9.31063C5.75511 7.77012 6.32348 6.68322 7.12352 5.97204C7.94069 5.24564 9.05657 4.86249 10.2029 4.86253C11.3492 4.86255 12.4651 5.24575 13.2823 5.9722C14.0824 6.68341 14.6508 7.7703 14.6508 9.31065V11.9654H11.996C11.4816 11.9654 11.0647 12.3823 11.0647 12.8966C11.0647 13.411 11.4816 13.8279 11.996 13.8279H14.6508V15.5514H11.996C11.4816 15.5514 11.0647 15.9683 11.0647 16.4827C11.0647 16.997 11.4816 17.4139 11.996 17.4139H14.6508V20.0687C14.6508 20.5831 15.0677 21 15.582 21C16.0964 21 16.5133 20.5831 16.5133 20.0687V17.4139H19.1681C19.6824 17.4139 20.0993 16.997 20.0993 16.4827C20.0993 15.9683 19.6824 15.5514 19.1681 15.5514H16.5133V13.8279H19.1681C19.6824 13.8279 20.0993 13.411 20.0993 12.8966C20.0993 12.3823 19.6824 11.9654 19.1681 11.9654H16.5133V9.31065C16.5133 7.26491 15.7369 5.66212 14.5198 4.58017C13.3198 3.51346 11.7461 3.00004 10.2029 3C8.65975 2.99995 7.08609 3.51329 5.88609 4.58C4.66896 5.66194 3.89258 7.26476 3.89258 9.31063C3.89258 9.82494 4.30952 10.2419 4.82384 10.2419C5.33816 10.2419 5.75511 9.82494 5.75511 9.31063Z" fill="#222222"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Company=Apple, Style=Gray, Background=None">
3
+ <path id="path4" d="M20.8428 17.1449C20.5101 17.9135 20.1163 18.6211 19.66 19.2715C19.0381 20.1583 18.5288 20.7721 18.1364 21.113C17.528 21.6724 16.8762 21.959 16.1782 21.9753C15.6771 21.9753 15.0728 21.8327 14.3693 21.5434C13.6636 21.2555 13.015 21.113 12.422 21.113C11.8 21.113 11.133 21.2555 10.4195 21.5434C9.70493 21.8327 9.12928 21.9834 8.68916 21.9984C8.01981 22.0269 7.35264 21.7322 6.68668 21.113C6.26164 20.7422 5.72999 20.1067 5.09309 19.2063C4.40976 18.2449 3.84796 17.13 3.40784 15.8589C2.93648 14.486 2.7002 13.1565 2.7002 11.8694C2.7002 10.3951 3.01878 9.12345 3.65689 8.05784C4.1584 7.20191 4.82557 6.52672 5.66059 6.03105C6.49562 5.53539 7.39786 5.2828 8.36949 5.26664C8.90114 5.26664 9.59833 5.43109 10.4647 5.75429C11.3287 6.07858 11.8834 6.24303 12.1266 6.24303C12.3085 6.24303 12.9247 6.05074 13.9694 5.66738C14.9573 5.31186 15.7911 5.16466 16.4742 5.22264C18.3251 5.37202 19.7157 6.10167 20.6405 7.41619C18.9851 8.4192 18.1662 9.82403 18.1825 11.6262C18.1975 13.03 18.7067 14.1981 19.7076 15.1256C20.1611 15.5561 20.6676 15.8888 21.2312 16.1251C21.109 16.4795 20.98 16.819 20.8428 17.1449ZM16.5978 0.440369C16.5978 1.54062 16.1958 2.56792 15.3946 3.51878C14.4277 4.64917 13.2582 5.30236 11.99 5.19929C11.9738 5.06729 11.9645 4.92837 11.9645 4.78239C11.9645 3.72615 12.4243 2.59576 13.2408 1.67152C13.6485 1.20356 14.167 0.814453 14.7957 0.504058C15.4231 0.198295 16.0166 0.0292007 16.5747 0.000244141C16.591 0.147331 16.5978 0.294426 16.5978 0.440355V0.440369Z" fill="#555555"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=Down, Size=24, Theme=Filled">
3
+ <path id="Shape" d="M19.7159 13.7045C20.1036 13.3111 20.0989 12.678 19.7055 12.2903C19.3121 11.9027 18.6789 11.9074 18.2913 12.3008L13 17.6711V4C13 3.44771 12.5522 3 12 3C11.4477 3 11 3.44772 11 4V17.6646L5.71501 12.3008C5.32739 11.9074 4.69424 11.9027 4.30083 12.2903C3.90743 12.678 3.90274 13.3111 4.29036 13.7045L11.1127 20.6287C11.6024 21.1256 12.4039 21.1256 12.8936 20.6287L19.7159 13.7045Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=Down Left, Size=24, Theme=Filled">
3
+ <path id="Shape" d="M13 20.9999C13.5523 20.9999 14 20.5521 14 19.9999C14 19.4476 13.5523 18.9999 13 18.9999H6.41435L20.7071 4.70711C21.0976 4.31658 21.0976 3.68342 20.7071 3.29289C20.3166 2.90237 19.6834 2.90237 19.2929 3.29289L5 17.5858V10.9999C5 10.4476 4.55228 9.99987 4 9.99987C3.44772 9.99987 3 10.4476 3 10.9999V19.9999C3 20.5521 3.44772 20.9999 4 20.9999H13Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=Down Left, Size=24, Theme=Regular">
3
+ <path id="Shape" d="M13.2456 21.0049C13.6598 21.0049 13.9956 20.6692 13.9956 20.2549C13.9956 19.8407 13.6598 19.5049 13.2456 19.5049H5.5765L20.7763 4.30517C21.0748 4.00659 21.0748 3.52251 20.7763 3.22393C20.4777 2.92536 19.9936 2.92536 19.695 3.22393L4.49561 18.4234V10.7549C4.49561 10.3407 4.15982 10.0049 3.74561 10.0049C3.33139 10.0049 2.99561 10.3407 2.99561 10.7549V20.2549C2.99561 20.6692 3.33139 21.0049 3.74561 21.0049H13.2456Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=Down, Size=24, Theme=Regular">
3
+ <path id="Shape" d="M19.7906 13.2673C20.0763 12.9674 20.0647 12.4926 19.7648 12.2069C19.4649 11.9213 18.9901 11.9328 18.7045 12.2327L12.75 18.484V3.75C12.75 3.33579 12.4142 3 12 3C11.5858 3 11.25 3.33579 11.25 3.75V18.4844L5.29514 12.2327C5.00945 11.9328 4.53472 11.9213 4.23479 12.2069C3.93487 12.4926 3.92332 12.9674 4.20901 13.2673L11.2757 20.6862C11.4367 20.8553 11.6422 20.9552 11.8557 20.9861C11.9024 20.9952 11.9506 21 12 21C12.0497 21 12.0982 20.9952 12.1452 20.9859C12.3583 20.9548 12.5632 20.8549 12.7239 20.6862L19.7906 13.2673Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Filled">
3
+ <path id="Shape" d="M5.25 20.5H18.7477C19.1619 20.5 19.4977 20.8358 19.4977 21.25C19.4977 21.6297 19.2155 21.9435 18.8494 21.9932L18.7477 22H5.25C4.83579 22 4.5 21.6642 4.5 21.25C4.5 20.8703 4.78215 20.5565 5.14823 20.5069L5.25 20.5H18.7477H5.25ZM11.8834 2.00233L12 1.99561C12.5128 1.99561 12.9355 2.38165 12.9933 2.87898L13 2.99561V15.5856L16.2941 12.2928C16.6546 11.9324 17.2218 11.9047 17.6141 12.2098L17.7083 12.293C18.0687 12.6535 18.0964 13.2207 17.7913 13.613L17.7081 13.7072L12.7105 18.7038C12.3502 19.064 11.7833 19.0919 11.391 18.7873L11.2968 18.7042L6.29338 13.7076C5.90259 13.3173 5.90215 12.6842 6.29241 12.2934C6.65265 11.9327 7.21986 11.9045 7.61236 12.2093L7.70662 12.2924L11 15.5806V2.99561C11 2.48277 11.386 2.0601 11.8834 2.00233L12 1.99561L11.8834 2.00233Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Regular">
3
+ <path id="Shape" d="M18.2498 20.4999C18.664 20.4998 19 20.8355 19 21.2497C19 21.6639 18.6644 21.9998 18.2502 21.9999L5.25022 22.0037C4.836 22.0038 4.5 21.6681 4.5 21.2539C4.5 20.8397 4.83557 20.5038 5.24978 20.5037L18.2498 20.4999ZM11.6482 2.01173L11.75 2.00488C12.1297 2.00488 12.4435 2.28704 12.4932 2.65311L12.5 2.75488L12.499 16.4399L16.2208 12.7196C16.4871 12.4533 16.9038 12.4291 17.1974 12.647L17.2815 12.7197C17.5477 12.986 17.5719 13.4026 17.354 13.6962L17.2814 13.7803L12.2837 18.7769C12.0176 19.043 11.6012 19.0673 11.3076 18.8498L11.2235 18.7772L6.22003 13.7806C5.92694 13.4879 5.92661 13.0131 6.21931 12.72C6.48539 12.4535 6.90204 12.429 7.1958 12.6467L7.27997 12.7192L10.999 16.4329L11 2.75488C11 2.37519 11.2822 2.06139 11.6482 2.01173L11.75 2.00488L11.6482 2.01173Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.30019 21C8.80314 21 8.4002 20.5971 8.4002 20.1C8.4002 19.6029 8.80314 19.2 9.30019 19.2H16.8002C18.1257 19.2 19.2002 18.1255 19.2002 16.8V7.2C19.2002 5.87452 18.1257 4.8 16.8002 4.8H9.30019C8.80314 4.8 8.4002 4.39706 8.4002 3.9C8.4002 3.40294 8.80314 3 9.30019 3H16.8002C19.1198 3 21.0002 4.8804 21.0002 7.2V16.8C21.0002 19.1196 19.1198 21 16.8002 21H9.30019ZM9.28974 7.43868C9.65498 7.10154 10.2244 7.12431 10.5615 7.48955L14.1615 11.3896C14.4798 11.7343 14.4798 12.2657 14.1615 12.6105L10.5615 16.5105C10.2244 16.8757 9.65498 16.8985 9.28974 16.5613C8.9245 16.2242 8.90173 15.6548 9.23887 15.2896L11.4446 12.9H2.1002C1.60314 12.9 1.2002 12.4971 1.2002 12C1.2002 11.5029 1.60314 11.1 2.1002 11.1H11.4446L9.23887 8.71046C8.90173 8.34522 8.9245 7.77583 9.28974 7.43868Z" fill="#222222"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.0002 20.4001C8.66883 20.4001 8.4002 20.1315 8.4002 19.8001C8.4002 19.4687 8.66883 19.2001 9.0002 19.2001H16.8002C18.1257 19.2001 19.2002 18.1256 19.2002 16.8001V7.2001C19.2002 5.87461 18.1257 4.8001 16.8002 4.8001H9.0002C8.66883 4.8001 8.4002 4.53147 8.4002 4.2001C8.4002 3.86873 8.66883 3.6001 9.0002 3.6001H16.8002C18.7884 3.6001 20.4002 5.21187 20.4002 7.2001V16.8001C20.4002 18.7883 18.7884 20.4001 16.8002 20.4001H9.0002ZM9.17593 7.37583C9.41025 7.14152 9.79014 7.14152 10.0245 7.37583L14.2245 11.5758C14.4588 11.8101 14.4588 12.19 14.2245 12.4244L10.0245 16.6244C9.79014 16.8587 9.41025 16.8587 9.17593 16.6244C8.94162 16.39 8.94162 16.0101 9.17593 15.7758L12.3517 12.6001H1.8002C1.46882 12.6001 1.2002 12.3315 1.2002 12.0001C1.2002 11.6687 1.46882 11.4001 1.8002 11.4001H12.3517L9.17593 8.22436C8.94162 7.99005 8.94162 7.61015 9.17593 7.37583Z" fill="#222222"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.3001 21C15.7972 21 16.2001 20.5971 16.2001 20.1C16.2001 19.6029 15.7972 19.2 15.3001 19.2H7.8001C6.47461 19.2 5.4001 18.1255 5.4001 16.8V7.2C5.4001 5.87452 6.47461 4.8 7.8001 4.8H15.3001C15.7972 4.8 16.2001 4.39706 16.2001 3.9C16.2001 3.40294 15.7972 3 15.3001 3H7.8001C5.4805 3 3.6001 4.8804 3.6001 7.2V16.8C3.6001 19.1196 5.4805 21 7.8001 21H15.3001ZM16.4896 7.43868C16.8549 7.10154 17.4243 7.12431 17.7614 7.48955L21.3614 11.3896C21.6797 11.7343 21.6797 12.2657 21.3614 12.6105L17.7614 16.5105C17.4243 16.8757 16.8549 16.8985 16.4896 16.5613C16.1244 16.2242 16.1016 15.6548 16.4388 15.2896L18.6445 12.9H9.3001C8.80304 12.9 8.4001 12.4971 8.4001 12C8.4001 11.5029 8.80304 11.1 9.3001 11.1H18.6445L16.4388 8.71046C16.1016 8.34522 16.1244 7.77583 16.4896 7.43868Z" fill="#222222"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
2
+ <path d="M15.0001 20.4001C15.3315 20.4001 15.6001 20.1315 15.6001 19.8001C15.6001 19.4687 15.3315 19.2001 15.0001 19.2001H7.2001C5.87461 19.2001 4.8001 18.1256 4.8001 16.8001V7.2001C4.8001 5.87461 5.87461 4.8001 7.2001 4.8001H15.0001C15.3315 4.8001 15.6001 4.53147 15.6001 4.2001C15.6001 3.86873 15.3315 3.6001 15.0001 3.6001H7.2001C5.21187 3.6001 3.6001 5.21187 3.6001 7.2001V16.8001C3.6001 18.7883 5.21187 20.4001 7.2001 20.4001H15.0001ZM16.3758 7.37583C16.6101 7.14152 16.99 7.14152 17.2244 7.37583L21.4244 11.5758C21.6587 11.8101 21.6587 12.19 21.4244 12.4244L17.2244 16.6244C16.99 16.8587 16.6101 16.8587 16.3758 16.6244C16.1415 16.39 16.1415 16.0101 16.3758 15.7758L19.5516 12.6001H9.0001C8.66873 12.6001 8.4001 12.3315 8.4001 12.0001C8.4001 11.6687 8.66873 11.4001 9.0001 11.4001H19.5516L16.3758 8.22436C16.1415 7.99005 16.1415 7.61015 16.3758 7.37583Z" fill="#222222"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=LTR, Size=24, Theme=Filled">
3
+ <path id="Shape" d="M2.75 4.50391C3.1297 4.50391 3.44349 4.78606 3.49315 5.15214L3.5 5.25391V18.7525C3.5 19.1667 3.16421 19.5025 2.75 19.5025C2.3703 19.5025 2.05651 19.2204 2.00685 18.8543L2 18.7525V5.25391C2 4.83969 2.33579 4.50391 2.75 4.50391ZM15.2098 6.38704L15.293 6.29284C15.6535 5.9324 16.2207 5.90473 16.613 6.20979L16.7072 6.29299L21.7038 11.2906C22.064 11.651 22.0919 12.2178 21.7873 12.6101L21.7042 12.7043L16.7076 17.7077C16.3173 18.0985 15.6842 18.099 15.2934 17.7087C14.9326 17.3485 14.9045 16.7813 15.2093 16.3888L15.2924 16.2945L18.581 12.9999L6 13C5.48716 13 5.06449 12.614 5.00673 12.1166L5 12C5 11.4872 5.38604 11.0645 5.88338 11.0068L6 11L18.584 10.9999L15.2928 7.70706C14.9324 7.34654 14.9047 6.7793 15.2098 6.38704L15.293 6.29284L15.2098 6.38704Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=LTR, Size=24, Theme=Regular">
3
+ <path id="Shape" d="M2.7525 4.5C3.1322 4.5 3.44594 4.78227 3.49554 5.14836L3.50237 5.25014L3.5 18.2542C3.49992 18.6684 3.16408 19.0041 2.74986 19.0041C2.37017 19.0041 2.05642 18.7218 2.00683 18.3557L2 18.2539L2.00237 5.24986C2.00244 4.83565 2.33829 4.5 2.7525 4.5ZM15.6471 6.30373L15.7197 6.21961C15.986 5.95338 16.4027 5.92921 16.6963 6.1471L16.7804 6.21972L21.777 11.2174C22.0431 11.4835 22.0674 11.8999 21.8498 12.1935L21.7773 12.2776L16.7807 17.2811C16.488 17.5742 16.0131 17.5745 15.72 17.2818C15.4536 17.0157 15.4291 16.5991 15.6467 16.3053L15.7193 16.2211L19.43 12.504L5.75295 12.5049C5.37326 12.5049 5.05946 12.2228 5.0098 11.8567L5.00295 11.7549C5.00295 11.3752 5.28511 11.0615 5.65118 11.0118L5.75295 11.0049L19.443 11.004L15.7196 7.28028C15.4534 7.01398 15.4292 6.59732 15.6471 6.30373L15.7197 6.21961L15.6471 6.30373Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=RTL, Size=24, Theme=Filled">
3
+ <path id="Shape" d="M21.2471 4.50391C20.8674 4.50391 20.5536 4.78606 20.5039 5.15214L20.4971 5.25391V18.7525C20.4971 19.1667 20.8329 19.5025 21.2471 19.5025C21.6268 19.5025 21.9406 19.2204 21.9902 18.8543L21.9971 18.7525V5.25391C21.9971 4.83969 21.6613 4.50391 21.2471 4.50391ZM8.7873 6.38704L8.7041 6.29284C8.34358 5.9324 7.77635 5.90473 7.38409 6.20979L7.28989 6.29299L2.29328 11.2906C1.93303 11.651 1.90516 12.2178 2.20979 12.6101L2.29287 12.7043L7.28948 17.7077C7.67974 18.0985 8.3129 18.099 8.70369 17.7087C9.06442 17.3485 9.09254 16.7813 8.78778 16.3888L8.70466 16.2945L5.41607 12.9999L17.9971 13C18.5099 13 18.9326 12.614 18.9903 12.1166L18.9971 12C18.9971 11.4872 18.611 11.0645 18.1137 11.0068L17.9971 11L5.41307 10.9999L8.70425 7.70706C9.0647 7.34654 9.09237 6.7793 8.7873 6.38704L8.7041 6.29284L8.7873 6.38704Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=RTL, Size=24, Theme=Regular">
3
+ <path id="Shape" d="M21.2446 4.5C20.8649 4.5 20.5511 4.78227 20.5015 5.14836L20.4947 5.25014L20.4971 18.2542C20.4971 18.6684 20.833 19.0041 21.2472 19.0041C21.6269 19.0041 21.9406 18.7218 21.9902 18.3557L21.9971 18.2539L21.9947 5.24986C21.9946 4.83565 21.6588 4.5 21.2446 4.5ZM8.34997 6.30373L8.27735 6.21961C8.01105 5.95338 7.59439 5.92921 7.3008 6.1471L7.21669 6.21972L2.22007 11.2174C1.95398 11.4835 1.92968 11.8999 2.14724 12.1935L2.21976 12.2776L7.21638 17.2811C7.50907 17.5742 7.98394 17.5745 8.27704 17.2818C8.54349 17.0157 8.56798 16.5991 8.35032 16.3053L8.27776 16.2211L4.56707 12.504L18.2441 12.5049C18.6238 12.5049 18.9376 12.2228 18.9873 11.8567L18.9941 11.7549C18.9941 11.3752 18.712 11.0615 18.3459 11.0118L18.2441 11.0049L4.55407 11.004L8.27746 7.28028C8.54369 7.01398 8.56786 6.59732 8.34997 6.30373L8.27735 6.21961L8.34997 6.30373Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=Up, Size=24, Theme=Filled">
3
+ <path id="Shape" d="M12.7071 2.29289C12.3166 1.90237 11.6834 1.90237 11.2929 2.29289L6.29289 7.29289C5.90237 7.68342 5.90237 8.31658 6.29289 8.70711C6.68342 9.09763 7.31658 9.09763 7.70711 8.70711L11 5.41421V18C11 18.5523 11.4477 19 12 19C12.5523 19 13 18.5523 13 18V5.41421L16.2929 8.70711C16.6834 9.09763 17.3166 9.09763 17.7071 8.70711C18.0976 8.31658 18.0976 7.68342 17.7071 7.29289L12.7071 2.29289ZM5.25 20.5C4.83579 20.5 4.5 20.8358 4.5 21.25C4.5 21.6642 4.83579 22 5.25 22H18.75C19.1642 22 19.5 21.6642 19.5 21.25C19.5 20.8358 19.1642 20.5 18.75 20.5H5.25Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=Up, Size=24, Theme=Regular">
3
+ <path id="Shape" d="M12.2803 2.21967C11.9874 1.92678 11.5126 1.92678 11.2197 2.21967L6.21967 7.21967C5.92678 7.51256 5.92678 7.98744 6.21967 8.28033C6.51256 8.57322 6.98744 8.57322 7.28033 8.28033L11 4.56066V18.25C11 18.6642 11.3358 19 11.75 19C12.1642 19 12.5 18.6642 12.5 18.25V4.56066L16.2197 8.28033C16.5126 8.57322 16.9874 8.57322 17.2803 8.28033C17.5732 7.98744 17.5732 7.51256 17.2803 7.21967L12.2803 2.21967ZM5.25 20.5C4.83579 20.5 4.5 20.8358 4.5 21.25C4.5 21.6642 4.83579 22 5.25 22H18.25C18.6642 22 19 21.6642 19 21.25C19 20.8358 18.6642 20.5 18.25 20.5H5.25Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Filled">
3
+ <path id="Shape" d="M21.25 4.5C21.6297 4.5 21.9435 4.78215 21.9932 5.14823L22 5.25V18.75C22 19.1642 21.6642 19.5 21.25 19.5C20.8703 19.5 20.5565 19.2178 20.5069 18.8518L20.5 18.75V5.25C20.5 4.83579 20.8358 4.5 21.25 4.5ZM12.2098 6.38702L12.293 6.29282C12.6535 5.93237 13.2207 5.9047 13.613 6.20977L13.7072 6.29297L18.7038 11.2906C19.064 11.6509 19.0919 12.2178 18.7873 12.6101L18.7042 12.7043L13.7076 17.7077C13.3173 18.0985 12.6842 18.0989 12.2934 17.7087C11.9327 17.3484 11.9045 16.7812 12.2093 16.3887L12.2924 16.2945L15.581 13H3C2.48716 13 2.06449 12.614 2.00673 12.1166L2 12C2 11.4872 2.38604 11.0645 2.88338 11.0067L3 11H15.584L12.2928 7.70703C11.9324 7.34651 11.9047 6.77928 12.2098 6.38702L12.293 6.29282L12.2098 6.38702Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Regular">
3
+ <path id="Shape" d="M21.2503 4.5C21.63 4.5 21.9438 4.78215 21.9934 5.14823L22.0003 5.25V18.2541C22.0003 18.6683 21.6645 19.0041 21.2503 19.0041C20.8706 19.0041 20.5568 18.7219 20.5071 18.3558L20.5003 18.2541V5.25C20.5003 4.83579 20.8361 4.5 21.2503 4.5ZM12.6474 6.30373L12.72 6.21961C12.9863 5.95338 13.403 5.92921 13.6966 6.1471L13.7807 6.21972L18.7773 11.2174C19.0434 11.4835 19.0677 11.8999 18.8501 12.1935L18.7776 12.2776L13.781 17.2811C13.4883 17.5742 13.0134 17.5745 12.7203 17.2818C12.4539 17.0157 12.4294 16.5991 12.647 16.3053L12.7196 16.2211L16.4305 12.504L2.75049 12.5049C2.37079 12.5049 2.057 12.2228 2.00733 11.8567L2.00049 11.7549C2.00049 11.3752 2.28264 11.0615 2.64872 11.0118L2.75049 11.0049L16.4435 11.004L12.7199 7.28028C12.4537 7.01398 12.4295 6.59732 12.6474 6.30373L12.72 6.21961L12.6474 6.30373Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=Left, Size=24, Theme=Filled">
3
+ <path id="Shape" d="M10.2954 19.7162C10.6888 20.1038 11.322 20.0991 11.7096 19.7057C12.0972 19.3123 12.0925 18.6792 11.6991 18.2915L6.32876 13.0001H19.9999C20.5522 13.0001 20.9999 12.5524 20.9999 12.0001C20.9999 11.4479 20.5522 11.0001 19.9999 11.0001H6.33536L11.6991 5.71525C12.0925 5.32763 12.0972 4.69448 11.7096 4.30108C11.322 3.90767 10.6888 3.90298 10.2954 4.29061L3.37122 11.113C2.87431 11.6026 2.87431 12.4042 3.37122 12.8938L10.2954 19.7162Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=Left, Size=24, Theme=Regular">
3
+ <path id="Shape" d="M10.7327 19.791C11.0326 20.0766 11.5074 20.0651 11.7931 19.7652C12.0787 19.4652 12.0672 18.9905 11.7673 18.7048L5.51587 12.7502L20.25 12.7502C20.6642 12.7502 21 12.4144 21 12.0002C21 11.586 20.6642 11.2502 20.25 11.2502L5.51577 11.2502L11.7673 5.29551C12.0672 5.00982 12.0787 4.53509 11.7931 4.23516C11.5074 3.93523 11.0326 3.92369 10.7327 4.20938L3.31379 11.2761C3.14486 11.437 3.04491 11.6422 3.01393 11.8556C3.00479 11.9024 3 11.9507 3 12.0002C3 12.0498 3.00481 12.0982 3.01398 12.1451C3.04502 12.3583 3.14496 12.5634 3.31379 12.7243L10.7327 19.791Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Filled">
3
+ <path id="Shape" d="M14.7123 2.28927L14.6251 2.21162C14.2326 1.90101 13.6607 1.92689 13.2981 2.28927L13.2204 2.37643C12.9096 2.76867 12.9355 3.34012 13.2981 3.70249L14.597 4.99947L8.99921 4.99968L8.75859 5.00373C5.00445 5.13047 2 8.21161 2 11.994C2 13.4387 2.43833 14.7811 3.18863 15.8923C3.37024 16.1437 3.666 16.3073 4 16.3073C4.55228 16.3073 5 15.8599 5 15.308C5 15.0919 4.93132 14.8917 4.81525 14.7293L4.68008 14.5112C4.24775 13.772 4 12.9119 4 11.994C4 9.23493 6.23822 6.99828 8.99921 6.99828L14.595 6.99807L13.2981 8.29546L13.2204 8.38262C12.9096 8.77486 12.9355 9.34631 13.2981 9.70868C13.6886 10.0989 14.3218 10.0989 14.7123 9.70868L17.7175 6.70559L17.7952 6.61843C18.106 6.22619 18.0801 5.65474 17.7175 5.29237L14.7123 2.28927ZM20.7865 8.06061C20.6034 7.82799 20.3191 7.6786 20 7.6786C19.4477 7.6786 19 8.126 19 8.6779C19 8.88608 19.0637 9.07939 19.1717 9.2389C19.6952 10.0287 20 10.9757 20 11.994C20 14.753 17.7618 16.9897 15.0008 16.9897L9.415 16.9891L10.7087 15.6977L10.7923 15.603C11.0733 15.2413 11.0713 14.7312 10.7864 14.3716L10.7087 14.2845L10.6139 14.2009C10.252 13.9201 9.7415 13.9221 9.38169 14.2068L9.29447 14.2845L6.28926 17.2876L6.20562 17.3823C5.92465 17.7439 5.92663 18.2541 6.21156 18.6136L6.28926 18.7008L9.29447 21.7039L9.38867 21.787C9.78097 22.0918 10.3482 22.0641 10.7087 21.7039C11.0713 21.3415 11.0972 20.7701 10.7864 20.3778L10.7087 20.2907L9.405 18.9877L15.0008 18.9883L15.2414 18.9842C18.9956 18.8575 22 15.7764 22 11.994C22 10.534 21.5524 9.17858 20.7868 8.05715L20.7865 8.06061Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Regular">
3
+ <path id="Shape" d="M14.6102 2.47047L14.5334 2.4031C14.2394 2.17855 13.818 2.20101 13.5495 2.47047L13.4824 2.54755C13.2587 2.84259 13.281 3.26552 13.5495 3.53498L15.521 5.5118H8.5L8.26687 5.51592C4.785 5.63911 2 8.51085 2 12.0354C2 13.7259 2.6407 15.2663 3.6917 16.4252L3.76407 16.4947C3.89496 16.6065 4.06463 16.674 4.25 16.674C4.66421 16.674 5 16.337 5 15.9213C5 15.7481 4.9417 15.5885 4.84373 15.4613L4.64439 15.2306C3.92953 14.3627 3.5 13.2494 3.5 12.0354C3.5 9.26396 5.73858 7.01725 8.5 7.01725H15.381L13.5495 8.85754L13.4824 8.93463C13.2587 9.22967 13.281 9.6526 13.5495 9.92206C13.8424 10.216 14.3173 10.216 14.6102 9.92206L17.7922 6.72852L17.8593 6.65144C18.083 6.3564 18.0606 5.93347 17.7922 5.66401L14.6102 2.47047ZM20.23 7.57108C20.0999 7.46224 19.9326 7.39677 19.75 7.39677C19.3358 7.39677 19 7.73378 19 8.14949C19 8.33618 19.0677 8.507 19.1791 8.63722C19.9992 9.53109 20.5 10.7246 20.5 12.0354C20.5 14.8069 18.2614 17.0536 15.5 17.0536H8.558L10.4634 15.1425L10.5365 15.0573C10.7339 14.7897 10.7319 14.4206 10.5305 14.155L10.4634 14.0779L10.3785 14.0045C10.1119 13.8065 9.74409 13.8085 9.47951 14.0106L9.40271 14.0779L6.22073 17.2715L6.14756 17.3566C5.95023 17.6242 5.95224 17.9934 6.15361 18.2589L6.22073 18.336L9.40271 21.5295L9.48683 21.6024C9.78044 21.8211 10.1971 21.7968 10.4634 21.5295C10.7319 21.2601 10.7542 20.8371 10.5305 20.5421L10.4634 20.465L8.564 18.559H15.5L15.7331 18.5549C19.215 18.4317 22 15.56 22 12.0354C22 10.342 21.3571 8.79923 20.3029 7.63965L20.23 7.57108Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Filled">
3
+ <path id="Shape" d="M7.20711 2.54289C7.59763 2.93342 7.59763 3.56658 7.20711 3.95711L5.41421 5.75H13.25C17.6683 5.75 21.25 9.33172 21.25 13.75C21.25 18.1683 17.6683 21.75 13.25 21.75C8.83172 21.75 5.25 18.1683 5.25 13.75C5.25 13.1977 5.69772 12.75 6.25 12.75C6.80228 12.75 7.25 13.1977 7.25 13.75C7.25 17.0637 9.93629 19.75 13.25 19.75C16.5637 19.75 19.25 17.0637 19.25 13.75C19.25 10.4363 16.5637 7.75 13.25 7.75H5.41421L7.20711 9.54289C7.59763 9.93342 7.59763 10.5666 7.20711 10.9571C6.81658 11.3476 6.18342 11.3476 5.79289 10.9571L2.29289 7.45711C1.90237 7.06658 1.90237 6.43342 2.29289 6.04289L5.79289 2.54289C6.18342 2.15237 6.81658 2.15237 7.20711 2.54289Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Regular">
3
+ <path id="Shape" d="M6.78033 2.71967C7.07322 3.01256 7.07322 3.48744 6.78033 3.78033L4.56066 6H13.25C17.5302 6 21 9.46979 21 13.75C21 18.0302 17.5302 21.5 13.25 21.5C8.96979 21.5 5.5 18.0302 5.5 13.75C5.5 13.3358 5.83579 13 6.25 13C6.66421 13 7 13.3358 7 13.75C7 17.2018 9.79822 20 13.25 20C16.7018 20 19.5 17.2018 19.5 13.75C19.5 10.2982 16.7018 7.5 13.25 7.5H4.56066L6.78033 9.71967C7.07322 10.0126 7.07322 10.4874 6.78033 10.7803C6.48744 11.0732 6.01256 11.0732 5.71967 10.7803L2.21967 7.28033C1.92678 6.98744 1.92678 6.51256 2.21967 6.21967L5.71967 2.71967C6.01256 2.42678 6.48744 2.42678 6.78033 2.71967Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=Right, Size=24, Theme=Filled">
3
+ <path id="Shape" d="M13.7045 4.28377C13.3111 3.89615 12.678 3.90084 12.2904 4.29424C11.9027 4.68765 11.9074 5.3208 12.3008 5.70842L17.6712 10.9998H4C3.44771 10.9998 3 11.4475 3 11.9998C3 12.5521 3.44772 12.9998 4 12.9998H17.6646L12.3008 18.2847C11.9074 18.6723 11.9027 19.3055 12.2904 19.6989C12.678 20.0923 13.3111 20.097 13.7045 19.7094L20.6287 12.887C21.1256 12.3974 21.1256 11.5958 20.6287 11.1062L13.7045 4.28377Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=Right, Size=24, Theme=Regular">
3
+ <path id="Shape" d="M13.2673 4.20938C12.9674 3.92369 12.4926 3.93523 12.2069 4.23516C11.9213 4.53509 11.9328 5.00982 12.2327 5.29551L18.4841 11.2501H3.75C3.33579 11.2501 3 11.5859 3 12.0001C3 12.4143 3.33579 12.7501 3.75 12.7501H18.4842L12.2327 18.7048C11.9328 18.9905 11.9213 19.4652 12.2069 19.7652C12.4926 20.0651 12.9674 20.0766 13.2673 19.791L20.6862 12.7243C20.8551 12.5634 20.9551 12.3581 20.9861 12.1448C20.9952 12.098 21 12.0496 21 12.0001C21 11.9506 20.9952 11.9021 20.986 11.8552C20.955 11.642 20.855 11.4369 20.6862 11.2761L13.2673 4.20938Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.28829 4.29327L2.29252 8.29327L2.20938 8.38752C1.90456 8.77997 1.93259 9.34719 2.29327 9.70748L2.38752 9.79062C2.77997 10.0954 3.34719 10.0674 3.70748 9.70673L6.001 7.41L6.00101 19.0007L6.00774 19.1173C6.0655 19.6146 6.48817 20.0007 7.00101 20.0007L7.11763 19.9939C7.61497 19.9362 8.00101 19.5135 8.00101 19.0007L8.001 7.417L10.2944 9.70757L10.3886 9.7907C10.7811 10.0955 11.3483 10.0674 11.7086 9.70664C12.0988 9.31586 12.0984 8.6827 11.7077 8.29243L7.70242 4.29243L7.60816 4.20931C7.21571 3.90456 6.64855 3.93262 6.28829 4.29327ZM17 4.00317L16.8834 4.0099C16.386 4.06767 16 4.49034 16 5.00317L16 16.583L13.7068 14.2925L13.6125 14.2094C13.2201 13.9045 12.6529 13.9325 12.2926 14.2932C11.9022 14.6839 11.9025 15.3171 12.2932 15.7074L16.297 19.7074L16.3912 19.7905C16.7837 20.0954 17.3509 20.0674 17.7112 19.7067L21.7074 15.7067L21.7906 15.6125C22.0954 15.22 22.0674 14.6528 21.7068 14.2925L21.6125 14.2094C21.2201 13.9045 20.6529 13.9325 20.2926 14.2932L18 16.587L18 5.00317L17.9933 4.88655C17.9355 4.38921 17.5128 4.00317 17 4.00317Z" fill="#222222"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M17.2509 4L17.1491 4.00685C16.783 4.05651 16.5009 4.3703 16.5009 4.75L16.5 17.442L13.2801 14.2244L13.196 14.1518C12.9023 13.9341 12.4856 13.9585 12.2194 14.2248C11.9267 14.5179 11.9269 14.9927 12.2199 15.2855L16.7237 19.7855L16.8078 19.8581C17.1015 20.0758 17.5182 20.0514 17.7843 19.7851L22.2806 15.2851L22.3531 15.2009C22.5709 14.9072 22.5465 14.4905 22.2801 14.2244L22.196 14.1518C21.9023 13.9341 21.4856 13.9585 21.2194 14.2248L18 17.446L18.0009 4.75L17.994 4.64823C17.9444 4.28215 17.6306 4 17.2509 4ZM6.21441 4.21969L1.71965 8.71474L1.64704 8.79886C1.42919 9.09248 1.45341 9.50914 1.71969 9.7754L1.80381 9.84802C2.09743 10.0659 2.51409 10.0416 2.78035 9.77537L5.997 6.55711L5.99766 19.2549L6.00451 19.3567C6.05417 19.7228 6.36797 20.0049 6.74766 20.0049L6.84943 19.9981C7.21551 19.9484 7.49766 19.6346 7.49766 19.2549L7.497 6.55911L10.7199 9.77596L10.8041 9.84849C11.0979 10.066 11.5145 10.0414 11.7805 9.77481C12.0731 9.4816 12.0726 9.00672 11.7794 8.71415L7.27451 4.21909L7.19038 4.14661C6.89676 3.9292 6.48047 3.95361 6.21441 4.21969Z" fill="#222222"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.0518 5.0285C15.7169 5.46765 15.8013 6.09515 16.2405 6.43007C17.9675 7.74714 19 9.78703 19 12C19 15.4973 16.4352 18.3956 13.084 18.9166L13.7929 18.2071C14.1834 17.8166 14.1834 17.1834 13.7929 16.7929C13.4024 16.4024 12.7692 16.4024 12.3787 16.7929L9.87868 19.2929C9.48816 19.6834 9.48816 20.3166 9.87868 20.7071L12.3787 23.2071C12.7692 23.5976 13.4024 23.5976 13.7929 23.2071C14.1834 22.8166 14.1834 22.1834 13.7929 21.7929L12.9497 20.9505C17.4739 20.476 21 16.6498 21 12C21 9.15644 19.6712 6.53122 17.4533 4.83978C17.0142 4.50486 16.3867 4.58936 16.0518 5.0285ZM14.1213 3.29289L11.6213 0.792893C11.2308 0.402369 10.5976 0.402369 10.2071 0.792893C9.84662 1.15338 9.81889 1.72061 10.1239 2.1129L10.2071 2.20711L11.0503 3.04951C6.52615 3.52399 3 7.35021 3 12C3 14.7198 4.21515 17.2432 6.2716 18.9419C6.6974 19.2936 7.32771 19.2335 7.67943 18.8077C8.03116 18.3819 7.97111 17.7516 7.54531 17.3999C5.94404 16.0772 5 14.1168 5 12C5 8.50269 7.56475 5.60441 10.916 5.08343L10.2071 5.79289C9.81658 6.18342 9.81658 6.81658 10.2071 7.20711C10.5676 7.56759 11.1348 7.59532 11.5271 7.2903L11.6213 7.20711L14.1213 4.70711C14.4818 4.34662 14.5095 3.77939 14.2045 3.3871L14.1213 3.29289Z" fill="#222222"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.2506 5.18011C15.9994 5.50947 16.0627 5.9801 16.3921 6.23128C18.1804 7.59515 19.25 9.70821 19.25 12C19.25 15.736 16.4242 18.812 12.7933 19.2071L13.4697 18.5303C13.7626 18.2374 13.7626 17.7626 13.4697 17.4697C13.2034 17.2034 12.7867 17.1792 12.4931 17.3971L12.409 17.4697L10.409 19.4697C10.1427 19.7359 10.1185 20.1526 10.3364 20.4462L10.409 20.5303L12.409 22.5303C12.7019 22.8232 13.1768 22.8232 13.4697 22.5303C13.7359 22.2641 13.7601 21.8474 13.5423 21.5538L13.4697 21.4697L12.7194 20.7208C17.2154 20.355 20.75 16.5903 20.75 12C20.75 9.23526 19.4582 6.68321 17.3017 5.03856C16.9724 4.78738 16.5017 4.85075 16.2506 5.18011ZM10.5303 1.46967C10.2374 1.76256 10.2374 2.23744 10.5303 2.53033L11.2796 3.27923C6.78409 3.6456 3.25 7.41008 3.25 12C3.25 14.6445 4.43126 17.0974 6.43081 18.7491C6.75016 19.0129 7.22289 18.9679 7.48669 18.6485C7.75048 18.3292 7.70545 17.8564 7.3861 17.5926C5.72793 16.2229 4.75 14.1922 4.75 12C4.75 8.26436 7.57532 5.18861 11.2057 4.79301L10.5303 5.46967C10.2374 5.76256 10.2374 6.23744 10.5303 6.53033C10.8232 6.82322 11.2981 6.82322 11.591 6.53033L13.591 4.53033C13.8839 4.23744 13.8839 3.76256 13.591 3.46967L11.591 1.46967C11.2981 1.17678 10.8232 1.17678 10.5303 1.46967Z" fill="#222222"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=Up, Size=24, Theme=Filled">
3
+ <path id="Shape" d="M4.28401 10.2954C3.89639 10.6888 3.90108 11.322 4.29449 11.7096C4.68789 12.0972 5.32104 12.0925 5.70866 11.6991L11 6.32882V19.9999C11 20.5522 11.4477 20.9999 12 20.9999C12.5523 20.9999 13 20.5522 13 19.9999V6.3353L18.2849 11.6991C18.6726 12.0925 19.3057 12.0972 19.6991 11.7096C20.0925 11.322 20.0972 10.6888 19.7096 10.2954L12.8872 3.37122C12.3976 2.87431 11.596 2.87431 11.1064 3.37122L4.28401 10.2954Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=Up Left, Size=24, Theme=Filled">
3
+ <path id="Shape" d="M13 3C13.5523 3 14 3.44772 14 4C14 4.55228 13.5523 5 13 5H6.41435L20.7071 19.2928C21.0976 19.6833 21.0976 20.3164 20.7071 20.707C20.3166 21.0975 19.6834 21.0975 19.2929 20.707L5 6.41408V13C5 13.5523 4.55228 14 4 14C3.44772 14 3 13.5523 3 13V4C3 3.44772 3.44772 3 4 3H13Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=Up Left, Size=24, Theme=Regular">
3
+ <path id="Shape" d="M13.2456 3C13.6598 3 13.9956 3.33579 13.9956 3.75C13.9956 4.16421 13.6598 4.5 13.2456 4.5H5.5765L20.7763 19.6998C21.0748 19.9983 21.0748 20.4824 20.7763 20.781C20.4777 21.0796 19.9936 21.0796 19.695 20.781L4.49561 5.58158V13.25C4.49561 13.6642 4.15982 14 3.74561 14C3.33139 14 2.99561 13.6642 2.99561 13.25V3.75C2.99561 3.33579 3.33139 3 3.74561 3H13.2456Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=Up Right, Size=24, Theme=Filled">
3
+ <path id="Shape" d="M11 3C10.4477 3 10 3.44772 10 4C10 4.55228 10.4477 5 11 5H17.5857L3.29289 19.2928C2.90237 19.6833 2.90237 20.3164 3.29289 20.707C3.68342 21.0975 4.31658 21.0975 4.70711 20.707L19 6.41408V13C19 13.5523 19.4477 14 20 14C20.5523 14 21 13.5523 21 13V4C21 3.44772 20.5523 3 20 3H11Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=Up Right, Size=24, Theme=Regular">
3
+ <path id="Shape" d="M10.7502 3C10.336 3 10.0002 3.33579 10.0002 3.75C10.0002 4.16421 10.336 4.5 10.7502 4.5H18.4193L3.21954 19.6998C2.92096 19.9983 2.92096 20.4824 3.21954 20.781C3.51811 21.0796 4.0022 21.0796 4.30077 20.781L19.5002 5.58158V13.25C19.5002 13.6642 19.836 14 20.2502 14C20.6644 14 21.0002 13.6642 21.0002 13.25V3.75C21.0002 3.33579 20.6644 3 20.2502 3H10.7502Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Direction=Up, Size=24, Theme=Regular">
3
+ <path id="Shape" d="M4.20938 10.7327C3.92369 11.0326 3.93523 11.5074 4.23516 11.7931C4.53509 12.0787 5.00982 12.0672 5.29551 11.7673L11.25 5.516V20.25C11.25 20.6642 11.5858 21 12 21C12.4142 21 12.75 20.6642 12.75 20.25V5.51565L18.7048 11.7673C18.9905 12.0672 19.4652 12.0787 19.7652 11.7931C20.0651 11.5074 20.0766 11.0326 19.791 10.7327L12.7243 3.31379C12.5632 3.14474 12.3578 3.04477 12.1443 3.01386C12.0976 3.00477 12.0494 3 12 3C11.9503 3 11.9017 3.00483 11.8547 3.01406C11.6417 3.04518 11.4368 3.14509 11.2761 3.31379L4.20938 10.7327Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Filled">
3
+ <path id="Shape" d="M15.9999 2C19.3136 2 21.9999 4.68629 21.9999 8C21.9999 9.5373 21.4178 10.9843 20.396 12.0835L20.2061 12.2784L11.479 21.0053L11.4259 21.0548L11.3702 21.0997C10.7009 21.6759 9.84594 22 8.9429 22C6.88779 22 5.22179 20.334 5.22179 18.2789C5.22179 17.3775 5.54481 16.5248 6.11735 15.8574L6.26564 15.6945L6.28072 15.6826L13.5717 8.37879C13.9619 7.98793 14.5951 7.98737 14.986 8.37755C15.3768 8.76774 15.3774 9.4009 14.9872 9.79177L7.69618 17.0956L7.68524 17.1039C7.38894 17.4208 7.22179 17.8354 7.22179 18.2789C7.22179 19.2294 7.99236 20 8.9429 20C9.32185 20 9.67979 19.8781 9.97412 19.6571L10.0962 19.5564L10.097 19.558L18.7994 10.8571L18.958 10.6927C19.6231 9.96299 19.9999 9.0125 19.9999 8C19.9999 5.79086 18.2091 4 15.9999 4C14.9383 4 13.9453 4.4146 13.2048 5.13858L13.0501 5.29842L13.0316 5.31139L3.70629 14.6403C3.31585 15.0309 2.68269 15.031 2.29207 14.6406C1.90146 14.2501 1.90132 13.617 2.29176 13.2264L11.6007 3.91324L11.6473 3.87021C12.7712 2.68577 14.3316 2 15.9999 2Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Regular">
3
+ <path id="Shape" d="M11.7712 3.74358C14.1127 1.4 17.9117 1.4 20.2548 3.74314C22.5379 6.02621 22.5964 9.69142 20.4304 12.0454L20.2423 12.2427L11.4422 21.0409L11.4057 21.0712C9.94443 22.3879 7.69043 22.3432 6.28306 20.9358C4.96404 19.6168 4.84193 17.5541 5.91671 16.0974C5.94005 16.0521 5.9683 16.0083 6.00152 15.9672L6.05507 15.9075L6.14198 15.8198L6.28306 15.6719L6.28598 15.6748L13.7217 8.22047C13.9876 7.95385 14.4043 7.92909 14.6982 8.14656L14.7824 8.21906C15.049 8.48497 15.0738 8.9016 14.8563 9.19551L14.7838 9.27972L7.18917 16.8928C6.47153 17.7684 6.52141 19.0627 7.33881 19.8801C8.16787 20.7091 9.48752 20.7486 10.3633 19.9985L19.196 11.1681C20.9515 9.41041 20.9515 6.56116 19.1941 4.8038C17.4917 3.10136 14.7646 3.04816 12.9981 4.6442L12.8302 4.8038L12.8176 4.81812L3.28131 14.3544C2.98841 14.6473 2.51354 14.6473 2.22065 14.3544C1.95438 14.0882 1.93017 13.6715 2.14803 13.3779L2.22065 13.2938L11.7695 3.74314L11.7712 3.74358Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M18.5712 2.85077C15.3427 0.986807 11.2144 2.09296 9.35048 5.32144L9.10048 5.75445C8.89337 6.11317 9.01628 6.57186 9.375 6.77897L13.9095 9.39697L11.1038 14.3069C9.22371 14.5459 7.5615 15.5242 6.32127 16.9141C7.05178 17.0327 7.67099 17.5509 7.90411 18.2764C8.13947 19.0089 8.62847 19.232 9.02241 19.2364C9.42476 19.2409 9.88419 19.0232 10.1026 18.3679C10.3749 17.5512 11.1391 17.0003 12 17.0003C12.8609 17.0003 13.6251 17.5512 13.8974 18.3679C14.1158 19.0232 14.5752 19.2409 14.9776 19.2364C15.3715 19.232 15.8605 19.0089 16.0959 18.2764C16.3285 17.5526 16.9464 17.033 17.6788 16.9141C16.4253 15.5093 14.7407 14.525 12.8357 14.2995L15.2086 10.147L19.7673 12.779C20.126 12.9861 20.5847 12.8632 20.7918 12.5045L21.0418 12.0714C22.9058 8.84296 21.7996 4.71473 18.5712 2.85077ZM6.71405 18.6587C6.61104 18.3382 6.30703 18.1256 5.97059 18.1388C5.63415 18.152 5.34774 18.3878 5.27018 18.7154C5.05935 19.606 4.66338 20.0789 4.22869 20.3495C3.76977 20.6351 3.1784 20.7502 2.5 20.7502C2.08579 20.7502 1.75 21.086 1.75 21.5002C1.75 21.9145 2.08579 22.2502 2.5 22.2502C3.3216 22.2502 4.23023 22.1154 5.02131 21.623C5.4339 21.3662 5.79237 21.026 6.08332 20.5943C7.63479 22.4601 10.4928 22.4507 12 20.5653C13.5336 22.4838 16.4661 22.4599 17.9973 20.4942C18.8448 21.6033 20.1675 22.2502 21.5 22.2502C21.9142 22.2502 22.25 21.9145 22.25 21.5002C22.25 21.086 21.9142 20.7502 21.5 20.7502C20.3169 20.7502 19.1155 19.9531 18.7163 18.666C18.6194 18.3535 18.331 18.1399 18.0038 18.1382C17.6766 18.1365 17.3861 18.3472 17.286 18.6587C16.502 21.0984 13.4764 21.0578 12.7115 18.7631C12.6094 18.4568 12.3228 18.2502 12 18.2502C11.6772 18.2502 11.3906 18.4568 11.2885 18.7631C10.5236 21.0578 7.49798 21.0984 6.71405 18.6587Z" fill="#222222"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
2
+ <path d="M9.35048 5.32144C11.2144 2.09296 15.3427 0.986807 18.5712 2.85077C21.7996 4.71473 22.9058 8.84296 21.0418 12.0714L20.7918 12.5045C20.5847 12.8632 20.126 12.9861 19.7673 12.779L15.2086 10.147L12.8357 14.2995C14.7406 14.525 16.4252 15.5093 17.6787 16.9141C17.1534 16.9994 16.6869 17.2909 16.3793 17.7161C15.2141 16.5078 13.6661 15.7503 12 15.7503C10.3339 15.7503 8.78594 16.5078 7.62074 17.7161C7.31271 17.2903 6.84569 16.9992 6.32132 16.914C7.56154 15.5241 9.22374 14.5459 11.1038 14.3069L13.9095 9.39697L9.375 6.77897C9.01628 6.57186 8.89337 6.11317 9.10048 5.75445L9.35048 5.32144ZM10.7796 5.85786L12.7456 6.99293C13.2797 6.17401 13.8198 5.49998 14.4891 4.89141C15.0146 4.41354 15.6067 3.98805 16.3152 3.56564C14.22 3.10815 11.9869 3.97619 10.7796 5.85786ZM16.5896 9.21228C17.1442 8.21522 17.4101 7.42287 17.5058 6.65729C17.5834 6.03611 17.5534 5.40152 17.4418 4.64661C16.6236 5.10695 16.0124 5.53366 15.4982 6.00122C14.9653 6.48581 14.5165 7.03232 14.0468 7.74416L16.5896 9.21228ZM17.8888 9.96236L19.8627 11.102C20.9059 9.08223 20.5111 6.66785 19.0063 5.08258C19.063 5.68104 19.0673 6.25857 18.9942 6.84334C18.868 7.85306 18.518 8.83567 17.8888 9.96236ZM6.71405 18.6587C6.61104 18.3382 6.30703 18.1256 5.97059 18.1388C5.63415 18.152 5.34774 18.3878 5.27018 18.7154C5.05935 19.606 4.66338 20.0789 4.22869 20.3495C3.76977 20.6351 3.1784 20.7502 2.5 20.7502C2.08579 20.7502 1.75 21.086 1.75 21.5002C1.75 21.9145 2.08579 22.2502 2.5 22.2502C3.3216 22.2502 4.23023 22.1154 5.02131 21.623C5.4339 21.3662 5.79237 21.026 6.08332 20.5943C7.63479 22.4601 10.4928 22.4507 12 20.5653C13.5336 22.4838 16.4661 22.4599 17.9973 20.4942C18.8448 21.6033 20.1675 22.2502 21.5 22.2502C21.9142 22.2502 22.25 21.9145 22.25 21.5002C22.25 21.086 21.9142 20.7502 21.5 20.7502C20.3169 20.7502 19.1155 19.9531 18.7163 18.666C18.6194 18.3535 18.331 18.1399 18.0038 18.1382C17.6766 18.1365 17.3861 18.3472 17.286 18.6587C16.502 21.0984 13.4764 21.0578 12.7115 18.7631C12.6094 18.4568 12.3228 18.2502 12 18.2502C11.6772 18.2502 11.3906 18.4568 11.2885 18.7631C10.5236 21.0578 7.49798 21.0984 6.71405 18.6587Z" fill="#222222"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Cover=Default, Size=24, Theme=Filled">
3
+ <path id="Shape" d="M6.5 2C5.11929 2 4 3.11929 4 4.5V19.5C4 20.8807 5.11929 22 6.5 22H19.75C20.1642 22 20.5 21.6642 20.5 21.25C20.5 20.8358 20.1642 20.5 19.75 20.5H6.5C5.94772 20.5 5.5 20.0523 5.5 19.5H19.75C20.1642 19.5 20.5 19.1642 20.5 18.75V4.5C20.5 3.11929 19.3807 2 18 2H6.5ZM8 5H16C16.5523 5 17 5.44772 17 6V7C17 7.55228 16.5523 8 16 8H8C7.44772 8 7 7.55228 7 7V6C7 5.44772 7.44772 5 8 5Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Cover=Default, Size=24, Theme=Regular">
3
+ <path id="Shape" d="M7 6C7 5.44772 7.44772 5 8 5H16C16.5523 5 17 5.44772 17 6V8C17 8.55228 16.5523 9 16 9H8C7.44772 9 7 8.55228 7 8V6ZM8.5 7.5H15.5V6.5H8.5V7.5ZM4 4.5C4 3.11929 5.11929 2 6.5 2H18C19.3807 2 20.5 3.11929 20.5 4.5V18.75C20.5 19.1642 20.1642 19.5 19.75 19.5H5.5C5.5 20.0523 5.94772 20.5 6.5 20.5H19.75C20.1642 20.5 20.5 20.8358 20.5 21.25C20.5 21.6642 20.1642 22 19.75 22H6.5C5.11929 22 4 20.8807 4 19.5V4.5ZM5.5 18H19V4.5C19 3.94772 18.5523 3.5 18 3.5H6.5C5.94772 3.5 5.5 3.94772 5.5 4.5V18Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Filled">
3
+ <path id="Shape" d="M6.19058 21.8538C5.69444 22.2107 5.00256 21.8562 5.00256 21.2449V6.24902C5.00256 4.4541 6.45764 2.99902 8.25256 2.99902H15.751C17.5459 2.99902 19.001 4.4541 19.001 6.24902V21.2449C19.001 21.8562 18.3091 22.2107 17.8129 21.8538L12.0018 17.6728L6.19058 21.8538Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Regular">
3
+ <path id="Shape" d="M6.19058 21.8538C5.69444 22.2107 5.00256 21.8562 5.00256 21.2449V6.24902C5.00256 4.4541 6.45764 2.99902 8.25256 2.99902H15.751C17.5459 2.99902 19.001 4.4541 19.001 6.24902V21.2449C19.001 21.8562 18.3091 22.2107 17.8129 21.8538L12.0018 17.6728L6.19058 21.8538ZM17.501 6.24902C17.501 5.28253 16.7175 4.49902 15.751 4.49902H8.25256C7.28607 4.49902 6.50256 5.28253 6.50256 6.24902V19.7814L11.5637 16.1401C11.8254 15.9518 12.1781 15.9518 12.4398 16.1401L17.501 19.7814V6.24902Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Filled">
3
+ <path id="Shape" d="M15.25 3C15.6642 3 16 3.33579 16 3.75V7H17.75C19.5449 7 21 8.45507 21 10.25V16.75C21 18.5449 19.5449 20 17.75 20H6.25C4.45507 20 3 18.5449 3 16.75V10.25C3 8.45507 4.45507 7 6.25 7H8V3.75C8 3.3703 8.28215 3.05651 8.64823 3.00685L8.75 3H15.25ZM14.5 4.5H9.5V7H14.5V4.5Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Regular">
3
+ <path id="Shape" d="M8.75 3H15.25C15.6297 3 15.9435 3.28215 15.9932 3.64823L16 3.75V7H17.75C19.5449 7 21 8.45507 21 10.25V16.75C21 18.5449 19.5449 20 17.75 20H6.25C4.45507 20 3 18.5449 3 16.75V10.25C3 8.45507 4.45507 7 6.25 7H8V3.75C8 3.3703 8.28215 3.05651 8.64823 3.00685L8.75 3H15.25H8.75ZM17.75 8.5H6.25C5.2835 8.5 4.5 9.2835 4.5 10.25V16.75C4.5 17.7165 5.2835 18.5 6.25 18.5H17.75C18.7165 18.5 19.5 17.7165 19.5 16.75V10.25C19.5 9.2835 18.7165 8.5 17.75 8.5ZM14.5 4.5H9.5V7H14.5V4.5Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.9684 2.32416C11.583 1.87567 12.417 1.87567 13.0316 2.32416L20.4534 7.74011C21.4299 8.45267 20.9268 9.99787 19.7189 9.99985H4.28108C3.07318 9.99787 2.57011 8.45266 3.54657 7.74011L10.9684 2.32416ZM13 6.24985C13 5.69756 12.5523 5.24985 12 5.24985C11.4477 5.24985 11 5.69756 11 6.24985C11 6.80213 11.4477 7.24985 12 7.24985C12.5523 7.24985 13 6.80213 13 6.24985ZM11.25 15.9998H9.25V10.9998H11.25V15.9998ZM14.75 15.9998H12.75V10.9998H14.75V15.9998ZM18.5 15.9998H16.25V10.9998H18.5V15.9998ZM18.75 16.9998H5.25C4.00736 16.9998 3 18.0072 3 19.2498V19.7498C3 20.1641 3.33579 20.4998 3.75 20.4998H20.25C20.6642 20.4998 21 20.1641 21 19.7498V19.2498C21 18.0072 19.9926 16.9998 18.75 16.9998ZM7.75 15.9998H5.5V10.9998H7.75V15.9998Z" fill="#222222"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13 6.24985C13 6.80213 12.5523 7.24985 12 7.24985C11.4477 7.24985 11 6.80213 11 6.24985C11 5.69756 11.4477 5.24985 12 5.24985C12.5523 5.24985 13 5.69756 13 6.24985ZM13.0316 2.32416C12.417 1.87567 11.583 1.87567 10.9684 2.32416L3.54657 7.74011C2.56949 8.45312 3.07382 9.99985 4.2834 9.99985H4.5L4.5 15.7997C3.60958 16.2549 3 17.1812 3 18.2498V19.7498C3 20.1641 3.33579 20.4998 3.75 20.4998H20.25C20.6642 20.4998 21 20.1641 21 19.7498V18.2498C21 17.1812 20.3904 16.2549 19.5 15.7997V9.99985H19.7166C20.9262 9.99985 21.4305 8.45312 20.4534 7.74011L13.0316 2.32416ZM11.8526 3.53585C11.9404 3.47178 12.0596 3.47178 12.1474 3.53585L18.9499 8.49985H5.05011L11.8526 3.53585ZM18 9.99985V15.4998H16V9.99985H18ZM14.5 9.99985V15.4998H12.75V9.99985H14.5ZM11.25 9.99985V15.4998H9.5L9.5 9.99985H11.25ZM5.75 16.9998H18.25C18.9404 16.9998 19.5 17.5595 19.5 18.2498V18.9998H4.5V18.2498C4.5 17.5595 5.05964 16.9998 5.75 16.9998ZM6 15.4998L6 9.99985H8L8 15.4998H6Z" fill="#222222"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Size=24, Theme=Filled">
3
+ <path id="Shape" d="M6.75 2C5.50736 2 4.5 3.00736 4.5 4.25V20.75C4.5 21.1642 4.83579 21.5 5.25 21.5H7.5V17.25C7.5 16.8358 7.83579 16.5 8.25 16.5H15.75C16.1642 16.5 16.5 16.8358 16.5 17.25V21.5H18.75C19.1642 21.5 19.5 21.1642 19.5 20.75V11.7493C19.5 10.5067 18.4926 9.4993 17.25 9.4993H16.5V4.25C16.5 3.00736 15.4926 2 14.25 2H6.75ZM7.5 6.5C7.5 5.94772 7.94772 5.5 8.5 5.5C9.05228 5.5 9.5 5.94772 9.5 6.5C9.5 7.05228 9.05228 7.5 8.5 7.5C7.94772 7.5 7.5 7.05228 7.5 6.5ZM8.5 12.5C9.05228 12.5 9.5 12.9477 9.5 13.5C9.5 14.0523 9.05228 14.5 8.5 14.5C7.94772 14.5 7.5 14.0523 7.5 13.5C7.5 12.9477 7.94772 12.5 8.5 12.5ZM7.5 10C7.5 9.44772 7.94772 9 8.5 9C9.05228 9 9.5 9.44772 9.5 10C9.5 10.5523 9.05228 11 8.5 11C7.94772 11 7.5 10.5523 7.5 10ZM12 5.5C12.5523 5.5 13 5.94772 13 6.5C13 7.05228 12.5523 7.5 12 7.5C11.4477 7.5 11 7.05228 11 6.5C11 5.94772 11.4477 5.5 12 5.5ZM11 13.5C11 12.9477 11.4477 12.5 12 12.5C12.5523 12.5 13 12.9477 13 13.5C13 14.0523 12.5523 14.5 12 14.5C11.4477 14.5 11 14.0523 11 13.5ZM15.5 12.5C16.0523 12.5 16.5 12.9477 16.5 13.5C16.5 14.0523 16.0523 14.5 15.5 14.5C14.9477 14.5 14.5 14.0523 14.5 13.5C14.5 12.9477 14.9477 12.5 15.5 12.5ZM11 10C11 9.44772 11.4477 9 12 9C12.5523 9 13 9.44772 13 10C13 10.5523 12.5523 11 12 11C11.4477 11 11 10.5523 11 10ZM15 21.5V18H12.7499V21.5H15ZM11.2499 21.5V18H9V21.5H11.2499Z" fill="#222222"/>
4
+ </g>
5
+ </svg>