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,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="M16.7488 2C17.9915 2 18.9988 3.00736 18.9988 4.25V19.75C18.9988 20.9926 17.9915 22 16.7488 22H6.25C5.00736 22 4 20.9926 4 19.75V4.25C4 3.00736 5.00736 2 6.25 2H16.7488ZM20 15.0019H20.75C21.1297 15.0019 21.4435 15.2841 21.4932 15.6502L21.5 15.7519V17.25C21.5 17.6297 21.2178 17.9435 20.8518 17.9932L20.75 18H20V15.0019H20.75H20ZM20 11.0019H20.75C21.1297 11.0019 21.4435 11.2841 21.4932 11.6502L21.5 11.7519V13.25C21.5 13.6297 21.2178 13.9435 20.8518 13.9932L20.75 14H20V11.0019H20.75H20ZM20 7.00194H20.75C21.1297 7.00194 21.4435 7.28409 21.4932 7.65017L21.5 7.75194V9.25C21.5 9.6297 21.2178 9.94349 20.8518 9.99315L20.75 10H20V7.00194H20.75H20ZM14.7536 5.49739H8.25136C7.87167 5.49739 7.55787 5.77954 7.50821 6.14562L7.50136 6.24739V7.75097C7.50136 8.13067 7.78352 8.44446 8.14959 8.49412L8.25136 8.50097H14.7536C15.1333 8.50097 15.4471 8.21882 15.4968 7.85274L15.5036 7.75097V6.24739C15.5036 5.83317 15.1678 5.49739 14.7536 5.49739Z" 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="M16.7488 2C17.9915 2 18.9988 3.00736 18.9988 4.25V19.75C18.9988 20.9926 17.9915 22 16.7488 22H6.25C5.00736 22 4 20.9926 4 19.75V4.25C4 3.00736 5.00736 2 6.25 2H16.7488ZM16.7488 3.5H6.25C5.83579 3.5 5.5 3.83579 5.5 4.25V19.75C5.5 20.1642 5.83579 20.5 6.25 20.5H16.7488C17.163 20.5 17.4988 20.1642 17.4988 19.75V4.25C17.4988 3.83579 17.163 3.5 16.7488 3.5ZM20 15.0019H20.75C21.1297 15.0019 21.4435 15.2841 21.4932 15.6502L21.5 15.7519V17.25C21.5 17.6297 21.2178 17.9435 20.8518 17.9932L20.75 18H20V15.0019H20.75H20ZM20 11.0019H20.75C21.1297 11.0019 21.4435 11.2841 21.4932 11.6502L21.5 11.7519V13.25C21.5 13.6297 21.2178 13.9435 20.8518 13.9932L20.75 14H20V11.0019H20.75H20ZM20 7.00194H20.75C21.1297 7.00194 21.4435 7.28409 21.4932 7.65017L21.5 7.75194V9.25C21.5 9.6297 21.2178 9.94349 20.8518 9.99315L20.75 10H20V7.00194H20.75H20ZM15.2488 5C15.663 5 15.9988 5.33579 15.9988 5.75V8.2485C15.9988 8.66272 15.663 8.9985 15.2488 8.9985H7.75C7.33579 8.9985 7 8.66272 7 8.2485V5.75C7 5.33579 7.33579 5 7.75 5H15.2488ZM14.4988 6.5H8.5V7.4985H14.4988V6.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="M11.3357 2.08407C10.5682 2.28746 9.90539 2.84014 9.55654 3.57409C8.90244 4.94473 9.4606 6.5895 10.8081 7.28367C10.9694 7.36325 11.1918 7.45168 11.3008 7.48263L11.5014 7.53127V9.49438V11.4575H9.42136C7.1102 11.4575 6.95321 11.4752 6.44737 11.7316C6.08108 11.9217 5.6799 12.3285 5.49239 12.6999C5.25255 13.1818 5.22202 13.4339 5.22202 15.0212V16.4404L4.91678 16.5421C4.09697 16.8074 3.45159 17.4485 3.13762 18.3019C2.99372 18.6998 2.95447 19.4382 3.05913 19.8582C3.29897 20.8309 4.11441 21.6754 5.02579 21.9053C5.83688 22.1087 6.58692 21.9849 7.24974 21.5295C7.66836 21.2509 7.97361 20.8972 8.19165 20.4551C8.72801 19.3586 8.52306 18.1117 7.66836 17.2451C7.30207 16.8737 7.00554 16.688 6.56511 16.5377L6.26859 16.4404V14.9946C6.26859 13.3675 6.28167 13.288 6.57819 12.9475C6.66977 12.837 6.83984 12.7043 6.95321 12.6469L7.16253 12.5407L9.33414 12.5275L11.5014 12.5142V14.4817V16.4493L11.2528 16.52C10.4156 16.7676 9.70916 17.4397 9.417 18.2797C9.26873 18.7042 9.23385 19.4382 9.3385 19.8582C9.57834 20.8309 10.3938 21.6754 11.3052 21.9053C12.1163 22.1087 12.8663 21.9849 13.5291 21.5295C13.9477 21.2509 14.253 20.8972 14.471 20.4551C15.0074 19.3586 14.8024 18.1117 13.9477 17.2451C13.5814 16.8737 13.2849 16.688 12.8445 16.5377L12.548 16.4404V14.4773V12.5142L14.6978 12.5275C16.8127 12.5407 16.8476 12.5407 17.022 12.638C17.3011 12.7883 17.4712 12.9519 17.5976 13.1995L17.7154 13.425L17.7284 14.9371L17.7415 16.4449L17.4886 16.52C16.5729 16.7897 15.8403 17.5591 15.6004 18.5141C15.2298 19.9776 16.0496 21.4322 17.4973 21.892C17.9508 22.038 18.6006 22.0291 19.0672 21.8744C19.5032 21.7329 19.791 21.5649 20.1094 21.2686C20.5367 20.8707 20.8594 20.2959 20.9684 19.7344C21.0295 19.4028 20.999 18.6909 20.903 18.3947C20.637 17.5369 19.9524 16.8295 19.1413 16.5687L18.8055 16.4625L18.7837 14.831C18.7619 13.2968 18.7576 13.1907 18.666 12.9696C18.3651 12.2224 17.7459 11.683 17.0002 11.5194C16.7778 11.4708 16.2502 11.4575 14.6324 11.4575H12.548V9.49438V7.53127L12.7137 7.50032C12.8009 7.48705 13.0407 7.38978 13.2457 7.29251C13.5466 7.1466 13.6817 7.04491 13.9652 6.7531C14.3576 6.35075 14.5452 6.02798 14.6803 5.53278C14.7937 5.12601 14.8024 4.49375 14.7021 4.10466C14.3838 2.86225 13.2762 1.99122 12.0247 2.00007C11.8066 2.00007 11.5232 2.03544 11.3357 2.08407ZM12.7355 3.22038C13.0974 3.39724 13.3896 3.69347 13.5684 4.07372C13.6905 4.33016 13.7035 4.40532 13.7035 4.78114C13.7035 5.15696 13.6905 5.23213 13.5684 5.48857C13.3896 5.86881 13.0974 6.16505 12.7311 6.3419C12.4651 6.47013 12.4041 6.48339 12.0029 6.48339C11.6191 6.48339 11.5363 6.47013 11.3183 6.36401C10.9694 6.20042 10.6554 5.89092 10.4854 5.5372C10.3545 5.2675 10.3458 5.21886 10.3458 4.78114C10.3458 4.34342 10.3545 4.29479 10.4897 4.02066C10.7034 3.58294 11.1438 3.21596 11.6061 3.09658C11.6802 3.0789 11.8982 3.06563 12.0901 3.07447C12.3779 3.08332 12.4956 3.10984 12.7355 3.22038ZM6.34708 17.5944C6.83111 17.7801 7.22794 18.2046 7.38056 18.6954C7.49394 19.0447 7.45469 19.5841 7.29771 19.9289C7.07095 20.4374 6.56511 20.8265 6.01567 20.9149C4.72055 21.1271 3.70015 19.8272 4.17546 18.5627C4.35425 18.0764 4.88625 17.6254 5.40953 17.5148C5.66681 17.4574 6.08544 17.4972 6.34708 17.5944ZM12.6265 17.5944C13.1105 17.7801 13.5073 18.2046 13.6599 18.6954C13.7733 19.0447 13.7341 19.5841 13.5771 19.9289C13.3503 20.4374 12.8445 20.8265 12.295 20.9149C10.9999 21.1271 9.97952 19.8272 10.4548 18.5627C10.6336 18.0764 11.1656 17.6254 11.6889 17.5148C11.9462 17.4574 12.3648 17.4972 12.6265 17.5944ZM18.9843 17.6607C19.1457 17.7359 19.3419 17.8774 19.4727 18.0145C20.31 18.8811 20.0832 20.2384 19.0105 20.7734C18.7009 20.9326 18.6529 20.9414 18.2866 20.9414C17.7415 20.937 17.4581 20.8221 17.1049 20.4595C16.8127 20.1633 16.6644 19.8891 16.599 19.5133C16.4508 18.7219 16.9348 17.8862 17.7023 17.5988C18.0511 17.4706 18.6311 17.4972 18.9843 17.6607Z" fill="#555555"/>
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.24991 4.75C5.42151 4.75 4.74995 5.42157 4.74995 6.25V17.75C4.74995 18.5784 5.42151 19.25 6.24991 19.25H17.7496C18.578 19.25 19.2496 18.5784 19.2496 17.75V13.75C19.2496 13.1977 19.6973 12.75 20.2496 12.75C20.8018 12.75 21.2495 13.1977 21.2495 13.75V17.75C21.2495 19.683 19.6826 21.25 17.7496 21.25H6.24991C4.31696 21.25 2.75 19.683 2.75 17.75V6.25C2.75 4.317 4.31697 2.75 6.24991 2.75H10.2498C10.8021 2.75 11.2498 3.19772 11.2498 3.75C11.2498 4.30228 10.8021 4.75 10.2498 4.75H6.24991ZM12.7498 3.75C12.7498 3.19772 13.1975 2.75 13.7497 2.75H20.25C20.8023 2.75 21.25 3.19772 21.25 3.75V10.25C21.25 10.8023 20.8023 11.25 20.25 11.25C19.6978 11.25 19.25 10.8023 19.25 10.25V6.16425L14.4568 10.9571C14.0663 11.3476 13.4331 11.3476 13.0426 10.9571C12.6521 10.5665 12.6521 9.93336 13.0427 9.54286L17.8359 4.75H13.7497C13.1975 4.75 12.7498 4.30228 12.7498 3.75Z" 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.24992 4.5C5.28344 4.5 4.49996 5.2835 4.49996 6.25V17.75C4.49996 18.7165 5.28344 19.5 6.24992 19.5H17.7496C18.7161 19.5 19.4996 18.7165 19.4996 17.75V13.75C19.4996 13.3358 19.8354 13 20.2496 13C20.6638 13 20.9995 13.3358 20.9995 13.75V17.75C20.9995 19.5449 19.5445 21 17.7496 21H6.24992C4.45504 21 3 19.5449 3 17.75V6.25C3 4.45507 4.45504 3 6.24992 3H10.2498C10.664 3 10.9998 3.33579 10.9998 3.75C10.9998 4.16421 10.664 4.5 10.2498 4.5H6.24992ZM12.9998 3.75C12.9998 3.33579 13.3355 3 13.7497 3H20.25C20.6642 3 21 3.33579 21 3.75V10.25C21 10.6642 20.6642 11 20.25 11C19.8358 11 19.5 10.6642 19.5 10.25V5.56074L14.28 10.7804C13.9871 11.0732 13.5123 11.0732 13.2194 10.7803C12.9265 10.4874 12.9265 10.0125 13.2194 9.71964L18.4395 4.5H13.7497C13.3355 4.5 12.9998 4.16421 12.9998 3.75Z" 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="M17.75 2C18.9926 2 20 3.00736 20 4.25V19.7546C20 20.9972 18.9926 22.0046 17.75 22.0046H6.25C5.00736 22.0046 4 20.9972 4 19.7546V4.25C4 3.05914 4.92516 2.08436 6.09595 2.00519L6.25 2H17.75ZM18.5 16H5.5V19.7546C5.5 20.1688 5.83579 20.5046 6.25 20.5046H17.75C18.1642 20.5046 18.5 20.1688 18.5 19.7546V16ZM7.75129 17.5H16.25C16.6642 17.5 17 17.8358 17 18.25C17 18.6297 16.7178 18.9435 16.3518 18.9932L16.25 19H7.75129C7.33707 19 7.00129 18.6642 7.00129 18.25C7.00129 17.8703 7.28344 17.5565 7.64952 17.5068L7.75129 17.5H16.25H7.75129ZM17.75 3.5H6.25L6.14823 3.50685C5.78215 3.55651 5.5 3.8703 5.5 4.25V14.5H8V12.2455C8 11.5983 8.49187 11.066 9.12219 11.002L9.25 10.9955H14.75C15.3972 10.9955 15.9295 11.4874 15.9935 12.1177L16 12.2455V14.5H18.5V4.25C18.5 3.83579 18.1642 3.5 17.75 3.5ZM12 4.99552C13.3807 4.99552 14.5 6.11481 14.5 7.49552C14.5 8.87624 13.3807 9.99552 12 9.99552C10.6193 9.99552 9.5 8.87624 9.5 7.49552C9.5 6.11481 10.6193 4.99552 12 4.99552Z" 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.75 2C18.9926 2 20 3.00736 20 4.25V19.7546C20 20.9972 18.9926 22.0046 17.75 22.0046H6.25C5.00736 22.0046 4 20.9972 4 19.7546V4.25C4 3.05914 4.92516 2.08436 6.09595 2.00519L6.25 2H17.75ZM18.5 16H5.5V19.7546C5.5 20.1688 5.83579 20.5046 6.25 20.5046H17.75C18.1642 20.5046 18.5 20.1688 18.5 19.7546V16ZM7.75129 17.5H16.25C16.6642 17.5 17 17.8358 17 18.25C17 18.6297 16.7178 18.9435 16.3518 18.9932L16.25 19H7.75129C7.33707 19 7.00129 18.6642 7.00129 18.25C7.00129 17.8703 7.28344 17.5565 7.64952 17.5068L7.75129 17.5H16.25H7.75129ZM17.75 3.5H6.25L6.14823 3.50685C5.78215 3.55651 5.5 3.8703 5.5 4.25V14.5H8V12.2455C8 11.5983 8.49187 11.066 9.12219 11.002L9.25 10.9955H14.75C15.3972 10.9955 15.9295 11.4874 15.9935 12.1177L16 12.2455V14.5H18.5V4.25C18.5 3.83579 18.1642 3.5 17.75 3.5ZM14.5 12.4955H9.5V14.5H14.5V12.4955ZM12 4.99552C13.3807 4.99552 14.5 6.11481 14.5 7.49552C14.5 8.87624 13.3807 9.99552 12 9.99552C10.6193 9.99552 9.5 8.87624 9.5 7.49552C9.5 6.11481 10.6193 4.99552 12 4.99552ZM12 6.49552C11.4477 6.49552 11 6.94324 11 7.49552C11 8.04781 11.4477 8.49552 12 8.49552C12.5523 8.49552 13 8.04781 13 7.49552C13 6.94324 12.5523 6.49552 12 6.49552Z" 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="M8 11C10.2091 11 12 9.20914 12 7C12 4.79086 10.2091 3 8 3C5.79086 3 4 4.79086 4 7C4 9.20914 5.79086 11 8 11ZM17 11C18.6569 11 20 9.65685 20 8C20 6.34315 18.6569 5 17 5C15.3431 5 14 6.34315 14 8C14 9.65685 15.3431 11 17 11ZM4.25 13C3.00736 13 2 14.0074 2 15.25V15.5C2 15.5 2 20 8 20C9.38985 20 10.4578 19.7585 11.2783 19.3875C11.0973 18.7901 11 18.1564 11 17.5C11 15.8431 11.6199 14.3311 12.6405 13.1831C12.3674 13.0653 12.0663 13 11.75 13H4.25ZM23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23C20.5376 23 23 20.5376 23 17.5ZM18.0006 18L18.0011 20.5035C18.0011 20.7797 17.7773 21.0035 17.5011 21.0035C17.225 21.0035 17.0011 20.7797 17.0011 20.5035L17.0006 18H14.4956C14.2197 18 13.9961 17.7762 13.9961 17.5C13.9961 17.2239 14.2197 17 14.4956 17H17.0005L17 14.4993C17 14.2231 17.2239 13.9993 17.5 13.9993C17.7761 13.9993 18 14.2231 18 14.4993L18.0005 17H20.4966C20.7725 17 20.9961 17.2239 20.9961 17.5C20.9961 17.7762 20.7725 18 20.4966 18H18.0006Z" 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="M5.5 7C5.5 5.61929 6.61929 4.5 8 4.5C9.38071 4.5 10.5 5.61929 10.5 7C10.5 8.38071 9.38071 9.5 8 9.5C6.61929 9.5 5.5 8.38071 5.5 7ZM8 3C5.79086 3 4 4.79086 4 7C4 9.20914 5.79086 11 8 11C10.2091 11 12 9.20914 12 7C12 4.79086 10.2091 3 8 3ZM15.5 8C15.5 7.17157 16.1716 6.5 17 6.5C17.8284 6.5 18.5 7.17157 18.5 8C18.5 8.82843 17.8284 9.5 17 9.5C16.1716 9.5 15.5 8.82843 15.5 8ZM17 5C15.3431 5 14 6.34315 14 8C14 9.65685 15.3431 11 17 11C18.6569 11 20 9.65685 20 8C20 6.34315 18.6569 5 17 5ZM4.25 13C3.00736 13 2 14.0074 2 15.25V15.5011L2 15.5022L2.00001 15.5048L2.00007 15.5111L2.00035 15.5277C2.00064 15.5406 2.00117 15.5571 2.0021 15.5771C2.00396 15.6169 2.00745 15.6705 2.01398 15.7358C2.02701 15.8661 2.05233 16.045 2.10165 16.2564C2.19995 16.6776 2.39654 17.2404 2.79183 17.8051C3.61066 18.9749 5.17178 20 8 20C9.36897 20 10.4411 19.7598 11.2758 19.3793C11.1268 18.8851 11.035 18.366 11.0082 17.8299C10.3633 18.2108 9.41267 18.5 8 18.5C5.57822 18.5 4.51434 17.6501 4.02067 16.9449C3.75971 16.5721 3.62818 16.1974 3.56241 15.9155C3.5297 15.7753 3.514 15.6612 3.50653 15.5865C3.50281 15.5493 3.50117 15.5222 3.50047 15.5072L3.5 15.4947V15.25C3.5 14.8358 3.83579 14.5 4.25 14.5H11.7322C11.9807 14.0233 12.2865 13.5813 12.6405 13.1831C12.3674 13.0653 12.0663 13 11.75 13H4.25ZM23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23C20.5376 23 23 20.5376 23 17.5ZM18.0006 18L18.0011 20.5035C18.0011 20.7797 17.7773 21.0035 17.5011 21.0035C17.225 21.0035 17.0011 20.7797 17.0011 20.5035L17.0006 18H14.4956C14.2197 18 13.9961 17.7762 13.9961 17.5C13.9961 17.2239 14.2197 17 14.4956 17H17.0005L17 14.4993C17 14.2231 17.2239 13.9993 17.5 13.9993C17.7761 13.9993 18 14.2231 18 14.4993L18.0005 17H20.4966C20.7725 17 20.9961 17.2239 20.9961 17.5C20.9961 17.7762 20.7725 18 20.4966 18H18.0006Z" 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="M8 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12ZM17 12C18.6569 12 20 10.6569 20 9C20 7.34315 18.6569 6 17 6C15.3431 6 14 7.34315 14 9C14 10.6569 15.3431 12 17 12ZM4.25 14C3.00736 14 2 15.0074 2 16.25V16.5C2 16.5 2 21 8 21C14 21 14 16.5 14 16.5V16.25C14 15.0074 12.9926 14 11.75 14H4.25ZM17.0002 19.5C15.829 19.5 14.9321 19.3189 14.2453 19.0416C14.5873 18.4667 14.7719 17.9142 14.8724 17.4836C14.9328 17.2247 14.9645 17.0027 14.9813 16.8353C14.9897 16.7512 14.9944 16.68 14.997 16.6237C14.9983 16.5955 14.9991 16.5709 14.9996 16.5503L15.0001 16.5222L15.0002 16.5103L15.0002 16.505L15.0002 16.5024C15.0002 16.4992 15.0002 16.5 15.0002 16.5V16.25C15.0002 15.3779 14.6567 14.5861 14.0977 14.0023C14.1316 14.0008 14.1658 14 14.2002 14H19.8002C21.0152 14 22.0002 14.985 22.0002 16.2C22.0002 16.2 22.0002 19.5 17.0002 19.5Z" fill="#222222"/>
4
+ </g>
5
+ </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="M5.5 8C5.5 6.61929 6.61929 5.5 8 5.5C9.38071 5.5 10.5 6.61929 10.5 8C10.5 9.38071 9.38071 10.5 8 10.5C6.61929 10.5 5.5 9.38071 5.5 8ZM8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4ZM15.5 9C15.5 8.17157 16.1716 7.5 17 7.5C17.8284 7.5 18.5 8.17157 18.5 9C18.5 9.82843 17.8284 10.5 17 10.5C16.1716 10.5 15.5 9.82843 15.5 9ZM17 6C15.3431 6 14 7.34315 14 9C14 10.6569 15.3431 12 17 12C18.6569 12 20 10.6569 20 9C20 7.34315 18.6569 6 17 6ZM14.2484 19.0377C14.9507 19.3232 15.8517 19.5 17.001 19.5C19.2833 19.5 20.5867 18.8027 21.2979 17.9421C21.643 17.5244 21.8186 17.1027 21.9077 16.7795C21.9521 16.6181 21.9754 16.48 21.9875 16.377C21.9936 16.3254 21.997 16.2821 21.9988 16.2487C21.9997 16.232 22.0003 16.2177 22.0006 16.2059L22.0009 16.1903L22.001 16.1839L22.001 16.1811L22.001 16.1786C22.001 14.9754 21.0256 14 19.8224 14H14.1796C14.1521 14 14.1248 14.0005 14.0977 14.0015C14.4916 14.4126 14.7787 14.927 14.914 15.5H19.8224C20.194 15.5 20.4958 15.7986 20.5009 16.1689C20.5006 16.1746 20.4997 16.1855 20.4979 16.2011C20.4934 16.2387 20.4835 16.3015 20.4615 16.3812C20.4177 16.5402 20.3277 16.7613 20.1416 16.9865C19.7903 17.4116 18.9687 18 17.001 18C16.0209 18 15.3252 17.854 14.8302 17.655C14.7231 18.0551 14.5452 18.5378 14.2484 19.0377ZM4.25 14C3.00736 14 2 15.0074 2 16.25V16.5011L2 16.5022L2.00001 16.5048L2.00007 16.5111L2.00035 16.5277C2.00064 16.5406 2.00117 16.5571 2.0021 16.5771C2.00396 16.6169 2.00745 16.6705 2.01398 16.7358C2.02701 16.8661 2.05233 17.045 2.10165 17.2564C2.19995 17.6776 2.39654 18.2404 2.79183 18.8051C3.61066 19.9749 5.17178 21 8 21C10.8282 21 12.3893 19.9749 13.2082 18.8051C13.6035 18.2404 13.8001 17.6776 13.8983 17.2564C13.9477 17.045 13.973 16.8661 13.986 16.7358C13.9926 16.6705 13.996 16.6169 13.9979 16.5771C13.9988 16.5571 13.9994 16.5406 13.9996 16.5277L13.9999 16.5111L14 16.5048L14 16.5022L14 16.25C14 15.0074 12.9926 14 11.75 14H4.25ZM3.50047 16.5072L3.5 16.4947V16.25C3.5 15.8358 3.83579 15.5 4.25 15.5H11.75C12.1642 15.5 12.5 15.8358 12.5 16.25V16.4946L12.4995 16.5072C12.4988 16.5222 12.4972 16.5493 12.4935 16.5865C12.486 16.6612 12.4703 16.7753 12.4376 16.9155C12.3718 17.1974 12.2403 17.5721 11.9793 17.9449C11.4857 18.6501 10.4218 19.5 8 19.5C5.57822 19.5 4.51434 18.6501 4.02067 17.9449C3.75971 17.5721 3.62818 17.1974 3.56241 16.9155C3.5297 16.7753 3.514 16.6612 3.50653 16.5865C3.50281 16.5493 3.50117 16.5222 3.50047 16.5072Z" 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="Theme=Line">
3
+ <path id="shape" fill-rule="evenodd" clip-rule="evenodd" d="M6.5 5C5.67157 5 5 5.67157 5 6.5C5 7.32843 5.67157 8 6.5 8C7.32843 8 8 7.32843 8 6.5C8 5.67157 7.32843 5 6.5 5ZM3 6.5C3 4.567 4.567 3 6.5 3C8.433 3 10 4.567 10 6.5C10 8.433 8.433 10 6.5 10C4.567 10 3 8.433 3 6.5ZM19.7071 5.70711L5.70711 19.7071C5.31658 20.0976 4.68342 20.0976 4.29289 19.7071C3.90237 19.3166 3.90237 18.6834 4.29289 18.2929L18.2929 4.29289C18.6834 3.90237 19.3166 3.90237 19.7071 4.29289C20.0976 4.68342 20.0976 5.31658 19.7071 5.70711ZM16 17.5C16 16.6716 16.6716 16 17.5 16C18.3284 16 19 16.6716 19 17.5C19 18.3284 18.3284 19 17.5 19C16.6716 19 16 18.3284 16 17.5ZM17.5 14C15.567 14 14 15.567 14 17.5C14 19.433 15.567 21 17.5 21C19.433 21 21 19.433 21 17.5C21 15.567 19.433 14 17.5 14Z" 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="M13 14.0503V14.0002H4.25278C3.01076 14.0002 2.00391 15.007 2.00391 16.2491V17.169C2.00391 17.7411 2.18231 18.2989 2.51427 18.7648C4.05643 20.9292 6.5794 22.0013 10.0004 22.0013C10.3578 22.0013 10.7055 21.9896 11.0433 21.9662C11.0149 21.8152 11 21.6595 11 21.5002V16.5003C11 15.2908 11.8589 14.2819 13 14.0503ZM10.0004 2.00488C12.7618 2.00488 15.0004 4.24346 15.0004 7.00488C15.0004 9.76631 12.7618 12.0049 10.0004 12.0049C7.23894 12.0049 5.00036 9.76631 5.00036 7.00488C5.00036 4.24346 7.23894 2.00488 10.0004 2.00488ZM14 15.0003H13.5C12.6716 15.0003 12 15.6719 12 16.5003V21.5002C12 22.3287 12.6716 23.0002 13.5 23.0002H21.5C22.3284 23.0002 23 22.3287 23 21.5002V16.5003C23 15.6719 22.3284 15.0003 21.5 15.0003H21V13.7502C21 12.7837 20.2165 12.0002 19.25 12.0002H15.75C14.7835 12.0002 14 12.7837 14 13.7502V15.0003ZM15.5 13.7502C15.5 13.6122 15.6119 13.5002 15.75 13.5002H19.25C19.3881 13.5002 19.5 13.6122 19.5 13.7502V15.0003H15.5V13.7502Z" 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 14.0503V14.0002H4.25278C3.01076 14.0002 2.00391 15.007 2.00391 16.2491V16.8267C2.00391 17.7195 2.32242 18.583 2.90219 19.2619C4.46849 21.0962 6.8545 22.0013 10.0004 22.0013C10.3579 22.0013 10.7055 21.9896 11.0434 21.9662C11.0149 21.8153 11 21.6595 11 21.5002V20.4658C10.679 20.4895 10.3458 20.5013 10.0004 20.5013C7.26206 20.5013 5.29618 19.7555 4.04287 18.2878C3.69502 17.8805 3.50391 17.3624 3.50391 16.8267V16.2491C3.50391 15.8355 3.83919 15.5002 4.25278 15.5002H11.2081C11.5294 14.7648 12.1944 14.2138 13 14.0503ZM10.0004 2.00488C12.7618 2.00488 15.0004 4.24346 15.0004 7.00488C15.0004 9.76631 12.7618 12.0049 10.0004 12.0049C7.23894 12.0049 5.00036 9.76631 5.00036 7.00488C5.00036 4.24346 7.23894 2.00488 10.0004 2.00488ZM10.0004 3.50488C8.06737 3.50488 6.50036 5.07189 6.50036 7.00488C6.50036 8.93788 8.06737 10.5049 10.0004 10.5049C11.9334 10.5049 13.5004 8.93788 13.5004 7.00488C13.5004 5.07189 11.9334 3.50488 10.0004 3.50488ZM14 15.0003H13.5C12.6716 15.0003 12 15.6719 12 16.5003V21.5002C12 22.3287 12.6716 23.0002 13.5 23.0002H21.5C22.3284 23.0002 23 22.3287 23 21.5002V16.5003C23 15.6719 22.3284 15.0003 21.5 15.0003H21V13.7502C21 12.7837 20.2165 12.0002 19.25 12.0002H15.75C14.7835 12.0002 14 12.7837 14 13.7502V15.0003ZM15.5 13.7502C15.5 13.6122 15.6119 13.5002 15.75 13.5002H19.25C19.3881 13.5002 19.5 13.6122 19.5 13.7502V15.0003H15.5V13.7502Z" 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="M11.0004 17.5C11.0004 16.2111 11.3755 15.0098 12.0226 13.9993L4.25278 13.9999C3.01076 13.9999 2.00391 15.0068 2.00391 16.2488V17.1688C2.00391 17.7409 2.18231 18.2987 2.51427 18.7646C4.05643 20.9289 6.5794 22.0011 10.0004 22.0011C10.9317 22.0011 11.7966 21.9216 12.5921 21.7615C11.6006 20.6205 11.0004 19.1303 11.0004 17.5ZM15.0004 7.00464C15.0004 4.24321 12.7618 2.00464 10.0004 2.00464C7.23894 2.00464 5.00036 4.24321 5.00036 7.00464C5.00036 9.76606 7.23894 12.0046 10.0004 12.0046C12.7618 12.0046 15.0004 9.76606 15.0004 7.00464ZM23.0004 17.5C23.0004 14.4624 20.5379 12 17.5004 12C14.4628 12 12.0004 14.4624 12.0004 17.5C12.0004 20.5376 14.4628 23 17.5004 23C20.5379 23 23.0004 20.5376 23.0004 17.5ZM17.4105 14.008L17.5004 14L17.5902 14.008C17.7943 14.0451 17.9553 14.206 17.9923 14.4101L18.0004 14.5L17.9994 17H20.5043L20.5942 17.0081C20.7982 17.0451 20.9592 17.206 20.9962 17.4101L21.0043 17.5L20.9962 17.5899C20.9592 17.794 20.7982 17.9549 20.5942 17.9919L20.5043 18H17.9994L18.0004 20.5L17.9923 20.5899C17.9553 20.794 17.7943 20.9549 17.5902 20.9919L17.5004 21L17.4105 20.9919C17.2064 20.9549 17.0455 20.794 17.0084 20.5899L17.0004 20.5L16.9994 18H14.5043L14.4144 17.9919C14.2103 17.9549 14.0494 17.794 14.0123 17.5899L14.0043 17.5L14.0123 17.4101C14.0494 17.206 14.2103 17.0451 14.4144 17.0081L14.5043 17H16.9994L17.0004 14.5L17.0084 14.4101C17.0455 14.206 17.2064 14.0451 17.4105 14.008Z" 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="M17.5004 12C20.5379 12 23.0004 14.4624 23.0004 17.5C23.0004 20.5376 20.5379 23 17.5004 23C14.4628 23 12.0004 20.5376 12.0004 17.5C12.0004 14.4624 14.4628 12 17.5004 12ZM12.0226 13.9993C11.7259 14.4626 11.4864 14.966 11.314 15.4996L4.25278 15.4999C3.83919 15.4999 3.50391 15.8352 3.50391 16.2488V16.8265C3.50391 17.3622 3.69502 17.8802 4.04287 18.2876C5.29618 19.7553 7.26206 20.5011 10.0004 20.5011C10.5968 20.5011 11.1567 20.4657 11.6806 20.3952C11.9258 20.8901 12.2333 21.3486 12.5921 21.7615C11.7966 21.9217 10.9317 22.0011 10.0004 22.0011C6.8545 22.0011 4.46849 21.0959 2.90219 19.2617C2.32242 18.5828 2.00391 17.7193 2.00391 16.8265V16.2488C2.00391 15.0068 3.01076 13.9999 4.25278 13.9999L12.0226 13.9993ZM17.5004 14L17.4105 14.0081C17.2064 14.0451 17.0455 14.206 17.0084 14.4101L17.0004 14.5L16.9994 17H14.5043L14.4144 17.0081C14.2103 17.0451 14.0494 17.206 14.0123 17.4101L14.0043 17.5L14.0123 17.5899C14.0494 17.794 14.2103 17.9549 14.4144 17.992L14.5043 18H16.9994L17.0004 20.5L17.0084 20.5899C17.0455 20.794 17.2064 20.9549 17.4105 20.9919L17.5004 21L17.5902 20.9919C17.7943 20.9549 17.9553 20.794 17.9923 20.5899L18.0004 20.5L17.9994 18H20.5043L20.5941 17.992C20.7982 17.9549 20.9592 17.794 20.9962 17.5899L21.0043 17.5L20.9962 17.4101C20.9592 17.206 20.7982 17.0451 20.5941 17.0081L20.5043 17H17.9994L18.0004 14.5L17.9923 14.4101C17.9553 14.206 17.7943 14.0451 17.5902 14.0081L17.5004 14ZM10.0004 2.00464C12.7618 2.00464 15.0004 4.24321 15.0004 7.00464C15.0004 9.76606 12.7618 12.0046 10.0004 12.0046C7.23894 12.0046 5.00036 9.76606 5.00036 7.00464C5.00036 4.24321 7.23894 2.00464 10.0004 2.00464ZM10.0004 3.50464C8.06737 3.50464 6.50036 5.07164 6.50036 7.00464C6.50036 8.93764 8.06737 10.5046 10.0004 10.5046C11.9334 10.5046 13.5004 8.93764 13.5004 7.00464C13.5004 5.07164 11.9334 3.50464 10.0004 3.50464Z" 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="M17.7542 13.9999C18.9962 13.9999 20.003 15.0068 20.003 16.2488V17.1673C20.003 17.7406 19.8238 18.2997 19.4905 18.7662C17.9446 20.9294 15.4203 22.0011 12 22.0011C8.57903 22.0011 6.05607 20.9289 4.51391 18.7646C4.18195 18.2987 4.00354 17.7409 4.00354 17.1688V16.2488C4.00354 15.0068 5.0104 13.9999 6.25242 13.9999H17.7542ZM12 2.00464C14.7614 2.00464 17 4.24321 17 7.00464C17 9.76606 14.7614 12.0046 12 12.0046C9.23857 12.0046 7 9.76606 7 7.00464C7 4.24321 9.23857 2.00464 12 2.00464Z" 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="M10.9941 17.5C10.9941 16.211 11.3693 15.0097 12.0165 13.9992H5.24692C4.0049 13.9992 2.99805 15.0061 2.99805 16.2481V17.1681C2.99805 17.7401 3.17645 18.298 3.50841 18.7639C5.05058 20.9282 7.57354 22.0004 10.9945 22.0004C11.5944 22.0004 12.1667 21.9674 12.711 21.9014C11.6451 20.7436 10.9941 19.1978 10.9941 17.5ZM10.9945 2.00391C13.7559 2.00391 15.9945 4.24248 15.9945 7.00391C15.9945 9.76533 13.7559 12.0039 10.9945 12.0039C8.23308 12.0039 5.99451 9.76533 5.99451 7.00391C5.99451 4.24248 8.23308 2.00391 10.9945 2.00391ZM22.9941 17.5C22.9941 20.5376 20.5317 23 17.4941 23C14.4566 23 11.9941 20.5376 11.9941 17.5C11.9941 14.4624 14.4566 12 17.4941 12C20.5317 12 22.9941 14.4624 22.9941 17.5ZM18.0495 14.4206C17.8747 13.8598 17.1136 13.8598 16.9388 14.4206L16.3818 16.2077H14.5792C14.0135 16.2077 13.7783 16.9623 14.236 17.3089L15.6943 18.4134L15.1372 20.2004C14.9624 20.7612 15.5782 21.2276 16.0358 20.881L17.4941 19.7766L18.9524 20.881C19.4101 21.2276 20.0258 20.7612 19.851 20.2004L19.294 18.4134L20.7523 17.3089C21.21 16.9623 20.9748 16.2077 20.4091 16.2077H18.6065L18.0495 14.4206Z" 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.3079 15.4992C11.4803 14.9657 11.7198 14.4624 12.0165 13.9992H5.24692C4.0049 13.9992 2.99805 15.0061 2.99805 16.2481V16.8258C2.99805 17.7185 3.31657 18.582 3.89633 19.2609C5.46263 21.0952 7.84864 22.0004 10.9945 22.0004C11.5944 22.0004 12.1667 21.9674 12.7111 21.9014C12.32 21.4767 11.9848 20.9997 11.7171 20.4821C11.4825 20.4943 11.2416 20.5004 10.9945 20.5004C8.2562 20.5004 6.29032 19.7546 5.03701 18.2869C4.68916 17.8795 4.49805 17.3614 4.49805 16.8258V16.2481C4.49805 15.8345 4.83333 15.4992 5.24692 15.4992H11.3079ZM10.9945 2.00391C13.7559 2.00391 15.9945 4.24248 15.9945 7.00391C15.9945 9.76533 13.7559 12.0039 10.9945 12.0039C8.23308 12.0039 5.99451 9.76533 5.99451 7.00391C5.99451 4.24248 8.23308 2.00391 10.9945 2.00391ZM10.9945 3.50391C9.06151 3.50391 7.49451 5.07091 7.49451 7.00391C7.49451 8.9369 9.06151 10.5039 10.9945 10.5039C12.9275 10.5039 14.4945 8.9369 14.4945 7.00391C14.4945 5.07091 12.9275 3.50391 10.9945 3.50391ZM22.9941 17.5C22.9941 20.5376 20.5317 23 17.4941 23C14.4566 23 11.9941 20.5376 11.9941 17.5C11.9941 14.4624 14.4566 12 17.4941 12C20.5317 12 22.9941 14.4624 22.9941 17.5ZM18.0495 14.4206C17.8747 13.8598 17.1136 13.8598 16.9388 14.4206L16.3818 16.2077H14.5792C14.0135 16.2077 13.7783 16.9623 14.236 17.3089L15.6943 18.4134L15.1372 20.2004C14.9624 20.7612 15.5782 21.2276 16.0358 20.881L17.4941 19.7766L18.9524 20.881C19.4101 21.2276 20.0258 20.7612 19.851 20.2004L19.294 18.4134L20.7523 17.3089C21.21 16.9623 20.9748 16.2077 20.4091 16.2077H18.6065L18.0495 14.4206Z" 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="M11.9942 2.40002C9.34327 2.40002 7.19424 4.54906 7.19424 7.20002C7.19424 9.85099 9.34327 12 11.9942 12C14.6452 12 16.7942 9.85099 16.7942 7.20002C16.7942 4.54906 14.6452 2.40002 11.9942 2.40002ZM6.00471 13.2C4.67802 13.2 3.59424 14.2643 3.59424 15.6C3.59424 17.6295 4.59361 19.1596 6.15623 20.1559C7.6946 21.1368 9.76855 21.6 11.9942 21.6C12.0966 21.6 12.1987 21.599 12.3004 21.5971C11.3594 20.4564 10.7942 18.9942 10.7942 17.4C10.7942 15.8045 11.3604 14.3412 12.3028 13.2L6.00471 13.2ZM22.7942 17.4C22.7942 20.3824 20.3766 22.8 17.3942 22.8C14.4119 22.8 11.9942 20.3824 11.9942 17.4C11.9942 14.4177 14.4119 12 17.3942 12C20.3766 12 22.7942 14.4177 22.7942 17.4ZM14.3942 17.4C14.3942 17.7314 14.6629 18 14.9942 18H19.7942C20.1256 18 20.3942 17.7314 20.3942 17.4C20.3942 17.0687 20.1256 16.8 19.7942 16.8H14.9942C14.6629 16.8 14.3942 17.0687 14.3942 17.4Z" 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.9942 2.40002C9.34327 2.40002 7.19424 4.54906 7.19424 7.20002C7.19424 9.85099 9.34327 12 11.9942 12C14.6452 12 16.7942 9.85099 16.7942 7.20002C16.7942 4.54906 14.6452 2.40002 11.9942 2.40002ZM8.39424 7.20002C8.39424 5.2118 10.006 3.60002 11.9942 3.60002C13.9825 3.60002 15.5942 5.2118 15.5942 7.20002C15.5942 9.18825 13.9825 10.8 11.9942 10.8C10.006 10.8 8.39424 9.18825 8.39424 7.20002ZM6.00471 13.2C4.67802 13.2 3.59424 14.2643 3.59424 15.6C3.59424 17.6295 4.59361 19.1596 6.15623 20.1559C7.6946 21.1368 9.76855 21.6 11.9942 21.6C12.0966 21.6 12.1987 21.599 12.3004 21.5971C11.9952 21.2271 11.7295 20.8232 11.5098 20.392C9.62936 20.3293 7.98543 19.8991 6.80138 19.1441C5.54096 18.3405 4.79424 17.1706 4.79424 15.6C4.79424 14.9361 5.33167 14.4 6.00471 14.4L11.5139 14.4C11.7334 13.9707 11.9985 13.5686 12.3028 13.2L6.00471 13.2ZM22.7942 17.4C22.7942 20.3824 20.3766 22.8 17.3942 22.8C14.4119 22.8 11.9942 20.3824 11.9942 17.4C11.9942 14.4177 14.4119 12 17.3942 12C20.3766 12 22.7942 14.4177 22.7942 17.4ZM14.3942 17.4C14.3942 17.7314 14.6629 18 14.9942 18H19.7942C20.1256 18 20.3942 17.7314 20.3942 17.4C20.3942 17.0687 20.1256 16.8 19.7942 16.8H14.9942C14.6629 16.8 14.3942 17.0687 14.3942 17.4Z" 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="M17.7542 13.9999C18.9962 13.9999 20.003 15.0068 20.003 16.2488V16.8242C20.003 17.7185 19.6835 18.5833 19.1019 19.2627C17.5326 21.0962 15.1454 22.0011 12 22.0011C8.85414 22.0011 6.46812 21.0959 4.90182 19.2617C4.32206 18.5828 4.00354 17.7193 4.00354 16.8265V16.2488C4.00354 15.0068 5.0104 13.9999 6.25242 13.9999H17.7542ZM17.7542 15.4999H6.25242C5.83882 15.4999 5.50354 15.8352 5.50354 16.2488V16.8265C5.50354 17.3622 5.69465 17.8802 6.04251 18.2876C7.29582 19.7553 9.26169 20.5011 12 20.5011C14.7383 20.5011 16.7059 19.7553 17.9624 18.2873C18.3113 17.8797 18.503 17.3608 18.503 16.8242V16.2488C18.503 15.8352 18.1678 15.4999 17.7542 15.4999ZM12 2.00464C14.7614 2.00464 17 4.24321 17 7.00464C17 9.76606 14.7614 12.0046 12 12.0046C9.23857 12.0046 7 9.76606 7 7.00464C7 4.24321 9.23857 2.00464 12 2.00464ZM12 3.50464C10.067 3.50464 8.5 5.07164 8.5 7.00464C8.5 8.93764 10.067 10.5046 12 10.5046C13.933 10.5046 15.5 8.93764 15.5 7.00464C15.5 5.07164 13.933 3.50464 12 3.50464Z" 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.7441 2C16.9868 2 17.9941 3.00736 17.9941 4.25V19.75C17.9941 20.9926 16.9868 22 15.7441 22H8.24414C7.0015 22 5.99414 20.9926 5.99414 19.75V4.25C5.99414 3.00736 7.0015 2 8.24414 2H15.7441ZM13.2441 18H10.7441C10.3299 18 9.99414 18.3358 9.99414 18.75C9.99414 19.1642 10.3299 19.5 10.7441 19.5H13.2441C13.6584 19.5 13.9941 19.1642 13.9941 18.75C13.9941 18.3358 13.6584 18 13.2441 18Z" 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="M15.7441 2C16.9868 2 17.9941 3.00736 17.9941 4.25V19.75C17.9941 20.9926 16.9868 22 15.7441 22H8.24414C7.0015 22 5.99414 20.9926 5.99414 19.75V4.25C5.99414 3.00736 7.0015 2 8.24414 2H15.7441ZM15.7441 3.5H8.24414C7.82993 3.5 7.49414 3.83579 7.49414 4.25V19.75C7.49414 20.1642 7.82993 20.5 8.24414 20.5H15.7441C16.1584 20.5 16.4941 20.1642 16.4941 19.75V4.25C16.4941 3.83579 16.1584 3.5 15.7441 3.5ZM13.243 17.5C13.6572 17.4994 13.9935 17.8347 13.9941 18.2489C13.9948 18.6631 13.6595 18.9994 13.2453 19L10.7453 19.0038C10.3311 19.0044 9.99476 18.6691 9.99414 18.2549C9.99352 17.8407 10.3288 17.5044 10.743 17.5038L13.243 17.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="Theme=Filled">
3
+ <path id="Shape" fill-rule="evenodd" clip-rule="evenodd" d="M14.9212 3.38397H9.07847L9.07847 10.664H14.9212V3.38397ZM9.07847 2C8.31412 2 7.6945 2.61962 7.6945 3.38397V4.23949H7.00995C6.24565 4.23949 5.62598 4.85913 5.62598 5.62346V20.616C5.62598 21.3804 6.24565 22 7.00995 22H16.9904C17.7546 22 18.3743 21.3804 18.3743 20.616V5.62346C18.3743 4.85913 17.7546 4.23949 16.9904 4.23949H16.3051V3.38397C16.3051 2.61962 15.6855 2 14.9212 2H9.07847ZM9.22714 15.7519C9.6108 15.7519 9.92183 15.4408 9.92183 15.0572C9.92183 14.6735 9.6108 14.3625 9.22714 14.3625C8.84347 14.3625 8.53245 14.6735 8.53245 15.0572C8.53245 15.4408 8.84347 15.7519 9.22714 15.7519ZM12.6952 15.0572C12.6952 15.4408 12.3842 15.7519 12.0005 15.7519C11.6168 15.7519 11.3058 15.4408 11.3058 15.0572C11.3058 14.6735 11.6168 14.3625 12.0005 14.3625C12.3842 14.3625 12.6952 14.6735 12.6952 15.0572ZM12.0005 18.2799C12.3842 18.2799 12.6952 17.9689 12.6952 17.5852C12.6952 17.2015 12.3842 16.8905 12.0005 16.8905C11.6168 16.8905 11.3058 17.2015 11.3058 17.5852C11.3058 17.9689 11.6168 18.2799 12.0005 18.2799ZM14.7738 15.7519C15.1575 15.7519 15.4685 15.4408 15.4685 15.0572C15.4685 14.6735 15.1575 14.3625 14.7738 14.3625C14.3902 14.3625 14.0791 14.6735 14.0791 15.0572C14.0791 15.4408 14.3902 15.7519 14.7738 15.7519ZM14.7738 18.2799C15.1575 18.2799 15.4685 17.9689 15.4685 17.5852C15.4685 17.2015 15.1575 16.8905 14.7738 16.8905C14.3902 16.8905 14.0791 17.2015 14.0791 17.5852C14.0791 17.9689 14.3902 18.2799 14.7738 18.2799ZM9.22714 18.2799C9.6108 18.2799 9.92183 17.9689 9.92183 17.5852C9.92183 17.2015 9.6108 16.8905 9.22714 16.8905C8.84347 16.8905 8.53245 17.2015 8.53245 17.5852C8.53245 17.9689 8.84347 18.2799 9.22714 18.2799Z" 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="Theme=Line">
3
+ <path id="Shape" fill-rule="evenodd" clip-rule="evenodd" d="M9.07847 3.38397H14.9212V10.664H9.07847L9.07847 3.38397ZM7.6945 3.38397C7.6945 2.61962 8.31412 2 9.07847 2H14.9212C15.6855 2 16.3051 2.61962 16.3051 3.38397V4.23949H16.9904C17.7546 4.23949 18.3743 4.85913 18.3743 5.62346V20.616C18.3743 21.3804 17.7546 22 16.9904 22H7.00995C6.24565 22 5.62598 21.3804 5.62598 20.616V5.62346C5.62598 4.85913 6.24565 4.23949 7.00995 4.23949H7.6945V3.38397ZM7.6945 5.62346H7.00995V20.616H16.9904V5.62346H16.3051V10.664C16.3051 11.4284 15.6855 12.048 14.9212 12.048H9.07847C8.31412 12.048 7.6945 11.4284 7.6945 10.664V5.62346ZM12.6952 15.0288C12.6952 15.4125 12.3842 15.7235 12.0005 15.7235C11.6168 15.7235 11.3058 15.4125 11.3058 15.0288C11.3058 14.6451 11.6168 14.3341 12.0005 14.3341C12.3842 14.3341 12.6952 14.6451 12.6952 15.0288ZM12.0005 18.2515C12.3842 18.2515 12.6952 17.9405 12.6952 17.5568C12.6952 17.1732 12.3842 16.8621 12.0005 16.8621C11.6168 16.8621 11.3058 17.1732 11.3058 17.5568C11.3058 17.9405 11.6168 18.2515 12.0005 18.2515ZM15.4685 15.0288C15.4685 15.4125 15.1575 15.7235 14.7738 15.7235C14.3902 15.7235 14.0791 15.4125 14.0791 15.0288C14.0791 14.6451 14.3902 14.3341 14.7738 14.3341C15.1575 14.3341 15.4685 14.6451 15.4685 15.0288ZM14.7738 18.2515C15.1575 18.2515 15.4685 17.9405 15.4685 17.5568C15.4685 17.1732 15.1575 16.8621 14.7738 16.8621C14.3902 16.8621 14.0791 17.1732 14.0791 17.5568C14.0791 17.9405 14.3902 18.2515 14.7738 18.2515ZM9.92183 15.0288C9.92183 15.4125 9.6108 15.7235 9.22714 15.7235C8.84347 15.7235 8.53245 15.4125 8.53245 15.0288C8.53245 14.6451 8.84347 14.3341 9.22714 14.3341C9.6108 14.3341 9.92183 14.6451 9.92183 15.0288ZM9.22714 18.2515C9.6108 18.2515 9.92183 17.9405 9.92183 17.5568C9.92183 17.1732 9.6108 16.8621 9.22714 16.8621C8.84347 16.8621 8.53245 17.1732 8.53245 17.5568C8.53245 17.9405 8.84347 18.2515 9.22714 18.2515Z" 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="M11.9941 2C17.517 2 21.9941 6.47715 21.9941 12C21.9941 17.5228 17.517 22 11.9941 22C6.47129 22 1.99414 17.5228 1.99414 12C1.99414 6.47715 6.47129 2 11.9941 2ZM18.1072 7.6538L7.64794 18.1131C8.87406 18.9864 10.3741 19.5 11.9941 19.5C16.1363 19.5 19.4941 16.1421 19.4941 12C19.4941 10.38 18.9805 8.87992 18.1072 7.6538ZM11.9941 4.5C7.85201 4.5 4.49414 7.85786 4.49414 12C4.49414 13.62 5.00778 15.1201 5.88109 16.3462L16.3403 5.88695C15.1142 5.01364 13.6142 4.5 11.9941 4.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="M11.9941 2C17.517 2 21.9941 6.47715 21.9941 12C21.9941 17.5228 17.517 22 11.9941 22C6.47129 22 1.99414 17.5228 1.99414 12C1.99414 6.47715 6.47129 2 11.9941 2ZM18.5115 6.54309L6.53723 18.5173C8.01369 19.7549 9.9169 20.5 11.9941 20.5C16.6886 20.5 20.4941 16.6944 20.4941 12C20.4941 9.92276 19.749 8.01955 18.5115 6.54309ZM11.9941 3.5C7.29972 3.5 3.49414 7.30558 3.49414 12C3.49414 14.0772 4.23927 15.9804 5.47682 17.4569L17.4511 5.48268C15.9746 4.24513 14.0714 3.5 11.9941 3.5Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.471 2.06803C10.9763 2.17677 10.65 2.39968 10.4597 2.75852C10.3782 2.90532 10.3564 3.09562 10.3401 3.70456L10.3184 4.46573L9.90517 4.61797C9.67138 4.69952 9.31798 4.84632 9.10593 4.94963L8.72534 5.12905L8.17621 4.59622C7.74669 4.18301 7.5727 4.05252 7.38785 4.00359C6.89308 3.86767 6.43094 4.04165 5.75675 4.61797C4.96839 5.29216 4.51712 5.92828 4.46819 6.45023C4.43013 6.85257 4.59867 7.16791 5.15868 7.72249L5.64258 8.20094L5.43597 8.64677C5.32179 8.886 5.16956 9.25028 5.10431 9.45145L4.97926 9.81029L4.21265 9.83204C3.49497 9.84835 3.43516 9.85922 3.19593 10.0006C2.69573 10.2942 2.5 10.8488 2.5 11.996C2.5 13.1432 2.69573 13.6977 3.19593 13.9913C3.43516 14.1327 3.49497 14.1436 4.21265 14.1599L4.97383 14.1816L5.12606 14.5948C5.20762 14.8286 5.35442 15.182 5.45772 15.3941L5.63714 15.7747L5.10431 16.3238C4.6911 16.7533 4.56062 16.9273 4.51168 17.1122C4.37576 17.6124 4.54974 18.0691 5.1315 18.7541C5.55015 19.238 6.11016 19.7219 6.46356 19.8905C6.99095 20.146 7.54008 20.0427 7.9696 19.6023C8.08378 19.4881 8.19796 19.3902 8.2197 19.3902C8.24145 19.3902 8.2632 19.9285 8.2632 20.5809V21.7771L8.40456 21.8858C8.54592 22 8.58398 22 12.504 22C16.4241 22 16.4622 22 16.6035 21.8858L16.7449 21.7771V20.5483V19.325L17.0657 19.6186C17.7344 20.2439 18.3162 20.1732 19.2622 19.3685C20.0288 18.7052 20.491 18.0528 20.5399 17.5417C20.578 17.1393 20.4094 16.824 19.8494 16.2694L19.3655 15.791L19.5721 15.3451C19.6863 15.1059 19.8385 14.7416 19.9038 14.5405L20.0288 14.1816L20.7954 14.1599C21.4805 14.1436 21.5784 14.1327 21.785 14.0131C22.2852 13.7249 22.4592 13.2845 22.4972 12.2352C22.5407 10.9357 22.3504 10.3159 21.8176 10.0006C21.5729 9.85922 21.5131 9.84835 20.7954 9.83204L20.0343 9.81029L19.882 9.39708C19.8005 9.16329 19.6537 8.80445 19.5504 8.59784L19.371 8.21725L19.8929 7.67355C20.3224 7.23316 20.4366 7.08092 20.491 6.87432C20.578 6.56985 20.5399 6.25994 20.3822 5.94459C20.1539 5.49332 19.4525 4.71584 18.9414 4.35156C18.0933 3.74262 17.5931 3.8133 16.7503 4.67234L16.2991 5.13448L15.8532 4.92788C15.614 4.8137 15.2497 4.66147 15.0486 4.59622L14.6897 4.47117L14.668 3.70456C14.6517 2.98688 14.6408 2.92707 14.4994 2.68784C14.32 2.37793 13.9775 2.16045 13.5153 2.06259C13.1021 1.9756 11.8679 1.98103 11.471 2.06803ZM13.5697 2.98688C13.6621 3.03581 13.7546 3.11736 13.7763 3.16086C13.7926 3.20979 13.8089 3.63388 13.8089 4.10146C13.8144 4.74302 13.8307 4.98225 13.885 5.05293C13.9285 5.1073 14.2548 5.24866 14.6082 5.36827C14.9616 5.48789 15.4889 5.7108 15.7771 5.86304C16.1958 6.08052 16.3317 6.12945 16.4567 6.09683C16.5437 6.07508 16.8645 5.80867 17.2342 5.43895C17.6257 5.05293 17.9084 4.81914 17.9791 4.81914C18.3162 4.81914 19.5449 6.02615 19.6537 6.46654C19.6917 6.60247 19.6319 6.67315 19.0665 7.25491C18.7022 7.63006 18.4195 7.96171 18.3977 8.04871C18.3705 8.16832 18.4195 8.30968 18.637 8.72289C18.7892 9.01105 19.0121 9.53844 19.1317 9.89184C19.2513 10.2452 19.3927 10.5715 19.4471 10.615C19.5178 10.6693 19.7624 10.6856 20.404 10.6911C20.877 10.6911 21.3065 10.7128 21.3609 10.7454C21.5566 10.8488 21.611 11.1097 21.611 11.996C21.611 12.8822 21.5566 13.1432 21.3609 13.2465C21.3065 13.2791 20.877 13.3008 20.404 13.3008C19.7624 13.3063 19.5178 13.3226 19.4471 13.3769C19.3927 13.4204 19.2513 13.7467 19.1317 14.1001C19.0121 14.4535 18.7892 14.9809 18.637 15.269C18.4195 15.6877 18.3705 15.8236 18.4032 15.9486C18.4249 16.0356 18.6913 16.3564 19.061 16.7261C19.4471 17.1176 19.6809 17.4003 19.6809 17.471C19.6809 17.8081 18.4739 19.0368 18.0335 19.1456C17.8975 19.1836 17.8269 19.1293 17.3158 18.6291C17.0059 18.3192 16.7612 18.0473 16.7775 18.0256C16.8319 17.9331 16.6796 17.2263 16.5328 16.9055C16.4459 16.7261 16.2556 16.4488 16.1088 16.2966L15.8424 16.0193L16.136 15.7366C16.8047 15.0787 17.3375 14.1381 17.5713 13.2138C17.7399 12.5451 17.7399 11.3544 17.5713 10.7291C17.2614 9.58737 16.5709 8.55978 15.6412 7.85841C13.8252 6.48285 11.4547 6.42848 9.54089 7.71705C8.83408 8.1955 8.08378 9.08717 7.73581 9.86466C7.54552 10.2996 7.34979 11.0825 7.30629 11.6208C7.19212 13.0725 7.79562 14.6764 8.84496 15.7094L9.16574 16.0193L8.89933 16.2966C8.75253 16.4488 8.56223 16.7261 8.47524 16.9055C8.32844 17.2263 8.17077 17.9549 8.23602 18.0201C8.29582 18.0799 7.15406 19.1728 7.03444 19.1728C6.65929 19.1728 5.32723 17.8135 5.32723 17.4275C5.32723 17.3949 5.60452 17.0795 5.94705 16.7316C6.30589 16.3619 6.58861 16.0302 6.61036 15.9432C6.63754 15.8236 6.58861 15.6822 6.37113 15.269C6.2189 14.9809 5.99598 14.4535 5.87637 14.1001C5.75675 13.7467 5.61539 13.4204 5.56102 13.3769C5.49034 13.3226 5.24568 13.3063 4.59324 13.3008C3.57109 13.3008 3.51672 13.2791 3.42972 12.8659C3.35361 12.507 3.35361 11.4849 3.42972 11.126C3.51672 10.7128 3.57109 10.6911 4.59324 10.6911C5.24568 10.6856 5.49034 10.6693 5.56102 10.615C5.61539 10.5715 5.75675 10.2452 5.87637 9.89184C5.99598 9.53844 6.2189 9.01105 6.37113 8.72289C6.58861 8.30424 6.63754 8.16832 6.60492 8.04327C6.58317 7.95628 6.31676 7.6355 5.94705 7.26578C5.56646 6.87975 5.32723 6.59159 5.32723 6.52635C5.32723 6.14576 6.68648 4.81914 7.0725 4.81914C7.10512 4.81914 7.42047 5.09642 7.76844 5.43895C8.13815 5.79779 8.46981 6.08052 8.5568 6.10227C8.67641 6.12945 8.81777 6.08052 9.23098 5.86304C9.51914 5.7108 10.0465 5.48789 10.3999 5.36827C10.7533 5.24866 11.0796 5.1073 11.1231 5.05293C11.1774 4.98225 11.1937 4.73758 11.1992 4.07971C11.1992 3.0793 11.2264 3.01406 11.6069 2.92163C11.7266 2.88901 12.1778 2.8727 12.6128 2.87814C13.2272 2.88901 13.4392 2.91619 13.5697 2.98688ZM13.2652 7.72249C14.1406 7.88016 14.8746 8.27162 15.5542 8.94581C16.6688 10.055 17.082 11.5175 16.7123 13.0181C16.5111 13.8282 16.0707 14.5731 15.4183 15.1875C14.9887 15.5952 14.88 15.6442 14.532 15.5517C14.4124 15.5191 14.4179 15.5082 14.6245 15.269C15.141 14.6873 15.402 13.8173 15.2932 13.0562C15.0486 11.3598 13.2978 10.2344 11.6831 10.74C10.3673 11.1532 9.4974 12.5342 9.72031 13.8608C9.80187 14.3284 10.0792 14.9265 10.3836 15.269C10.5902 15.5082 10.5957 15.5191 10.4761 15.5517C10.1879 15.6279 10.0302 15.5844 9.7475 15.3506C8.93195 14.6873 8.40456 13.7467 8.22514 12.643C8.11096 11.947 8.17621 11.213 8.41544 10.5443C8.64379 9.89184 8.88302 9.52756 9.45934 8.94581C9.91604 8.4891 10.0411 8.39667 10.5467 8.14657C11.5091 7.67899 12.3083 7.55394 13.2652 7.72249ZM13.3033 11.6697C14.1678 12.0666 14.6408 13.0453 14.3852 13.9206C14.2656 14.3339 14.1025 14.5785 13.76 14.8939C12.727 15.8182 11.0741 15.3397 10.6446 13.9968C10.3619 13.1105 10.7914 12.1264 11.6396 11.6969C12.1833 11.4196 12.7324 11.4142 13.3033 11.6697ZM14.4559 16.4217C14.7115 16.476 15.0051 16.563 15.1084 16.6174C15.3748 16.7533 15.6303 17.0306 15.7608 17.3242C15.8641 17.5525 15.875 17.6776 15.875 19.3468V21.1301H12.504H9.13312V19.3468C9.13312 17.6776 9.14399 17.5525 9.24729 17.3242C9.37778 17.0306 9.63332 16.7533 9.89973 16.6174C10.0683 16.5304 10.5848 16.4108 11.172 16.3238C11.2644 16.3129 11.9332 16.3075 12.6672 16.3129C13.673 16.3238 14.1134 16.351 14.4559 16.4217Z" fill="#555555"/>
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="M12 2C17.523 2 22 6.478 22 12C22 17.522 17.523 22 12 22C6.477 22 2 17.522 2 12C2 6.478 6.477 2 12 2ZM12 15.5C11.4477 15.5 11 15.9477 11 16.5C11 17.0523 11.4477 17.5 12 17.5C12.5523 17.5 13 17.0523 13 16.5C13 15.9477 12.5523 15.5 12 15.5ZM12 6.75C10.4812 6.75 9.25 7.98122 9.25 9.5C9.25 9.91421 9.58579 10.25 10 10.25C10.3797 10.25 10.6935 9.96785 10.7432 9.60177L10.75 9.5C10.75 8.80964 11.3096 8.25 12 8.25C12.6904 8.25 13.25 8.80964 13.25 9.5C13.25 10.0388 13.115 10.3053 12.6051 10.8322L12.4697 10.9697C11.5916 11.8478 11.25 12.4171 11.25 13.5C11.25 13.9142 11.5858 14.25 12 14.25C12.4142 14.25 12.75 13.9142 12.75 13.5C12.75 12.9612 12.885 12.6947 13.3949 12.1678L13.5303 12.0303C14.4084 11.1522 14.75 10.5829 14.75 9.5C14.75 7.98122 13.5188 6.75 12 6.75Z" 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.523 2 22 6.478 22 12C22 17.522 17.523 22 12 22C6.477 22 2 17.522 2 12C2 6.478 6.477 2 12 2ZM12 3.667C7.405 3.667 3.667 7.405 3.667 12C3.667 16.595 7.405 20.333 12 20.333C16.595 20.333 20.333 16.595 20.333 12C20.333 7.405 16.595 3.667 12 3.667ZM12 15.5C12.5523 15.5 13 15.9477 13 16.5C13 17.0523 12.5523 17.5 12 17.5C11.4477 17.5 11 17.0523 11 16.5C11 15.9477 11.4477 15.5 12 15.5ZM12 6.75C13.5188 6.75 14.75 7.98122 14.75 9.5C14.75 10.5108 14.4525 11.074 13.6989 11.8586L13.5303 12.0303C12.9084 12.6522 12.75 12.9163 12.75 13.5C12.75 13.9142 12.4142 14.25 12 14.25C11.5858 14.25 11.25 13.9142 11.25 13.5C11.25 12.4892 11.5475 11.926 12.3011 11.1414L12.4697 10.9697C13.0916 10.3478 13.25 10.0837 13.25 9.5C13.25 8.80964 12.6904 8.25 12 8.25C11.3528 8.25 10.8205 8.74187 10.7565 9.37219L10.75 9.5C10.75 9.91421 10.4142 10.25 10 10.25C9.58579 10.25 9.25 9.91421 9.25 9.5C9.25 7.98122 10.4812 6.75 12 6.75Z" 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="M18.0001 7.58649L14.359 3.9514C11.7578 1.35018 7.54042 1.35018 4.9392 3.9514C2.33798 6.55262 2.33798 10.77 4.9392 13.3713L13.2777 21.7082C13.6683 22.0987 14.3014 22.0985 14.6919 21.708C15.0824 21.3175 15.0822 20.6842 14.6916 20.2938L6.35341 11.957C4.53324 10.1369 4.53324 7.18579 6.35341 5.36562C8.1167 3.60233 10.9413 3.54722 12.7714 5.20074L12.9453 5.36609L16.5851 8.99949L12.0001 9.00002C11.4873 9.00002 11.0646 9.38606 11.0069 9.8834L11.0001 10C11.0001 10.5129 11.3862 10.9355 11.8835 10.9933L12.0001 11H19.0001C19.513 11 19.9356 10.614 19.9934 10.1166L20.0001 10V3.00284C20.0001 2.45055 19.5524 2.00284 19.0001 2.00284C18.4873 2.00284 18.0646 2.38888 18.0069 2.88622L18.0001 3.00284V7.58649L14.359 3.9514L18.0001 7.58649Z" 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="M19.2501 2C18.8704 2 18.5566 2.28215 18.507 2.64823L18.5001 2.75V8.44L13.9258 3.88014C11.4838 1.43819 7.56165 1.37863 5.0475 3.70146L4.86162 3.88014C2.35863 6.38313 2.35863 10.4413 4.86162 12.9443L13.7068 21.7835C13.9998 22.0762 14.4745 22.0759 14.7674 21.783C15.0603 21.4901 15.06 21.0151 14.767 20.7223L5.92228 11.8836C4.00507 9.96641 4.00507 6.85801 5.92228 4.9408C7.78139 3.08169 10.7606 3.02535 12.6883 4.77248L12.8659 4.94156L17.4381 9.5L11.7501 9.50018C11.3704 9.50018 11.0566 9.78234 11.007 10.1484L11.0001 10.2502C11.0001 10.6299 11.2823 10.9437 11.6483 10.9933L11.7501 11.0002H19.2501C19.6298 11.0002 19.9436 10.718 19.9933 10.352L20.0001 10.2502V2.75C20.0001 2.33579 19.6643 2 19.2501 2Z" fill="#222222"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.25" y="3.67999" width="23.5" height="16.6429" rx="1.75" fill="white" stroke="#F5F5F5" stroke-width="0.5"/>
3
+ <mask id="mask0_1993_2464" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="3" width="24" height="18">
4
+ <rect x="0.25" y="3.67999" width="23.5" height="16.6429" rx="1.75" fill="white" stroke="white" stroke-width="0.5"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1993_2464)">
7
+ <path d="M0 14.8586H24V9.14435H0V14.8586Z" fill="#0C47B7"/>
8
+ <path d="M0 20.573H24V14.8587H0V20.573Z" fill="#E53B35"/>
9
+ </g>
10
+ </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.55042 9.83908C6.58356 9.83908 6.61042 9.81222 6.61042 9.77908V3.68231C6.61042 3.23442 6.97351 2.87134 7.42139 2.87134H14.3891C15.5282 2.87134 16.6206 3.32383 17.426 4.12927C18.2315 4.93471 18.684 6.02711 18.684 7.16618C18.684 8.30524 18.2315 9.39765 17.426 10.2031C16.6206 11.0085 15.5282 11.461 14.3891 11.461H8.29236C8.25922 11.461 8.23236 11.4879 8.23236 11.521V14.4243C8.23236 14.4575 8.25922 14.4843 8.29236 14.4843H14.3891C14.837 14.4843 15.2001 14.8474 15.2001 15.2953C15.2001 15.7432 14.837 16.1063 14.3891 16.1063H8.29236C8.25922 16.1063 8.23236 16.1331 8.23236 16.1663V19.9404C8.23236 20.3883 7.86928 20.7513 7.42139 20.7513C6.97351 20.7513 6.61042 20.3883 6.61042 19.9404V16.1663C6.61042 16.1331 6.58356 16.1063 6.55042 16.1063H5.09881C4.65092 16.1063 4.28784 15.7432 4.28784 15.2953C4.28784 14.8474 4.65092 14.4843 5.09881 14.4843H6.55042C6.58356 14.4843 6.61042 14.4575 6.61042 14.4243V11.521C6.61042 11.4879 6.58356 11.461 6.55042 11.461H5.09881C4.65092 11.461 4.28784 11.0979 4.28784 10.65C4.28784 10.2022 4.65092 9.83908 5.09881 9.83908H6.55042ZM8.23236 9.77908C8.23236 9.81222 8.25922 9.83908 8.29236 9.83908H14.3891C15.098 9.83908 15.7779 9.55747 16.2792 9.05621C16.7804 8.55494 17.062 7.87507 17.062 7.16618C17.062 6.45728 16.7804 5.77742 16.2792 5.27615C15.7779 4.77488 15.098 4.49327 14.3891 4.49327H8.29236C8.25922 4.49327 8.23236 4.52014 8.23236 4.55327V9.77908Z" 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="M6.55036 9.83908C6.5835 9.83908 6.61036 9.81222 6.61036 9.77908V3.68231C6.61036 3.23442 6.97344 2.87134 7.42133 2.87134H14.3891C15.5281 2.87134 16.6205 3.32383 17.426 4.12927C18.2314 4.93471 18.6839 6.02711 18.6839 7.16618C18.6839 8.30524 18.2314 9.39765 17.426 10.2031C16.6205 11.0085 15.5281 11.461 14.3891 11.461H8.2923C8.25916 11.461 8.2323 11.4879 8.2323 11.521V14.4243C8.2323 14.4575 8.25916 14.4843 8.2923 14.4843H14.3891C14.837 14.4843 15.2 14.8474 15.2 15.2953C15.2 15.7432 14.837 16.1063 14.3891 16.1063H8.2923C8.25916 16.1063 8.2323 16.1331 8.2323 16.1663V19.9404C8.2323 20.3883 7.86921 20.7513 7.42133 20.7513C6.97344 20.7513 6.61036 20.3883 6.61036 19.9404V16.1663C6.61036 16.1331 6.5835 16.1063 6.55036 16.1063H5.09875C4.65086 16.1063 4.28778 15.7432 4.28778 15.2953C4.28778 14.8474 4.65086 14.4843 5.09875 14.4843H6.55036C6.5835 14.4843 6.61036 14.4575 6.61036 14.4243V11.521C6.61036 11.4879 6.5835 11.461 6.55036 11.461H5.09875C4.65086 11.461 4.28778 11.0979 4.28778 10.65C4.28778 10.2022 4.65086 9.83908 5.09875 9.83908H6.55036ZM8.2323 9.77908C8.2323 9.81222 8.25916 9.83908 8.2923 9.83908H14.3891C15.098 9.83908 15.7778 9.55747 16.2791 9.05621C16.7804 8.55494 17.062 7.87507 17.062 7.16618C17.062 6.45728 16.7804 5.77742 16.2791 5.27615C15.7778 4.77488 15.098 4.49327 14.3891 4.49327H8.2923C8.25916 4.49327 8.2323 4.52014 8.2323 4.55327V9.77908Z" 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 3H5.75C4.23122 3 3 4.23122 3 5.75V18.25C3 19.7688 4.23122 21 5.75 21H6V15C6 13.7574 7.00736 12.75 8.25 12.75H15.75C16.9926 12.75 18 13.7574 18 15V21H18.25C19.7688 21 21 19.7688 21 18.25V8.28553C21 7.42358 20.6576 6.59693 20.0481 5.98744L18.0126 3.9519C17.4114 3.35079 16.5991 3.00947 15.75 3.00019V7.5C15.75 8.74264 14.7426 9.75 13.5 9.75H9C7.75736 9.75 6.75 8.74264 6.75 7.5V3ZM14.25 3V7.5C14.25 7.91421 13.9142 8.25 13.5 8.25H9C8.58579 8.25 8.25 7.91421 8.25 7.5V3H14.25ZM16.5 21V15C16.5 14.5858 16.1642 14.25 15.75 14.25H8.25C7.83579 14.25 7.5 14.5858 7.5 15V21H16.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="M3 5.75C3 4.23122 4.23122 3 5.75 3H15.7145C16.5764 3 17.4031 3.34241 18.0126 3.9519L20.0481 5.98744C20.6576 6.59693 21 7.42358 21 8.28553V18.25C21 19.7688 19.7688 21 18.25 21H5.75C4.23122 21 3 19.7688 3 18.25V5.75ZM5.75 4.5C5.05964 4.5 4.5 5.05964 4.5 5.75V18.25C4.5 18.9404 5.05964 19.5 5.75 19.5H6V14.25C6 13.0074 7.00736 12 8.25 12H15.75C16.9926 12 18 13.0074 18 14.25V19.5H18.25C18.9404 19.5 19.5 18.9404 19.5 18.25V8.28553C19.5 7.8214 19.3156 7.37629 18.9874 7.0481L16.9519 5.01256C16.6918 4.75246 16.3582 4.58269 16 4.52344V7.25C16 8.49264 14.9926 9.5 13.75 9.5H9.25C8.00736 9.5 7 8.49264 7 7.25V4.5H5.75ZM16.5 19.5V14.25C16.5 13.8358 16.1642 13.5 15.75 13.5H8.25C7.83579 13.5 7.5 13.8358 7.5 14.25V19.5H16.5ZM8.5 4.5V7.25C8.5 7.66421 8.83579 8 9.25 8H13.75C14.1642 8 14.5 7.66421 14.5 7.25V4.5H8.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=Filled">
3
+ <path id="Shape" d="M18.8225 11.1283C19.7843 10.4718 20.466 9.51181 20.7894 8.43654C20.8886 8.57241 20.9827 8.71346 21.0713 8.85993C21.6755 9.85813 22 11.063 22 12.5001C22 14.706 21.1671 16.2492 20.3194 17.2381C19.899 17.7287 19.4777 18.0802 19.1579 18.3112C19.1021 18.3514 19.0493 18.3881 19 18.4214V20.2501C19 21.2166 18.2165 22.0001 17.25 22.0001H16C15.1716 22.0001 14.5 21.3285 14.5 20.5001H12.5C12.5 21.3285 11.8284 22.0001 11 22.0001H9.75C8.7835 22.0001 8 21.2166 8 20.2501V19.5674C7.86194 19.5209 7.7053 19.4631 7.53573 19.3922C6.93965 19.1427 6.15955 18.7203 5.46967 18.0304C4.68564 17.2464 4.16052 16.4283 3.8651 15.8994C3.77791 15.7433 3.64768 15.66 3.53621 15.6414C2.64973 15.4937 2 14.7267 2 13.828V12.0751C2 11.2324 2.60926 10.5132 3.44051 10.3746C3.52742 10.3601 3.6555 10.2738 3.71651 10.0911C3.90886 9.51484 4.28209 8.6573 4.96967 7.96972C5.53209 7.40731 6.15488 6.99416 6.6279 6.72387C6.76427 6.64594 6.88983 6.57896 7 6.52288V3.67121C7 2.73331 8.13062 2.34833 8.73986 2.95499C9.07031 3.28404 9.55006 3.72288 10.0811 4.08935C10.6111 4.45512 11.1177 4.69615 11.5352 4.74929C11.0507 5.71174 10.8779 6.82571 11.0853 7.92421C11.2662 8.88185 11.999 9.48693 12.6874 9.77201L16.3831 11.3024C17.0715 11.5875 18.0175 11.6777 18.8225 11.1283ZM8 11C8.55228 11 9 10.5523 9 10C9 9.44775 8.55228 9.00003 8 9.00003C7.44772 9.00003 7 9.44775 7 10C7 10.5523 7.44772 11 8 11ZM18.2588 10.3023C19.211 9.65236 19.8199 8.62989 19.9666 7.52135C19.9666 7.52133 19.9666 7.52136 19.9666 7.52135C20.0558 6.8476 19.9742 6.14201 19.6954 5.46899C18.8498 3.42808 16.5099 2.45907 14.4689 3.30465C12.6886 4.04227 11.7239 5.91709 12.0679 7.73856C12.0926 7.86889 12.1369 7.99071 12.1972 8.10332C12.2471 8.19656 12.3079 8.28348 12.3776 8.36366C12.5604 8.57394 12.8039 8.7379 13.07 8.84809L16.7657 10.3785C17.2558 10.5815 17.8206 10.6013 18.2588 10.3023Z" 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="M10.0811 4.08935C10.6111 4.45511 11.1177 4.69614 11.5352 4.74929C11.3076 5.20138 11.1488 5.68691 11.0659 6.18856C10.3925 6.04081 9.75356 5.6858 9.22916 5.32393C8.96994 5.14504 8.7245 4.95442 8.5 4.76675V7.00005C8.5 7.3063 8.31381 7.58174 8.02974 7.69593L8.02354 7.69849C8.01733 7.70107 8.0067 7.70553 7.99202 7.71188C7.96264 7.72459 7.91715 7.74477 7.85841 7.77242C7.74069 7.82781 7.57111 7.91252 7.3721 8.02624C6.97012 8.25594 6.46791 8.5928 6.03033 9.03038C5.57681 9.4839 5.29723 10.093 5.13933 10.566C4.93681 11.1727 4.42116 11.7319 3.68711 11.8542C3.57914 11.8722 3.5 11.9656 3.5 12.0751V13.828C3.5 13.9934 3.61961 14.1346 3.7828 14.1618C4.40671 14.2658 4.89825 14.6731 5.17464 15.1679C5.42601 15.6179 5.87291 16.3123 6.53033 16.9697C7.04118 17.4806 7.63608 17.8081 8.11482 18.0085C8.3521 18.1078 8.55481 18.1733 8.69504 18.2133C8.76497 18.2333 8.81882 18.2468 8.853 18.2548C8.87007 18.2588 8.88219 18.2615 8.88889 18.2629L8.8937 18.2639L8.89478 18.2642C9.24631 18.3333 9.5 18.6415 9.5 19.0001V20.2501C9.5 20.3881 9.61193 20.5001 9.75 20.5001H11C11 19.6716 11.6716 19.0001 12.5 19.0001H14.5C15.3284 19.0001 16 19.6716 16 20.5001H17.25C17.3881 20.5001 17.5 20.3881 17.5 20.2501V18.0001C17.5 17.7172 17.6597 17.4583 17.9118 17.3306L17.9251 17.3235C17.939 17.3159 17.9629 17.3026 17.9953 17.2833C18.0602 17.2447 18.1586 17.1825 18.2796 17.0952C18.5223 16.9199 18.851 16.6465 19.1806 16.262C19.8329 15.5009 20.5 14.2941 20.5 12.5001C20.5 11.4934 20.3118 10.6797 19.9913 10.0125C20.3492 9.53751 20.619 9.00301 20.7894 8.43653C20.8886 8.5724 20.9827 8.71346 21.0713 8.85993C21.6755 9.85813 22 11.063 22 12.5001C22 14.706 21.1671 16.2492 20.3194 17.2381C19.899 17.7287 19.4777 18.0802 19.1579 18.3112C19.1021 18.3514 19.0493 18.3881 19 18.4214V20.2501C19 21.2166 18.2165 22.0001 17.25 22.0001H16C15.1716 22.0001 14.5 21.3285 14.5 20.5001H12.5C12.5 21.3285 11.8284 22.0001 11 22.0001H9.75C8.7835 22.0001 8 21.2166 8 20.2501V19.5675C7.86194 19.5209 7.7053 19.4631 7.53573 19.3922C6.93965 19.1427 6.15955 18.7203 5.46967 18.0304C4.68564 17.2464 4.16052 16.4283 3.8651 15.8994C3.77791 15.7433 3.64768 15.66 3.5362 15.6414C2.64973 15.4937 2 14.7267 2 13.828V12.0751C2 11.2324 2.60926 10.5132 3.44051 10.3746C3.52742 10.3601 3.6555 10.2738 3.71651 10.0911C3.90886 9.51484 4.28209 8.6573 4.96967 7.96972C5.53209 7.40731 6.15488 6.99416 6.6279 6.72387C6.76427 6.64594 6.88983 6.57897 7 6.52288V3.67121C7 2.73331 8.13062 2.34833 8.73986 2.95499C9.07031 3.28404 9.55006 3.72288 10.0811 4.08935ZM13.07 8.84808C12.5799 8.64513 12.1664 8.25981 12.0679 7.7386C11.7239 5.91712 12.6886 4.04231 14.4689 3.30468C16.5098 2.45911 18.8498 3.42812 19.6954 5.46902C20.433 7.24939 19.7898 9.25732 18.2587 10.3023C17.8206 10.6013 17.2557 10.5814 16.7656 10.3785L13.07 8.84808ZM17.4641 9.02758C18.3837 8.36546 18.7617 7.13428 18.3096 6.04317C17.7811 4.7676 16.3186 4.16197 15.0431 4.69045C13.952 5.14252 13.3489 6.28046 13.5311 7.39885C13.5369 7.40342 13.544 7.40861 13.5525 7.41427C13.5761 7.43001 13.6068 7.44684 13.6439 7.46221L17.3395 8.99263C17.3767 9.008 17.4103 9.0178 17.4381 9.02336C17.4481 9.02535 17.4568 9.0267 17.4641 9.02758ZM9 10C9 10.5523 8.55228 11 8 11C7.44772 11 7 10.5523 7 10C7 9.44774 7.44772 9.00002 8 9.00002C8.55228 9.00002 9 9.44774 9 10Z" 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="M10 2.5C14.1421 2.5 17.5 5.85786 17.5 10C17.5 11.7101 16.9276 13.2866 15.964 14.5483L20.7071 19.2929C21.0976 19.6834 21.0976 20.3166 20.7071 20.7071C20.3466 21.0676 19.7794 21.0953 19.3871 20.7903L19.2929 20.7071L14.5483 15.964C13.2866 16.9276 11.7101 17.5 10 17.5C5.85786 17.5 2.5 14.1421 2.5 10C2.5 5.85786 5.85786 2.5 10 2.5ZM10 4.5C6.96243 4.5 4.5 6.96243 4.5 10C4.5 13.0376 6.96243 15.5 10 15.5C13.0376 15.5 15.5 13.0376 15.5 10C15.5 6.96243 13.0376 4.5 10 4.5Z" 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="M10 2.75C14.0041 2.75 17.25 5.99594 17.25 10C17.25 11.7319 16.6427 13.3219 15.6295 14.5688L20.5303 19.4697C20.8232 19.7626 20.8232 20.2374 20.5303 20.5303C20.2641 20.7966 19.8474 20.8208 19.5538 20.6029L19.4697 20.5303L14.5688 15.6295C13.3219 16.6427 11.7319 17.25 10 17.25C5.99594 17.25 2.75 14.0041 2.75 10C2.75 5.99594 5.99594 2.75 10 2.75ZM10 4.25C6.82436 4.25 4.25 6.82436 4.25 10C4.25 13.1756 6.82436 15.75 10 15.75C13.1756 15.75 15.75 13.1756 15.75 10C15.75 6.82436 13.1756 4.25 10 4.25Z" 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="State=Off, Size=24, Theme=Filled">
3
+ <path id="Shape" d="M20.4962 5.62668C21.3721 5.93448 22 6.76891 22 7.75V17.75C22 20.0972 20.0972 22 17.75 22H7.75C6.76891 22 5.93448 21.3721 5.62668 20.4962L7.72396 20.4996L17.75 20.5C19.2688 20.5 20.5 19.2688 20.5 17.75V7.75L20.496 7.69902L20.4962 5.62668ZM17.2468 2C18.4895 2 19.4968 3.00736 19.4968 4.25V17.2468C19.4968 18.4895 18.4895 19.4968 17.2468 19.4968H4.25C3.00736 19.4968 2 18.4895 2 17.2468V4.25C2 3.00736 3.00736 2 4.25 2H17.2468Z" 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="State=Off, Size=24, Theme=Regular">
3
+ <path id="Shape" d="M20.4962 5.62668C21.3721 5.93448 22 6.76891 22 7.75V17.75C22 20.0972 20.0972 22 17.75 22H7.75C6.76891 22 5.93448 21.3721 5.62668 20.4962L7.72396 20.4996L17.75 20.5C19.2688 20.5 20.5 19.2688 20.5 17.75V7.75L20.496 7.69902L20.4962 5.62668ZM17.2468 2C18.4895 2 19.4968 3.00736 19.4968 4.25V17.2468C19.4968 18.4895 18.4895 19.4968 17.2468 19.4968H4.25C3.00736 19.4968 2 18.4895 2 17.2468V4.25C2 3.00736 3.00736 2 4.25 2H17.2468ZM17.2468 3.5H4.25C3.83579 3.5 3.5 3.83579 3.5 4.25V17.2468C3.5 17.661 3.83579 17.9968 4.25 17.9968H17.2468C17.661 17.9968 17.9968 17.661 17.9968 17.2468V4.25C17.9968 3.83579 17.661 3.5 17.2468 3.5Z" 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="State=On, Size=24, Theme=Filled">
3
+ <path id="Shape" d="M20.4962 5.62668C21.3721 5.93448 22 6.76891 22 7.75V17.75C22 20.0972 20.0972 22 17.75 22H7.75C6.76891 22 5.93448 21.3721 5.62668 20.4962L7.72396 20.4996L17.75 20.5C19.2688 20.5 20.5 19.2688 20.5 17.75V7.75L20.496 7.69902L20.4962 5.62668ZM17.2468 2C18.4895 2 19.4968 3.00736 19.4968 4.25V17.2468C19.4968 18.4895 18.4895 19.4968 17.2468 19.4968H4.25C3.00736 19.4968 2 18.4895 2 17.2468V4.25C2 3.00736 3.00736 2 4.25 2H17.2468ZM13.4697 7.46967L9.58115 11.3582L8.6 10.05C8.35147 9.71863 7.88137 9.65147 7.55 9.9C7.21863 10.1485 7.15147 10.6186 7.4 10.95L8.9 12.95C9.17385 13.3151 9.7076 13.3531 10.0303 13.0303L14.5303 8.53033C14.8232 8.23744 14.8232 7.76256 14.5303 7.46967C14.2374 7.17678 13.7626 7.17678 13.4697 7.46967Z" 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="State=On, Size=24, Theme=Regular">
3
+ <path id="Shape" d="M20.4962 5.62668C21.3721 5.93448 22 6.76891 22 7.75V17.75C22 20.0972 20.0972 22 17.75 22H7.75C6.76891 22 5.93448 21.3721 5.62668 20.4962L7.72396 20.4996L17.75 20.5C19.2688 20.5 20.5 19.2688 20.5 17.75V7.75L20.496 7.69902L20.4962 5.62668ZM17.2468 2C18.4895 2 19.4968 3.00736 19.4968 4.25V17.2468C19.4968 18.4895 18.4895 19.4968 17.2468 19.4968H4.25C3.00736 19.4968 2 18.4895 2 17.2468V4.25C2 3.00736 3.00736 2 4.25 2H17.2468ZM17.2468 3.5H4.25C3.83579 3.5 3.5 3.83579 3.5 4.25V17.2468C3.5 17.661 3.83579 17.9968 4.25 17.9968H17.2468C17.661 17.9968 17.9968 17.661 17.9968 17.2468V4.25C17.9968 3.83579 17.661 3.5 17.2468 3.5ZM9.58115 11.3582L13.4697 7.46967C13.7626 7.17678 14.2374 7.17678 14.5303 7.46967C14.7966 7.73594 14.8208 8.1526 14.6029 8.44621L14.5303 8.53033L10.0303 13.0303C9.73449 13.3262 9.26134 13.3189 8.9736 13.0344L8.9 12.95L7.4 10.95C7.15147 10.6186 7.21863 10.1485 7.55 9.9C7.85125 9.67407 8.26715 9.70903 8.527 9.96622L8.6 10.05L9.58115 11.3582L13.4697 7.46967L9.58115 11.3582Z" 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="M12.8147 12.1972L5.28344 13.4524C5.10705 13.4818 4.95979 13.6032 4.89723 13.7707L2.29933 20.7281C2.05066 21.3675 2.72008 21.9776 3.33375 21.6707L21.3337 12.6707C21.8865 12.3943 21.8865 11.6055 21.3337 11.3291L3.33375 2.32909C2.72008 2.02226 2.05066 2.6323 2.29933 3.27174L4.89723 10.2291C4.95979 10.3967 5.10705 10.518 5.28344 10.5474L12.8147 11.8026C12.9236 11.8208 12.9972 11.9238 12.9791 12.0328C12.965 12.1171 12.899 12.1831 12.8147 12.1972Z" 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="M5.69362 11.9999L2.29933 3.27174C2.0631 2.66427 2.65544 2.08334 3.2414 2.28983L3.33375 2.32909L21.3337 11.3291C21.852 11.5882 21.8844 12.2977 21.4309 12.6132L21.3337 12.6707L3.33375 21.6707C2.75077 21.9622 2.11746 21.4262 2.2688 20.8237L2.29933 20.7281L5.69362 11.9999L2.29933 3.27174L5.69362 11.9999ZM4.4021 4.54032L7.01109 11.2493L13.6387 11.2499C14.0184 11.2499 14.3322 11.5321 14.3818 11.8981L14.3887 11.9999C14.3887 12.3796 14.1065 12.6934 13.7404 12.7431L13.6387 12.7499L7.01109 12.7493L4.4021 19.4595L19.3213 11.9999L4.4021 4.54032Z" 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="M12.0124 2.25C12.7464 2.25846 13.4775 2.34326 14.1939 2.50304C14.5067 2.57279 14.7406 2.83351 14.7761 3.15196L14.9463 4.67881C15.0233 5.37986 15.6152 5.91084 16.3209 5.91158C16.5105 5.91188 16.6982 5.87238 16.8734 5.79483L18.2741 5.17956C18.5654 5.05159 18.9057 5.12136 19.1232 5.35362C20.1354 6.43464 20.8892 7.73115 21.3279 9.14558C21.4225 9.45058 21.3137 9.78203 21.0566 9.9715L19.8151 10.8866C19.461 11.1468 19.2518 11.56 19.2518 11.9995C19.2518 12.4389 19.461 12.8521 19.8159 13.1129L21.0585 14.0283C21.3156 14.2177 21.4246 14.5492 21.3299 14.8543C20.8914 16.2685 20.138 17.5649 19.1264 18.6461C18.9091 18.8783 18.569 18.9483 18.2777 18.8206L16.8714 18.2045C16.4691 18.0284 16.007 18.0542 15.6268 18.274C15.2466 18.4937 14.9935 18.8812 14.9452 19.3177L14.7761 20.8444C14.7413 21.1592 14.5124 21.4182 14.2043 21.4915C12.7558 21.8361 11.2467 21.8361 9.79828 21.4915C9.49015 21.4182 9.26129 21.1592 9.22643 20.8444L9.0576 19.32C9.00802 18.8843 8.75459 18.498 8.37467 18.279C7.99475 18.06 7.53345 18.0343 7.13244 18.2094L5.72582 18.8256C5.43446 18.9533 5.09428 18.8833 4.87703 18.6509C3.86487 17.5685 3.11144 16.2705 2.67344 14.8548C2.57911 14.5499 2.68811 14.2186 2.94509 14.0293L4.18842 13.1133C4.54256 12.8531 4.75172 12.4399 4.75172 12.0005C4.75172 11.561 4.54256 11.1478 4.18796 10.8873L2.94541 9.97285C2.68804 9.78345 2.57894 9.45178 2.67361 9.14658C3.11236 7.73215 3.86619 6.43564 4.87837 5.35462C5.09584 5.12236 5.43618 5.05259 5.72749 5.18056L7.12786 5.79572C7.53081 5.97256 7.99404 5.94585 8.37601 5.72269C8.75633 5.50209 9.00953 5.11422 9.05841 4.67764L9.22849 3.15196C9.26401 2.83335 9.49811 2.57254 9.81105 2.50294C10.5283 2.34342 11.2602 2.25865 12.0124 2.25ZM11.9999 8.99995C10.3431 8.99995 8.99994 10.3431 8.99994 12C8.99994 13.6568 10.3431 15 11.9999 15C13.6568 15 14.9999 13.6568 14.9999 12C14.9999 10.3431 13.6568 8.99995 11.9999 8.99995Z" fill="#222222"/>
4
+ </g>
5
+ </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="M12.0124 2.25C12.7464 2.25846 13.4775 2.34326 14.1939 2.50304C14.5067 2.57279 14.7406 2.83351 14.7761 3.15196L14.9463 4.67881C15.0233 5.37986 15.6152 5.91084 16.3209 5.91158C16.5105 5.91188 16.6982 5.87238 16.8734 5.79483L18.2741 5.17956C18.5654 5.05159 18.9057 5.12136 19.1232 5.35362C20.1354 6.43464 20.8892 7.73115 21.3279 9.14558C21.4225 9.45058 21.3137 9.78203 21.0566 9.9715L19.8151 10.8866C19.461 11.1468 19.2518 11.56 19.2518 11.9995C19.2518 12.4389 19.461 12.8521 19.8159 13.1129L21.0585 14.0283C21.3156 14.2177 21.4246 14.5492 21.3299 14.8543C20.8914 16.2685 20.138 17.5649 19.1264 18.6461C18.9091 18.8783 18.569 18.9483 18.2777 18.8206L16.8714 18.2045C16.4691 18.0284 16.007 18.0542 15.6268 18.274C15.2466 18.4937 14.9935 18.8812 14.9452 19.3177L14.7761 20.8444C14.7413 21.1592 14.5124 21.4182 14.2043 21.4915C12.7558 21.8361 11.2467 21.8361 9.79828 21.4915C9.49015 21.4182 9.26129 21.1592 9.22643 20.8444L9.0576 19.32C9.00802 18.8843 8.75459 18.498 8.37467 18.279C7.99475 18.06 7.53345 18.0343 7.13244 18.2094L5.72582 18.8256C5.43446 18.9533 5.09428 18.8833 4.87703 18.6509C3.86487 17.5685 3.11144 16.2705 2.67344 14.8548C2.57911 14.5499 2.68811 14.2186 2.94509 14.0293L4.18842 13.1133C4.54256 12.8531 4.75172 12.4399 4.75172 12.0005C4.75172 11.561 4.54256 11.1478 4.18796 10.8873L2.94541 9.97285C2.68804 9.78345 2.57894 9.45178 2.67361 9.14658C3.11236 7.73215 3.86619 6.43564 4.87837 5.35462C5.09584 5.12236 5.43618 5.05259 5.72749 5.18056L7.12786 5.79572C7.53081 5.97256 7.99404 5.94585 8.37601 5.72269C8.75633 5.50209 9.00953 5.11422 9.05841 4.67764L9.22849 3.15196C9.26401 2.83335 9.49811 2.57254 9.81105 2.50294C10.5283 2.34342 11.2602 2.25865 12.0124 2.25ZM12.0126 3.7499C11.5586 3.75524 11.1058 3.79443 10.6581 3.86702L10.5491 4.84418C10.4473 5.75368 9.92028 6.56102 9.13066 7.01903C8.33622 7.48317 7.36761 7.53903 6.52483 7.16917L5.62654 6.77456C5.0546 7.46873 4.59938 8.25135 4.27877 9.09168L5.07656 9.67879C5.81537 10.2216 6.25172 11.0837 6.25172 12.0005C6.25172 12.9172 5.81537 13.7793 5.07734 14.3215L4.27829 14.9102C4.59863 15.752 5.05392 16.5361 5.62625 17.2316L6.53138 16.8351C7.36947 16.4692 8.33149 16.5227 9.12377 16.9794C9.91606 17.4361 10.4446 18.2417 10.5482 19.1526L10.6572 20.1365C11.5468 20.2878 12.4557 20.2878 13.3453 20.1365L13.4543 19.1527C13.5551 18.2421 14.083 17.4337 14.8762 16.9753C15.6695 16.5168 16.6334 16.463 17.473 16.8305L18.3775 17.2267C18.9493 16.5323 19.4044 15.7495 19.7249 14.909L18.927 14.3211C18.1882 13.7783 17.7518 12.9162 17.7518 11.9995C17.7518 11.0827 18.1882 10.2206 18.9261 9.67847L19.7229 9.09109C19.4023 8.25061 18.947 7.46784 18.375 6.77356L17.4785 7.16737C17.1132 7.32901 16.718 7.4122 16.3189 7.41158C14.8492 7.41004 13.6158 6.30355 13.4554 4.84383L13.3464 3.8667C12.9009 3.7942 12.4529 3.75512 12.0126 3.7499ZM11.9999 8.24995C14.071 8.24995 15.7499 9.92888 15.7499 12C15.7499 14.071 14.071 15.75 11.9999 15.75C9.92887 15.75 8.24994 14.071 8.24994 12C8.24994 9.92888 9.92887 8.24995 11.9999 8.24995ZM11.9999 9.74995C10.7573 9.74995 9.74994 10.7573 9.74994 12C9.74994 13.2426 10.7573 14.25 11.9999 14.25C13.2426 14.25 14.2499 13.2426 14.2499 12C14.2499 10.7573 13.2426 9.74995 11.9999 9.74995Z" 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="M17 3.00195C18.6558 3.00195 19.998 4.34424 19.998 6.00003C19.998 7.65582 18.6558 8.9981 17 8.9981C16.1578 8.9981 15.3967 8.65085 14.8521 8.09171L9.39499 11.2113C9.46333 11.4626 9.49981 11.7271 9.49981 12C9.49981 12.273 9.46333 12.5374 9.39499 12.7887L14.8528 15.9076C15.3974 15.3489 16.1582 15.002 17 15.002C18.6558 15.002 19.998 16.3442 19.998 18C19.998 19.6558 18.6558 20.9981 17 20.9981C15.3442 20.9981 14.0019 19.6558 14.0019 18C14.0019 17.7271 14.0384 17.4626 14.1067 17.2113L8.6496 14.0917C8.105 14.6508 7.34392 14.9981 6.50174 14.9981C4.84595 14.9981 3.50366 13.6558 3.50366 12C3.50366 10.3442 4.84595 9.00195 6.50174 9.00195C7.34355 9.00195 8.10432 9.3489 8.64887 9.9076L14.1067 6.78874C14.0384 6.53743 14.0019 6.27299 14.0019 6.00003C14.0019 4.34424 15.3442 3.00195 17 3.00195Z" 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="M17 2.49829C18.934 2.49829 20.5018 4.06609 20.5018 6.00006C20.5018 7.93403 18.934 9.50183 17 9.50183C15.97 9.50183 15.0439 9.05716 14.4032 8.34934L9.84455 10.9538C9.94786 11.2842 10.0035 11.6356 10.0035 12.0001C10.0035 12.3645 9.94786 12.716 9.84455 13.0464L14.4023 15.6518C15.043 14.9434 15.9695 14.4983 17 14.4983C18.934 14.4983 20.5018 16.0661 20.5018 18.0001C20.5018 19.934 18.934 21.5018 17 21.5018C15.066 21.5018 13.4982 19.934 13.4982 18.0001C13.4982 17.6356 13.5539 17.2842 13.6572 16.9538L9.09951 14.3483C8.45873 15.0567 7.53223 15.5018 6.50177 15.5018C4.5678 15.5018 3 13.934 3 12.0001C3 10.0661 4.5678 8.49829 6.50177 8.49829C7.53173 8.49829 8.45784 8.94296 9.09859 9.65078L13.6572 7.04636C13.5539 6.71596 13.4982 6.36451 13.4982 6.00006C13.4982 4.06609 15.066 2.49829 17 2.49829ZM17 15.9983C15.8945 15.9983 14.9982 16.8945 14.9982 18.0001C14.9982 19.1056 15.8945 20.0018 17 20.0018C18.1055 20.0018 19.0018 19.1056 19.0018 18.0001C19.0018 16.8945 18.1055 15.9983 17 15.9983ZM6.50177 9.99829C5.39622 9.99829 4.5 10.8945 4.5 12.0001C4.5 13.1056 5.39622 14.0018 6.50177 14.0018C7.60732 14.0018 8.50354 13.1056 8.50354 12.0001C8.50354 10.8945 7.60732 9.99829 6.50177 9.99829ZM17 3.99829C15.8945 3.99829 14.9982 4.89451 14.9982 6.00006C14.9982 7.10561 15.8945 8.00183 17 8.00183C18.1055 8.00183 19.0018 7.10561 19.0018 6.00006C19.0018 4.89451 18.1055 3.99829 17 3.99829Z" 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.74658 4.00003H10.2108C10.625 4.00003 10.9608 4.33582 10.9608 4.75003C10.9608 5.12972 10.6786 5.44352 10.3126 5.49318L10.2108 5.50003H6.74658C5.55572 5.50003 4.58094 6.42519 4.50177 7.59598L4.49658 7.75003V17.25C4.49658 18.4409 5.42174 19.4157 6.59253 19.4948L6.74658 19.5H16.2473C17.4382 19.5 18.413 18.5749 18.4921 17.4041L18.4973 17.25V16.7522C18.4973 16.338 18.8331 16.0022 19.2473 16.0022C19.627 16.0022 19.9408 16.2844 19.9905 16.6505L19.9973 16.7522V17.25C19.9973 19.2543 18.425 20.8913 16.4465 20.9948L16.2473 21H6.74658C4.74232 21 3.10531 19.4277 3.00178 17.4492L2.99658 17.25V7.75003C2.99658 5.74577 4.56894 4.10876 6.54742 4.00523L6.74658 4.00003H10.2108H6.74658ZM14.5006 6.54434V3.75003C14.5006 3.12606 15.2074 2.78998 15.6876 3.13983L15.7697 3.20877L21.7643 8.95877C22.0441 9.22712 22.0696 9.65814 21.8407 9.9561L21.7644 10.0412L15.7698 15.7931C15.3196 16.2251 14.5877 15.9477 14.5077 15.3589L14.5006 15.2519V12.45L14.1798 12.4438C11.5223 12.4359 9.25072 13.5269 7.31495 15.745C6.81934 16.3129 5.88968 15.8769 6.0094 15.1328C6.83639 9.99236 9.60847 7.08831 14.1986 6.57446L14.5006 6.54434V3.75003V6.54434Z" 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.74658 4.00003H10.2108C10.625 4.00003 10.9608 4.33582 10.9608 4.75003C10.9608 5.12972 10.6786 5.44352 10.3126 5.49318L10.2108 5.50003H6.74658C5.55572 5.50003 4.58094 6.42519 4.50177 7.59598L4.49658 7.75003V17.25C4.49658 18.4409 5.42174 19.4157 6.59253 19.4948L6.74658 19.5H16.2473C17.4382 19.5 18.413 18.5749 18.4921 17.4041L18.4973 17.25V16.7522C18.4973 16.338 18.8331 16.0022 19.2473 16.0022C19.627 16.0022 19.9408 16.2844 19.9905 16.6505L19.9973 16.7522V17.25C19.9973 19.2543 18.425 20.8913 16.4465 20.9948L16.2473 21H6.74658C4.74232 21 3.10531 19.4277 3.00178 17.4492L2.99658 17.25V7.75003C2.99658 5.74577 4.56894 4.10876 6.54742 4.00523L6.74658 4.00003H10.2108H6.74658ZM14.5006 6.51988V3.75003C14.5006 3.12606 15.2074 2.78998 15.6876 3.13983L15.7697 3.20877L21.7643 8.95877C22.0441 9.22712 22.0696 9.65814 21.8407 9.9561L21.7644 10.0412L15.7698 15.7931C15.3196 16.2251 14.5877 15.9477 14.5077 15.3589L14.5006 15.2519V12.5266L14.1571 12.5567C11.7574 12.807 9.45735 13.8879 7.24253 15.8174C6.72342 16.2696 5.92029 15.842 6.00567 15.1589C6.67046 9.83933 9.45233 6.90733 14.2012 6.53953L14.5006 6.51988V3.75003V6.51988ZM16.0006 5.50867V7.25003C16.0006 7.66424 15.6648 8.00003 15.2506 8.00003C11.3772 8.00003 8.97655 9.67616 7.93931 13.1572L7.86025 13.4358L8.21244 13.199C10.4489 11.7372 12.7983 11 15.2506 11C15.6303 11 15.9441 11.2822 15.9937 11.6483L16.0006 11.75V13.4928L20.1618 9.50012L16.0006 5.50867Z" 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="M12 4.35418V10.5L12.0005 11.005L19.442 11.004L17.7196 9.28026C17.4534 9.01395 17.4292 8.59728 17.6471 8.3037L17.7198 8.2196C17.9861 7.95338 18.4027 7.92924 18.6963 8.14715L18.7804 8.21978L21.777 11.2174C22.043 11.4835 22.0674 11.8997 21.85 12.1933L21.7775 12.2774L18.7809 15.2808C18.4884 15.5741 18.0135 15.5746 17.7203 15.282C17.4537 15.0161 17.429 14.5994 17.6465 14.3056L17.7191 14.2214L19.432 12.504L12.0005 12.505L12 19.25C12 19.7164 11.5788 20.0697 11.1196 19.9886L2.61955 18.4873C2.26121 18.424 2 18.1126 2 17.7487V5.75002C2 5.38271 2.26601 5.06945 2.62847 5.00993L11.1285 3.6141C11.5851 3.53911 12 3.89145 12 4.35418ZM8.50215 11.5C7.94868 11.5 7.5 11.9487 7.5 12.5022C7.5 13.0556 7.94868 13.5043 8.50215 13.5043C9.05562 13.5043 9.5043 13.0556 9.5043 12.5022C9.5043 11.9487 9.05562 11.5 8.50215 11.5ZM13 18.5013L13.7652 18.5015L13.867 18.4946C14.2335 18.4448 14.5158 18.1304 14.5152 17.7502L14.508 13.5H13V18.5013ZM13.002 10L13 8.72536V5.00001L13.7453 5.00002C14.1245 5.00002 14.4381 5.28154 14.4883 5.64713L14.4953 5.74878L14.502 10H13.002Z" 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.50215 11.5C9.05562 11.5 9.5043 11.9487 9.5043 12.5022C9.5043 13.0556 9.05562 13.5043 8.50215 13.5043C7.94868 13.5043 7.5 13.0556 7.5 12.5022C7.5 11.9487 7.94868 11.5 8.50215 11.5ZM12 4.35418V10.5L12.0005 11.005L19.442 11.004L17.7196 9.28026C17.4534 9.01395 17.4292 8.59728 17.6471 8.3037L17.7198 8.2196C17.9861 7.95338 18.4027 7.92924 18.6963 8.14715L18.7804 8.21978L21.777 11.2174C22.043 11.4835 22.0674 11.8997 21.85 12.1933L21.7775 12.2774L18.7809 15.2808C18.4884 15.5741 18.0135 15.5746 17.7203 15.282C17.4537 15.0161 17.429 14.5994 17.6465 14.3056L17.7191 14.2214L19.432 12.504L12.0005 12.505L12 19.25C12 19.7164 11.5788 20.0697 11.1196 19.9886L2.61955 18.4873C2.26121 18.424 2 18.1126 2 17.7487V5.75002C2 5.38271 2.26601 5.06945 2.62847 5.00993L11.1285 3.6141C11.5851 3.53911 12 3.89145 12 4.35418ZM10.5 5.23739L3.5 6.3869V17.1196L10.5 18.3559V5.23739ZM13 18.5013L13.7652 18.5015L13.867 18.4946C14.2335 18.4448 14.5158 18.1304 14.5152 17.7502L14.508 13.5H13V18.5013ZM13.002 10L13 8.72536V5.00001L13.7453 5.00002C14.1245 5.00002 14.4381 5.28154 14.4883 5.64713L14.4953 5.74878L14.502 10H13.002Z" 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="M12.0004 4.1999C7.69257 4.1999 4.20039 7.69208 4.20039 11.9999C4.20039 12.497 3.79745 12.8999 3.30039 12.8999C2.80333 12.8999 2.40039 12.497 2.40039 11.9999C2.40039 6.69797 6.69846 2.3999 12.0004 2.3999C17.3023 2.3999 21.6004 6.69797 21.6004 11.9999C21.6004 17.3018 17.3023 21.5999 12.0004 21.5999C11.5033 21.5999 11.1004 21.197 11.1004 20.6999C11.1004 20.2028 11.5033 19.7999 12.0004 19.7999C16.3082 19.7999 19.8004 16.3077 19.8004 11.9999C19.8004 7.69208 16.3082 4.1999 12.0004 4.1999Z" 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.0004 3.5999C7.3612 3.5999 3.60039 7.36071 3.60039 11.9999C3.60039 12.3313 3.33176 12.5999 3.00039 12.5999C2.66902 12.5999 2.40039 12.3313 2.40039 11.9999C2.40039 6.69797 6.69846 2.3999 12.0004 2.3999C17.3023 2.3999 21.6004 6.69797 21.6004 11.9999C21.6004 17.3018 17.3023 21.5999 12.0004 21.5999C11.669 21.5999 11.4004 21.3313 11.4004 20.9999C11.4004 20.6685 11.669 20.3999 12.0004 20.3999C16.6396 20.3999 20.4004 16.6391 20.4004 11.9999C20.4004 7.36071 16.6396 3.5999 12.0004 3.5999Z" 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="M12 2.9999C13.2477 2.9999 14.4361 3.25379 15.5163 3.71272L14.3609 4.87905C13.6186 4.63306 12.8249 4.4999 12 4.4999C7.85786 4.4999 4.5 7.85777 4.5 11.9999C4.5 13.4248 4.89727 14.7892 5.63583 15.9703C5.93764 16.4529 6.29368 16.9001 6.69639 17.3029C7.09848 17.705 7.5449 18.0607 8.02668 18.3622C9.20844 19.102 10.5739 19.4999 12 19.4999C16.1421 19.4999 19.5 16.142 19.5 11.9999C19.5 11.1995 19.3746 10.4283 19.1424 9.70506L20.3069 8.5304C20.7534 9.59813 21 10.7702 21 11.9999C21 16.9705 16.9706 20.9999 12 20.9999C10.2904 20.9999 8.64945 20.5217 7.23081 19.6337C6.65294 19.272 6.1177 18.8456 5.63566 18.3635C5.1529 17.8807 4.72601 17.3445 4.36401 16.7656C3.4774 15.3477 3 13.7081 3 11.9999C3 7.02934 7.02944 2.9999 12 2.9999ZM21.1626 2.5729L21.3013 2.70116C22.2387 3.6385 22.2421 5.15719 21.3089 6.09872L14.554 12.9144C14.4397 13.0297 14.2991 13.1154 14.1443 13.1642L9.79631 14.5345C9.69096 14.5677 9.57864 14.5092 9.54544 14.4038C9.53311 14.3647 9.53311 14.3227 9.54544 14.2836L10.9171 9.93109C10.965 9.77917 11.0485 9.64087 11.1606 9.52773L17.9189 2.70872C18.8045 1.81517 20.2215 1.76839 21.1626 2.5729Z" 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 2.99993C13.1135 2.99993 14.1797 3.20213 15.164 3.57182L13.9808 4.76427C13.3498 4.59193 12.6856 4.49993 12 4.49993C7.85786 4.49993 4.5 7.85779 4.5 11.9999C4.5 13.4248 4.89727 14.7892 5.63583 15.9703C5.93764 16.453 6.29368 16.9002 6.69639 17.3029C7.09848 17.7051 7.5449 18.0607 8.02668 18.3623C9.20844 19.102 10.5739 19.4999 12 19.4999C16.1421 19.4999 19.5 16.1421 19.5 11.9999C19.5 11.3433 19.4156 10.7064 19.2571 10.0994L20.4505 8.89613C20.8059 9.86364 21 10.9091 21 11.9999C21 16.9705 16.9706 20.9999 12 20.9999C10.2904 20.9999 8.64945 20.5217 7.23081 19.6337C6.65294 19.272 6.1177 18.8456 5.63566 18.3635C5.1529 17.8807 4.72601 17.3445 4.36401 16.7656C3.4774 15.3477 3 13.7081 3 11.9999C3 7.02937 7.02944 2.99993 12 2.99993ZM21.0602 2.67188L21.2062 2.80784C22.2817 3.88398 22.285 5.62708 21.2135 6.7072L14.9096 13.0616C14.7291 13.2436 14.5049 13.3763 14.2585 13.447L10.0461 14.6559C9.78064 14.7321 9.50371 14.5786 9.42754 14.3132C9.40169 14.2231 9.40168 14.1275 9.42752 14.0374L10.6378 9.81782C10.7074 9.57525 10.837 9.35415 11.0147 9.17499L17.3236 2.81508C18.3448 1.78569 19.9803 1.73639 21.0602 2.67188ZM18.3886 3.87146L12.0796 10.2314L11.3669 12.7163L13.8447 12.0052L20.1486 5.65079C20.6057 5.18993 20.6349 4.46505 20.2371 3.97046L20.1415 3.8644C19.6555 3.3823 18.8707 3.38546 18.3886 3.87146Z" 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="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 2ZM7.75 11.25C7.33579 11.25 7 11.5858 7 12C7 12.3797 7.28215 12.6935 7.64823 12.7432L7.75 12.75C13.2107 12.75 11.2532 12.75 16.25 12.75C16.6642 12.75 17 12.4142 17 12C17 11.6203 16.7178 11.3065 16.3518 11.2568L16.25 11.25C11.0554 11.25 13.4435 11.25 7.75 11.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=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.5ZM16.25 11.25C16.6642 11.25 17 11.5858 17 12C17 12.4142 16.6642 12.75 16.25 12.75C11.2529 12.75 13.211 12.75 7.75 12.75C7.33579 12.75 7 12.4142 7 12C7 11.5858 7.33579 11.25 7.75 11.25C13.211 11.25 11.2529 11.25 16.25 11.25Z" fill="#222222"/>
4
+ </g>
5
+ </svg>