@dust-tt/sparkle 0.2.183 → 0.2.184

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 (813) hide show
  1. package/package.json +3 -2
  2. package/src/components/AssistantPreview.tsx +231 -0
  3. package/src/components/Avatar.tsx +317 -0
  4. package/src/components/Banner.tsx +65 -0
  5. package/src/components/BarHeader.tsx +152 -0
  6. package/src/components/Button.tsx +283 -0
  7. package/src/components/CardButton.tsx +90 -0
  8. package/src/components/Checkbox.tsx +90 -0
  9. package/src/components/Chip.tsx +97 -0
  10. package/src/components/Citation.tsx +168 -0
  11. package/src/components/CollapseButton.tsx +90 -0
  12. package/src/components/Collapsible.tsx +165 -0
  13. package/src/components/ColorPicker.tsx +39 -0
  14. package/src/components/ConfettiBackground.tsx +103 -0
  15. package/src/components/ContentMessage.tsx +80 -0
  16. package/src/components/ContextItem.tsx +166 -0
  17. package/src/components/DataTable.tsx +108 -0
  18. package/src/components/Dialog.tsx +110 -0
  19. package/src/components/DropdownMenu.tsx +476 -0
  20. package/src/components/ElementDialog.tsx +38 -0
  21. package/src/components/ElementModal.tsx +32 -0
  22. package/src/components/EmojiPicker.tsx +32 -0
  23. package/src/components/FilterChips.tsx +46 -0
  24. package/src/components/Hover3D.tsx +159 -0
  25. package/src/components/Hoverable.tsx +28 -0
  26. package/src/components/Icon.tsx +30 -0
  27. package/src/components/IconButton.tsx +126 -0
  28. package/src/components/IconToggleButton.tsx +114 -0
  29. package/src/components/Input.tsx +81 -0
  30. package/src/components/Item.tsx +327 -0
  31. package/src/components/Markdown.tsx +167 -0
  32. package/src/components/Modal.tsx +184 -0
  33. package/src/components/Notification.tsx +76 -0
  34. package/src/components/Page.tsx +272 -0
  35. package/src/components/PaginatedCitationsGrid.tsx +79 -0
  36. package/src/components/Pagination.tsx +212 -0
  37. package/src/components/Popup.tsx +74 -0
  38. package/src/components/PriceTable.tsx +229 -0
  39. package/src/components/RadioButton.tsx +83 -0
  40. package/src/components/Searchbar.tsx +105 -0
  41. package/src/components/SliderToggle.tsx +79 -0
  42. package/src/components/Spinner.tsx +152 -0
  43. package/src/components/Tab.tsx +241 -0
  44. package/src/components/TextArea.tsx +63 -0
  45. package/src/components/Tooltip.tsx +86 -0
  46. package/src/components/Tree.tsx +147 -0
  47. package/src/components/ZoomableImageCitationWrapper.tsx +54 -0
  48. package/src/components/index.ts +46 -0
  49. package/src/context.tsx +80 -0
  50. package/src/icons/deprecated_src/mini/arrow-up-on-square.svg +3 -0
  51. package/src/icons/deprecated_src/mini/beaker-plus.svg +3 -0
  52. package/src/icons/deprecated_src/mini/beaker.svg +3 -0
  53. package/src/icons/deprecated_src/mini/chat-bubble-bottom-center-plus.svg +3 -0
  54. package/src/icons/deprecated_src/mini/chat-bubble-bottom-center-text.svg +3 -0
  55. package/src/icons/deprecated_src/mini/chat-bubble-left-right.svg +4 -0
  56. package/src/icons/deprecated_src/mini/check-circle.svg +3 -0
  57. package/src/icons/deprecated_src/mini/chevron-down.svg +3 -0
  58. package/src/icons/deprecated_src/mini/chevron-left.svg +3 -0
  59. package/src/icons/deprecated_src/mini/chevron-right.svg +3 -0
  60. package/src/icons/deprecated_src/mini/chevron-up.svg +3 -0
  61. package/src/icons/deprecated_src/mini/clipboard.svg +3 -0
  62. package/src/icons/deprecated_src/mini/cloud-arrow-down.svg +3 -0
  63. package/src/icons/deprecated_src/mini/cog-6-tooth.svg +3 -0
  64. package/src/icons/deprecated_src/mini/command-line.svg +3 -0
  65. package/src/icons/deprecated_src/mini/document-plus.svg +3 -0
  66. package/src/icons/deprecated_src/mini/document-text.svg +3 -0
  67. package/src/icons/deprecated_src/mini/exclamation-circle.svg +3 -0
  68. package/src/icons/deprecated_src/mini/folder-open.svg +4 -0
  69. package/src/icons/deprecated_src/mini/hand-thumb-down.svg +4 -0
  70. package/src/icons/deprecated_src/mini/hand-thumb-up.svg +4 -0
  71. package/src/icons/deprecated_src/mini/information-circle.svg +3 -0
  72. package/src/icons/deprecated_src/mini/key.svg +3 -0
  73. package/src/icons/deprecated_src/mini/magnifying-glass.svg +3 -0
  74. package/src/icons/deprecated_src/mini/paper-airplane.svg +3 -0
  75. package/src/icons/deprecated_src/mini/pencil-square.svg +4 -0
  76. package/src/icons/deprecated_src/mini/plus.svg +3 -0
  77. package/src/icons/deprecated_src/mini/question-mark-circle.svg +3 -0
  78. package/src/icons/deprecated_src/mini/server.svg +4 -0
  79. package/src/icons/deprecated_src/mini/square-3-stack-3d.svg +5 -0
  80. package/src/icons/deprecated_src/mini/trash.svg +3 -0
  81. package/src/icons/deprecated_src/mini/user-group.svg +8 -0
  82. package/src/icons/deprecated_src/mini/x-circle.svg +3 -0
  83. package/src/icons/deprecated_src/mini/x-mark.svg +3 -0
  84. package/src/icons/deprecated_src/solid/arrow-up-on-square.svg +4 -0
  85. package/src/icons/deprecated_src/solid/beaker-plus.svg +3 -0
  86. package/src/icons/deprecated_src/solid/beaker.svg +3 -0
  87. package/src/icons/deprecated_src/solid/chat-bubble-bottom-center-plus.svg +3 -0
  88. package/src/icons/deprecated_src/solid/chat-bubble-bottom-center-text.svg +3 -0
  89. package/src/icons/deprecated_src/solid/chat-bubble-left-right.svg +4 -0
  90. package/src/icons/deprecated_src/solid/check-circle.svg +3 -0
  91. package/src/icons/deprecated_src/solid/chevron-down.svg +3 -0
  92. package/src/icons/deprecated_src/solid/chevron-left.svg +3 -0
  93. package/src/icons/deprecated_src/solid/chevron-right.svg +3 -0
  94. package/src/icons/deprecated_src/solid/chevron-up.svg +3 -0
  95. package/src/icons/deprecated_src/solid/clipboard.svg +3 -0
  96. package/src/icons/deprecated_src/solid/cloud-arrow-down.svg +3 -0
  97. package/src/icons/deprecated_src/solid/cog-6-tooth.svg +3 -0
  98. package/src/icons/deprecated_src/solid/command-line.svg +3 -0
  99. package/src/icons/deprecated_src/solid/document-plus.svg +4 -0
  100. package/src/icons/deprecated_src/solid/document-text.svg +4 -0
  101. package/src/icons/deprecated_src/solid/exclamation-circle.svg +3 -0
  102. package/src/icons/deprecated_src/solid/folder-open.svg +4 -0
  103. package/src/icons/deprecated_src/solid/hand-thumb-down.svg +4 -0
  104. package/src/icons/deprecated_src/solid/hand-thumb-up.svg +4 -0
  105. package/src/icons/deprecated_src/solid/information-circle.svg +3 -0
  106. package/src/icons/deprecated_src/solid/key.svg +3 -0
  107. package/src/icons/deprecated_src/solid/magnifying-glass.svg +3 -0
  108. package/src/icons/deprecated_src/solid/paper-airplane.svg +3 -0
  109. package/src/icons/deprecated_src/solid/pencil-square.svg +5 -0
  110. package/src/icons/deprecated_src/solid/plus.svg +3 -0
  111. package/src/icons/deprecated_src/solid/question-mark-circle.svg +3 -0
  112. package/src/icons/deprecated_src/solid/server.svg +4 -0
  113. package/src/icons/deprecated_src/solid/square-3-stack-3d.svg +5 -0
  114. package/src/icons/deprecated_src/solid/x-circle.svg +3 -0
  115. package/src/icons/deprecated_src/solid/x-mark.svg +3 -0
  116. package/src/icons/deprecated_src/solid_stroke/arrow-up-on-square.svg +3 -0
  117. package/src/icons/deprecated_src/solid_stroke/beaker-plus.svg +3 -0
  118. package/src/icons/deprecated_src/solid_stroke/beaker.svg +3 -0
  119. package/src/icons/deprecated_src/solid_stroke/chat-bubble-bottom-center-plus.svg +4 -0
  120. package/src/icons/deprecated_src/solid_stroke/chat-bubble-bottom-center-text.svg +3 -0
  121. package/src/icons/deprecated_src/solid_stroke/chat-bubble-left-right.svg +3 -0
  122. package/src/icons/deprecated_src/solid_stroke/check-circle.svg +3 -0
  123. package/src/icons/deprecated_src/solid_stroke/chevron-down.svg +3 -0
  124. package/src/icons/deprecated_src/solid_stroke/chevron-left.svg +3 -0
  125. package/src/icons/deprecated_src/solid_stroke/chevron-right.svg +3 -0
  126. package/src/icons/deprecated_src/solid_stroke/chevron-up.svg +3 -0
  127. package/src/icons/deprecated_src/solid_stroke/clipboard.svg +3 -0
  128. package/src/icons/deprecated_src/solid_stroke/cloud-arrow-down.svg +3 -0
  129. package/src/icons/deprecated_src/solid_stroke/cog-6-tooth.svg +3 -0
  130. package/src/icons/deprecated_src/solid_stroke/command-line.svg +3 -0
  131. package/src/icons/deprecated_src/solid_stroke/document-plus.svg +3 -0
  132. package/src/icons/deprecated_src/solid_stroke/document-text.svg +3 -0
  133. package/src/icons/deprecated_src/solid_stroke/exclamation-circle.svg +3 -0
  134. package/src/icons/deprecated_src/solid_stroke/folder-open.svg +3 -0
  135. package/src/icons/deprecated_src/solid_stroke/hand-thumb-down.svg +3 -0
  136. package/src/icons/deprecated_src/solid_stroke/hand-thumb-up.svg +3 -0
  137. package/src/icons/deprecated_src/solid_stroke/information-circle.svg +3 -0
  138. package/src/icons/deprecated_src/solid_stroke/key.svg +3 -0
  139. package/src/icons/deprecated_src/solid_stroke/magnifying-glass.svg +3 -0
  140. package/src/icons/deprecated_src/solid_stroke/paper-airplane.svg +3 -0
  141. package/src/icons/deprecated_src/solid_stroke/pencil-square.svg +3 -0
  142. package/src/icons/deprecated_src/solid_stroke/plus.svg +3 -0
  143. package/src/icons/deprecated_src/solid_stroke/question-mark-circle.svg +3 -0
  144. package/src/icons/deprecated_src/solid_stroke/server.svg +3 -0
  145. package/src/icons/deprecated_src/solid_stroke/square-3-stack-3d.svg +3 -0
  146. package/src/icons/deprecated_src/solid_stroke/trash.svg +3 -0
  147. package/src/icons/deprecated_src/solid_stroke/user-group.svg +3 -0
  148. package/src/icons/deprecated_src/solid_stroke/x-circle.svg +3 -0
  149. package/src/icons/deprecated_src/solid_stroke/x-mark.svg +3 -0
  150. package/src/icons/index.ts +2 -0
  151. package/src/icons/solid/ArrowDown.tsx +18 -0
  152. package/src/icons/solid/ArrowDownCircle.tsx +18 -0
  153. package/src/icons/solid/ArrowDownOnSquare.tsx +22 -0
  154. package/src/icons/solid/ArrowLeft.tsx +18 -0
  155. package/src/icons/solid/ArrowPath.tsx +18 -0
  156. package/src/icons/solid/ArrowRight.tsx +18 -0
  157. package/src/icons/solid/ArrowUp.tsx +18 -0
  158. package/src/icons/solid/ArrowUpOnSquare.tsx +22 -0
  159. package/src/icons/solid/Attachment.tsx +18 -0
  160. package/src/icons/solid/Backspace.tsx +20 -0
  161. package/src/icons/solid/BookOpen.tsx +18 -0
  162. package/src/icons/solid/Bookmark.tsx +18 -0
  163. package/src/icons/solid/Braces.tsx +18 -0
  164. package/src/icons/solid/Card.tsx +18 -0
  165. package/src/icons/solid/ChatBubbleBottomCenterPlus.tsx +20 -0
  166. package/src/icons/solid/ChatBubbleBottomCenterText.tsx +18 -0
  167. package/src/icons/solid/ChatBubbleLeftRight.tsx +20 -0
  168. package/src/icons/solid/Check.tsx +18 -0
  169. package/src/icons/solid/CheckCircle.tsx +18 -0
  170. package/src/icons/solid/ChevronDown.tsx +18 -0
  171. package/src/icons/solid/ChevronLeft.tsx +18 -0
  172. package/src/icons/solid/ChevronRight.tsx +18 -0
  173. package/src/icons/solid/ChevronUp.tsx +18 -0
  174. package/src/icons/solid/ChevronUpDown.tsx +18 -0
  175. package/src/icons/solid/Circle.tsx +15 -0
  176. package/src/icons/solid/Clipboard.tsx +18 -0
  177. package/src/icons/solid/ClipboardCheck.tsx +22 -0
  178. package/src/icons/solid/Clock.tsx +18 -0
  179. package/src/icons/solid/CloudArrowDown.tsx +20 -0
  180. package/src/icons/solid/CloudArrowLeftRight.tsx +20 -0
  181. package/src/icons/solid/CloudArrowUp.tsx +20 -0
  182. package/src/icons/solid/CloudX.tsx +20 -0
  183. package/src/icons/solid/Cog6Tooth.tsx +18 -0
  184. package/src/icons/solid/Command.tsx +18 -0
  185. package/src/icons/solid/CommandLine.tsx +18 -0
  186. package/src/icons/solid/Cube.tsx +18 -0
  187. package/src/icons/solid/Dash.tsx +15 -0
  188. package/src/icons/solid/Document.tsx +21 -0
  189. package/src/icons/solid/DocumentDuplicate.tsx +21 -0
  190. package/src/icons/solid/DocumentPile.tsx +21 -0
  191. package/src/icons/solid/DocumentPlus.tsx +21 -0
  192. package/src/icons/solid/DocumentText.tsx +21 -0
  193. package/src/icons/solid/Dust.tsx +20 -0
  194. package/src/icons/solid/EmotionLaugh.tsx +18 -0
  195. package/src/icons/solid/Equalizer.tsx +20 -0
  196. package/src/icons/solid/ExclamationCircle.tsx +18 -0
  197. package/src/icons/solid/ExternalLink.tsx +19 -0
  198. package/src/icons/solid/Eye.tsx +18 -0
  199. package/src/icons/solid/EyeSlash.tsx +18 -0
  200. package/src/icons/solid/Flag.tsx +18 -0
  201. package/src/icons/solid/Folder.tsx +18 -0
  202. package/src/icons/solid/FolderOpen.tsx +20 -0
  203. package/src/icons/solid/Fullscreen.tsx +18 -0
  204. package/src/icons/solid/FullscreenExit.tsx +24 -0
  205. package/src/icons/solid/GlobeAlt.tsx +18 -0
  206. package/src/icons/solid/Grab.tsx +18 -0
  207. package/src/icons/solid/HandHeart.tsx +18 -0
  208. package/src/icons/solid/HandThumbDown.tsx +18 -0
  209. package/src/icons/solid/HandThumbUp.tsx +18 -0
  210. package/src/icons/solid/HeartAlt.tsx +18 -0
  211. package/src/icons/solid/Hexagon.tsx +15 -0
  212. package/src/icons/solid/Image.tsx +21 -0
  213. package/src/icons/solid/InformationCircle.tsx +18 -0
  214. package/src/icons/solid/Key.tsx +18 -0
  215. package/src/icons/solid/Lightbulb.tsx +18 -0
  216. package/src/icons/solid/Link.tsx +20 -0
  217. package/src/icons/solid/List.tsx +20 -0
  218. package/src/icons/solid/ListAdd.tsx +24 -0
  219. package/src/icons/solid/ListCheck.tsx +24 -0
  220. package/src/icons/solid/ListRemove.tsx +24 -0
  221. package/src/icons/solid/Lock.tsx +20 -0
  222. package/src/icons/solid/Login.tsx +18 -0
  223. package/src/icons/solid/Logout.tsx +18 -0
  224. package/src/icons/solid/Magic.tsx +18 -0
  225. package/src/icons/solid/MagnifyingGlass.tsx +18 -0
  226. package/src/icons/solid/Menu.tsx +18 -0
  227. package/src/icons/solid/More.tsx +18 -0
  228. package/src/icons/solid/MovingMail.tsx +16 -0
  229. package/src/icons/solid/Paint.tsx +24 -0
  230. package/src/icons/solid/PaperAirplane.tsx +18 -0
  231. package/src/icons/solid/Pause.tsx +15 -0
  232. package/src/icons/solid/PencilSquare.tsx +19 -0
  233. package/src/icons/solid/Planet.tsx +18 -0
  234. package/src/icons/solid/Play.tsx +15 -0
  235. package/src/icons/solid/Plus.tsx +18 -0
  236. package/src/icons/solid/PlusCircle.tsx +18 -0
  237. package/src/icons/solid/Pushpin.tsx +18 -0
  238. package/src/icons/solid/Puzzle.tsx +18 -0
  239. package/src/icons/solid/QuestionMarkCircle.tsx +18 -0
  240. package/src/icons/solid/Reaction.tsx +21 -0
  241. package/src/icons/solid/Rectangle.tsx +15 -0
  242. package/src/icons/solid/Robot.tsx +25 -0
  243. package/src/icons/solid/Rocket.tsx +18 -0
  244. package/src/icons/solid/Scan.tsx +21 -0
  245. package/src/icons/solid/Server.tsx +18 -0
  246. package/src/icons/solid/ShakeHands.tsx +18 -0
  247. package/src/icons/solid/Shapes.tsx +18 -0
  248. package/src/icons/solid/Sparkles.tsx +18 -0
  249. package/src/icons/solid/Square.tsx +15 -0
  250. package/src/icons/solid/Square3Stack3D.tsx +28 -0
  251. package/src/icons/solid/Star.tsx +18 -0
  252. package/src/icons/solid/Stop.tsx +15 -0
  253. package/src/icons/solid/Table.tsx +20 -0
  254. package/src/icons/solid/Template.tsx +18 -0
  255. package/src/icons/solid/TestTube.tsx +18 -0
  256. package/src/icons/solid/Time.tsx +18 -0
  257. package/src/icons/solid/Trash.tsx +21 -0
  258. package/src/icons/solid/Triangle.tsx +15 -0
  259. package/src/icons/solid/User.tsx +18 -0
  260. package/src/icons/solid/UserArrow.tsx +18 -0
  261. package/src/icons/solid/UserGroup.tsx +18 -0
  262. package/src/icons/solid/UserPlus.tsx +18 -0
  263. package/src/icons/solid/Wrench.tsx +18 -0
  264. package/src/icons/solid/XCircle.tsx +18 -0
  265. package/src/icons/solid/XMark.tsx +18 -0
  266. package/src/icons/solid/index.ts +115 -0
  267. package/src/icons/src/solid/arrow-down-circle.svg +3 -0
  268. package/src/icons/src/solid/arrow-down-on-square.svg +4 -0
  269. package/src/icons/src/solid/arrow-down.svg +3 -0
  270. package/src/icons/src/solid/arrow-left.svg +3 -0
  271. package/src/icons/src/solid/arrow-path.svg +4 -0
  272. package/src/icons/src/solid/arrow-right.svg +3 -0
  273. package/src/icons/src/solid/arrow-up-on-square.svg +4 -0
  274. package/src/icons/src/solid/arrow-up.svg +3 -0
  275. package/src/icons/src/solid/attachment.svg +3 -0
  276. package/src/icons/src/solid/backspace.svg +3 -0
  277. package/src/icons/src/solid/book-open.svg +3 -0
  278. package/src/icons/src/solid/bookmark.svg +3 -0
  279. package/src/icons/src/solid/braces.svg +4 -0
  280. package/src/icons/src/solid/card.svg +3 -0
  281. package/src/icons/src/solid/chat-bubble-bottom-center-plus.svg +3 -0
  282. package/src/icons/src/solid/chat-bubble-bottom-center-text.svg +3 -0
  283. package/src/icons/src/solid/chat-bubble-left-right.svg +3 -0
  284. package/src/icons/src/solid/check-circle.svg +3 -0
  285. package/src/icons/src/solid/check.svg +3 -0
  286. package/src/icons/src/solid/chevron-down.svg +3 -0
  287. package/src/icons/src/solid/chevron-left.svg +3 -0
  288. package/src/icons/src/solid/chevron-right.svg +3 -0
  289. package/src/icons/src/solid/chevron-up-down.svg +4 -0
  290. package/src/icons/src/solid/chevron-up.svg +3 -0
  291. package/src/icons/src/solid/circle.svg +3 -0
  292. package/src/icons/src/solid/clipboard-check.svg +4 -0
  293. package/src/icons/src/solid/clipboard.svg +3 -0
  294. package/src/icons/src/solid/clock.svg +3 -0
  295. package/src/icons/src/solid/cloud-arrow-down.svg +3 -0
  296. package/src/icons/src/solid/cloud-arrow-left-right.svg +3 -0
  297. package/src/icons/src/solid/cloud-arrow-up.svg +3 -0
  298. package/src/icons/src/solid/cloud-x.svg +3 -0
  299. package/src/icons/src/solid/cog-6-tooth.svg +3 -0
  300. package/src/icons/src/solid/command-line.svg +3 -0
  301. package/src/icons/src/solid/command.svg +3 -0
  302. package/src/icons/src/solid/cube.svg +3 -0
  303. package/src/icons/src/solid/dash.svg +3 -0
  304. package/src/icons/src/solid/document-duplicate.svg +4 -0
  305. package/src/icons/src/solid/document-pile.svg +4 -0
  306. package/src/icons/src/solid/document-plus.svg +4 -0
  307. package/src/icons/src/solid/document-text.svg +4 -0
  308. package/src/icons/src/solid/document.svg +4 -0
  309. package/src/icons/src/solid/dust.svg +3 -0
  310. package/src/icons/src/solid/emotion-laugh.svg +3 -0
  311. package/src/icons/src/solid/equalizer.svg +4 -0
  312. package/src/icons/src/solid/exclamation-circle.svg +3 -0
  313. package/src/icons/src/solid/external-link.svg +4 -0
  314. package/src/icons/src/solid/eye-slash.svg +3 -0
  315. package/src/icons/src/solid/eye.svg +3 -0
  316. package/src/icons/src/solid/flag.svg +3 -0
  317. package/src/icons/src/solid/folder-open.svg +3 -0
  318. package/src/icons/src/solid/folder.svg +3 -0
  319. package/src/icons/src/solid/fullscreen-exit.svg +4 -0
  320. package/src/icons/src/solid/fullscreen.svg +4 -0
  321. package/src/icons/src/solid/globe-alt.svg +3 -0
  322. package/src/icons/src/solid/grab.svg +8 -0
  323. package/src/icons/src/solid/hand-heart.svg +3 -0
  324. package/src/icons/src/solid/hand-thumb-down.svg +3 -0
  325. package/src/icons/src/solid/hand-thumb-up.svg +3 -0
  326. package/src/icons/src/solid/heart-alt.svg +3 -0
  327. package/src/icons/src/solid/hexagon.svg +3 -0
  328. package/src/icons/src/solid/image.svg +4 -0
  329. package/src/icons/src/solid/information-circle.svg +3 -0
  330. package/src/icons/src/solid/key.svg +3 -0
  331. package/src/icons/src/solid/lightbulb.svg +3 -0
  332. package/src/icons/src/solid/link.svg +3 -0
  333. package/src/icons/src/solid/list-add.svg +6 -0
  334. package/src/icons/src/solid/list-check.svg +6 -0
  335. package/src/icons/src/solid/list-remove.svg +6 -0
  336. package/src/icons/src/solid/list.svg +6 -0
  337. package/src/icons/src/solid/lock.svg +3 -0
  338. package/src/icons/src/solid/login.svg +3 -0
  339. package/src/icons/src/solid/logout.svg +3 -0
  340. package/src/icons/src/solid/magic.svg +4 -0
  341. package/src/icons/src/solid/magnifying-glass.svg +3 -0
  342. package/src/icons/src/solid/menu.svg +3 -0
  343. package/src/icons/src/solid/more.svg +3 -0
  344. package/src/icons/src/solid/moving-mail.svg +4 -0
  345. package/src/icons/src/solid/paint.svg +4 -0
  346. package/src/icons/src/solid/paper-airplane.svg +3 -0
  347. package/src/icons/src/solid/pause.svg +3 -0
  348. package/src/icons/src/solid/pencil-square.svg +5 -0
  349. package/src/icons/src/solid/planet.svg +3 -0
  350. package/src/icons/src/solid/play.svg +3 -0
  351. package/src/icons/src/solid/plus-circle.svg +3 -0
  352. package/src/icons/src/solid/plus.svg +3 -0
  353. package/src/icons/src/solid/pushpin.svg +3 -0
  354. package/src/icons/src/solid/puzzle.svg +3 -0
  355. package/src/icons/src/solid/question-mark-circle.svg +3 -0
  356. package/src/icons/src/solid/reaction.svg +4 -0
  357. package/src/icons/src/solid/rectangle.svg +3 -0
  358. package/src/icons/src/solid/robot.svg +6 -0
  359. package/src/icons/src/solid/rocket.svg +3 -0
  360. package/src/icons/src/solid/scan.svg +5 -0
  361. package/src/icons/src/solid/server.svg +3 -0
  362. package/src/icons/src/solid/shake-hands.svg +3 -0
  363. package/src/icons/src/solid/shapes.svg +3 -0
  364. package/src/icons/src/solid/sparkles.svg +3 -0
  365. package/src/icons/src/solid/square-3-stack-3d.svg +5 -0
  366. package/src/icons/src/solid/square.svg +3 -0
  367. package/src/icons/src/solid/star.svg +3 -0
  368. package/src/icons/src/solid/stop.svg +3 -0
  369. package/src/icons/src/solid/table.svg +3 -0
  370. package/src/icons/src/solid/template.svg +3 -0
  371. package/src/icons/src/solid/test-tube.svg +3 -0
  372. package/src/icons/src/solid/time.svg +3 -0
  373. package/src/icons/src/solid/trash.svg +4 -0
  374. package/src/icons/src/solid/triangle.svg +3 -0
  375. package/src/icons/src/solid/user-arrow.svg +5 -0
  376. package/src/icons/src/solid/user-group.svg +8 -0
  377. package/src/icons/src/solid/user-plus.svg +5 -0
  378. package/src/icons/src/solid/user.svg +4 -0
  379. package/src/icons/src/solid/wrench.svg +3 -0
  380. package/src/icons/src/solid/x-circle.svg +3 -0
  381. package/src/icons/src/solid/x-mark.svg +3 -0
  382. package/src/icons/src/stroke/arrow-down-circle.svg +3 -0
  383. package/src/icons/src/stroke/arrow-down-on-square.svg +4 -0
  384. package/src/icons/src/stroke/arrow-down.svg +3 -0
  385. package/src/icons/src/stroke/arrow-left.svg +3 -0
  386. package/src/icons/src/stroke/arrow-path.svg +4 -0
  387. package/src/icons/src/stroke/arrow-right.svg +3 -0
  388. package/src/icons/src/stroke/arrow-up-on-square.svg +4 -0
  389. package/src/icons/src/stroke/arrow-up.svg +3 -0
  390. package/src/icons/src/stroke/attachment.svg +3 -0
  391. package/src/icons/src/stroke/backspace.svg +4 -0
  392. package/src/icons/src/stroke/book-open.svg +3 -0
  393. package/src/icons/src/stroke/bookmark.svg +3 -0
  394. package/src/icons/src/stroke/braces.svg +3 -0
  395. package/src/icons/src/stroke/card.svg +3 -0
  396. package/src/icons/src/stroke/chat-bubble-bottom-center-plus.svg +4 -0
  397. package/src/icons/src/stroke/chat-bubble-bottom-center-text.svg +3 -0
  398. package/src/icons/src/stroke/chat-bubble-left-right.svg +3 -0
  399. package/src/icons/src/stroke/check-circle.svg +3 -0
  400. package/src/icons/src/stroke/check.svg +3 -0
  401. package/src/icons/src/stroke/chevron-down.svg +3 -0
  402. package/src/icons/src/stroke/chevron-left.svg +3 -0
  403. package/src/icons/src/stroke/chevron-right.svg +3 -0
  404. package/src/icons/src/stroke/chevron-up-down.svg +4 -0
  405. package/src/icons/src/stroke/chevron-up.svg +3 -0
  406. package/src/icons/src/stroke/circle.svg +3 -0
  407. package/src/icons/src/stroke/clipboard-check.svg +4 -0
  408. package/src/icons/src/stroke/clipboard.svg +3 -0
  409. package/src/icons/src/stroke/clock.svg +3 -0
  410. package/src/icons/src/stroke/cloud-arrow-down.svg +4 -0
  411. package/src/icons/src/stroke/cloud-arrow-left-right.svg +5 -0
  412. package/src/icons/src/stroke/cloud-arrow-up.svg +4 -0
  413. package/src/icons/src/stroke/cloud-x.svg +4 -0
  414. package/src/icons/src/stroke/cog-6-tooth.svg +3 -0
  415. package/src/icons/src/stroke/command-line.svg +3 -0
  416. package/src/icons/src/stroke/command.svg +3 -0
  417. package/src/icons/src/stroke/cube.svg +3 -0
  418. package/src/icons/src/stroke/dash.svg +3 -0
  419. package/src/icons/src/stroke/document-duplicate.svg +3 -0
  420. package/src/icons/src/stroke/document-pile.svg +3 -0
  421. package/src/icons/src/stroke/document-plus.svg +4 -0
  422. package/src/icons/src/stroke/document-text.svg +6 -0
  423. package/src/icons/src/stroke/document.svg +3 -0
  424. package/src/icons/src/stroke/dust.svg +5 -0
  425. package/src/icons/src/stroke/emotion-laugh.svg +3 -0
  426. package/src/icons/src/stroke/equalizer.svg +4 -0
  427. package/src/icons/src/stroke/exclamation-circle.svg +3 -0
  428. package/src/icons/src/stroke/external-link.svg +4 -0
  429. package/src/icons/src/stroke/eye-slash.svg +3 -0
  430. package/src/icons/src/stroke/eye.svg +3 -0
  431. package/src/icons/src/stroke/flag.svg +3 -0
  432. package/src/icons/src/stroke/folder-open.svg +3 -0
  433. package/src/icons/src/stroke/folder.svg +3 -0
  434. package/src/icons/src/stroke/fullscreen-exit.svg +4 -0
  435. package/src/icons/src/stroke/fullscreen.svg +4 -0
  436. package/src/icons/src/stroke/globe-alt.svg +3 -0
  437. package/src/icons/src/stroke/grab.svg +8 -0
  438. package/src/icons/src/stroke/hand-heart.svg +3 -0
  439. package/src/icons/src/stroke/hand-thumb-down.svg +3 -0
  440. package/src/icons/src/stroke/hand-thumb-up.svg +3 -0
  441. package/src/icons/src/stroke/heart-alt.svg +3 -0
  442. package/src/icons/src/stroke/hexagon.svg +3 -0
  443. package/src/icons/src/stroke/image.svg +4 -0
  444. package/src/icons/src/stroke/information-circle.svg +3 -0
  445. package/src/icons/src/stroke/key.svg +3 -0
  446. package/src/icons/src/stroke/lightbulb.svg +3 -0
  447. package/src/icons/src/stroke/link.svg +3 -0
  448. package/src/icons/src/stroke/list-add.svg +6 -0
  449. package/src/icons/src/stroke/list-check.svg +6 -0
  450. package/src/icons/src/stroke/list-remove.svg +6 -0
  451. package/src/icons/src/stroke/list.svg +6 -0
  452. package/src/icons/src/stroke/lock.svg +3 -0
  453. package/src/icons/src/stroke/login.svg +3 -0
  454. package/src/icons/src/stroke/logout.svg +4 -0
  455. package/src/icons/src/stroke/magic.svg +4 -0
  456. package/src/icons/src/stroke/magnifying-glass.svg +3 -0
  457. package/src/icons/src/stroke/menu.svg +3 -0
  458. package/src/icons/src/stroke/more.svg +3 -0
  459. package/src/icons/src/stroke/moving-mail.svg +3 -0
  460. package/src/icons/src/stroke/paint.svg +4 -0
  461. package/src/icons/src/stroke/paper-airplane.svg +3 -0
  462. package/src/icons/src/stroke/pause.svg +3 -0
  463. package/src/icons/src/stroke/pencil-square.svg +4 -0
  464. package/src/icons/src/stroke/planet.svg +3 -0
  465. package/src/icons/src/stroke/play.svg +3 -0
  466. package/src/icons/src/stroke/plus-circle.svg +3 -0
  467. package/src/icons/src/stroke/plus.svg +3 -0
  468. package/src/icons/src/stroke/pushpin.svg +3 -0
  469. package/src/icons/src/stroke/puzzle.svg +3 -0
  470. package/src/icons/src/stroke/question-mark-circle.svg +3 -0
  471. package/src/icons/src/stroke/reaction.svg +7 -0
  472. package/src/icons/src/stroke/rectangle.svg +3 -0
  473. package/src/icons/src/stroke/robot.svg +9 -0
  474. package/src/icons/src/stroke/rocket.svg +3 -0
  475. package/src/icons/src/stroke/scan.svg +5 -0
  476. package/src/icons/src/stroke/server.svg +4 -0
  477. package/src/icons/src/stroke/shake-hands.svg +3 -0
  478. package/src/icons/src/stroke/shapes.svg +3 -0
  479. package/src/icons/src/stroke/sparkles.svg +3 -0
  480. package/src/icons/src/stroke/square-3-stack-3d.svg +5 -0
  481. package/src/icons/src/stroke/square.svg +3 -0
  482. package/src/icons/src/stroke/star.svg +3 -0
  483. package/src/icons/src/stroke/stop.svg +3 -0
  484. package/src/icons/src/stroke/table.svg +3 -0
  485. package/src/icons/src/stroke/template.svg +3 -0
  486. package/src/icons/src/stroke/test-tube.svg +3 -0
  487. package/src/icons/src/stroke/time.svg +3 -0
  488. package/src/icons/src/stroke/trash.svg +3 -0
  489. package/src/icons/src/stroke/triangle.svg +3 -0
  490. package/src/icons/src/stroke/user-arrow.svg +5 -0
  491. package/src/icons/src/stroke/user-group.svg +8 -0
  492. package/src/icons/src/stroke/user-plus.svg +5 -0
  493. package/src/icons/src/stroke/user.svg +4 -0
  494. package/src/icons/src/stroke/wrench.svg +3 -0
  495. package/src/icons/src/stroke/x-circle.svg +3 -0
  496. package/src/icons/src/stroke/x-mark.svg +3 -0
  497. package/src/icons/stroke/ArrowDown.tsx +18 -0
  498. package/src/icons/stroke/ArrowDownCircle.tsx +18 -0
  499. package/src/icons/stroke/ArrowDownOnSquare.tsx +22 -0
  500. package/src/icons/stroke/ArrowLeft.tsx +18 -0
  501. package/src/icons/stroke/ArrowPath.tsx +18 -0
  502. package/src/icons/stroke/ArrowRight.tsx +18 -0
  503. package/src/icons/stroke/ArrowUp.tsx +18 -0
  504. package/src/icons/stroke/ArrowUpOnSquare.tsx +22 -0
  505. package/src/icons/stroke/Attachment.tsx +18 -0
  506. package/src/icons/stroke/Backspace.tsx +24 -0
  507. package/src/icons/stroke/BookOpen.tsx +18 -0
  508. package/src/icons/stroke/Bookmark.tsx +18 -0
  509. package/src/icons/stroke/Braces.tsx +18 -0
  510. package/src/icons/stroke/Card.tsx +20 -0
  511. package/src/icons/stroke/ChatBubbleBottomCenterPlus.tsx +21 -0
  512. package/src/icons/stroke/ChatBubbleBottomCenterText.tsx +18 -0
  513. package/src/icons/stroke/ChatBubbleLeftRight.tsx +20 -0
  514. package/src/icons/stroke/Check.tsx +15 -0
  515. package/src/icons/stroke/CheckCircle.tsx +18 -0
  516. package/src/icons/stroke/ChevronDown.tsx +15 -0
  517. package/src/icons/stroke/ChevronLeft.tsx +15 -0
  518. package/src/icons/stroke/ChevronRight.tsx +15 -0
  519. package/src/icons/stroke/ChevronUp.tsx +15 -0
  520. package/src/icons/stroke/ChevronUpDown.tsx +18 -0
  521. package/src/icons/stroke/Circle.tsx +20 -0
  522. package/src/icons/stroke/Clipboard.tsx +18 -0
  523. package/src/icons/stroke/ClipboardCheck.tsx +22 -0
  524. package/src/icons/stroke/Clock.tsx +18 -0
  525. package/src/icons/stroke/CloudArrowDown.tsx +21 -0
  526. package/src/icons/stroke/CloudArrowLeftRight.tsx +24 -0
  527. package/src/icons/stroke/CloudArrowUp.tsx +21 -0
  528. package/src/icons/stroke/CloudX.tsx +24 -0
  529. package/src/icons/stroke/Cog6Tooth.tsx +18 -0
  530. package/src/icons/stroke/Command.tsx +18 -0
  531. package/src/icons/stroke/CommandLine.tsx +18 -0
  532. package/src/icons/stroke/Cube.tsx +18 -0
  533. package/src/icons/stroke/Dash.tsx +15 -0
  534. package/src/icons/stroke/Document.tsx +20 -0
  535. package/src/icons/stroke/DocumentDuplicate.tsx +20 -0
  536. package/src/icons/stroke/DocumentPile.tsx +20 -0
  537. package/src/icons/stroke/DocumentPlus.tsx +21 -0
  538. package/src/icons/stroke/DocumentText.tsx +21 -0
  539. package/src/icons/stroke/Dust.tsx +26 -0
  540. package/src/icons/stroke/EmotionLaugh.tsx +18 -0
  541. package/src/icons/stroke/Equalizer.tsx +20 -0
  542. package/src/icons/stroke/ExclamationCircle.tsx +18 -0
  543. package/src/icons/stroke/ExternalLink.tsx +19 -0
  544. package/src/icons/stroke/Eye.tsx +18 -0
  545. package/src/icons/stroke/EyeSlash.tsx +18 -0
  546. package/src/icons/stroke/Flag.tsx +18 -0
  547. package/src/icons/stroke/Folder.tsx +18 -0
  548. package/src/icons/stroke/FolderOpen.tsx +20 -0
  549. package/src/icons/stroke/Fullscreen.tsx +18 -0
  550. package/src/icons/stroke/FullscreenExit.tsx +18 -0
  551. package/src/icons/stroke/GlobeAlt.tsx +18 -0
  552. package/src/icons/stroke/Grab.tsx +18 -0
  553. package/src/icons/stroke/HandHeart.tsx +18 -0
  554. package/src/icons/stroke/HandThumbDown.tsx +18 -0
  555. package/src/icons/stroke/HandThumbUp.tsx +18 -0
  556. package/src/icons/stroke/HeartAlt.tsx +18 -0
  557. package/src/icons/stroke/Hexagon.tsx +20 -0
  558. package/src/icons/stroke/Image.tsx +21 -0
  559. package/src/icons/stroke/InformationCircle.tsx +18 -0
  560. package/src/icons/stroke/Key.tsx +18 -0
  561. package/src/icons/stroke/Lightbulb.tsx +18 -0
  562. package/src/icons/stroke/Link.tsx +18 -0
  563. package/src/icons/stroke/List.tsx +20 -0
  564. package/src/icons/stroke/ListAdd.tsx +24 -0
  565. package/src/icons/stroke/ListCheck.tsx +24 -0
  566. package/src/icons/stroke/ListRemove.tsx +24 -0
  567. package/src/icons/stroke/Lock.tsx +20 -0
  568. package/src/icons/stroke/Login.tsx +18 -0
  569. package/src/icons/stroke/Logout.tsx +19 -0
  570. package/src/icons/stroke/Magic.tsx +24 -0
  571. package/src/icons/stroke/MagnifyingGlass.tsx +18 -0
  572. package/src/icons/stroke/Menu.tsx +18 -0
  573. package/src/icons/stroke/More.tsx +18 -0
  574. package/src/icons/stroke/MovingMail.tsx +20 -0
  575. package/src/icons/stroke/Paint.tsx +24 -0
  576. package/src/icons/stroke/PaperAirplane.tsx +18 -0
  577. package/src/icons/stroke/Pause.tsx +15 -0
  578. package/src/icons/stroke/PencilSquare.tsx +21 -0
  579. package/src/icons/stroke/Planet.tsx +18 -0
  580. package/src/icons/stroke/Play.tsx +20 -0
  581. package/src/icons/stroke/Plus.tsx +15 -0
  582. package/src/icons/stroke/PlusCircle.tsx +18 -0
  583. package/src/icons/stroke/Pushpin.tsx +18 -0
  584. package/src/icons/stroke/Puzzle.tsx +18 -0
  585. package/src/icons/stroke/QuestionMarkCircle.tsx +18 -0
  586. package/src/icons/stroke/Reaction.tsx +23 -0
  587. package/src/icons/stroke/Rectangle.tsx +20 -0
  588. package/src/icons/stroke/Robot.tsx +28 -0
  589. package/src/icons/stroke/Rocket.tsx +18 -0
  590. package/src/icons/stroke/Scan.tsx +24 -0
  591. package/src/icons/stroke/Server.tsx +21 -0
  592. package/src/icons/stroke/ShakeHands.tsx +18 -0
  593. package/src/icons/stroke/Shapes.tsx +18 -0
  594. package/src/icons/stroke/Sparkles.tsx +18 -0
  595. package/src/icons/stroke/Square.tsx +20 -0
  596. package/src/icons/stroke/Square3Stack3D.tsx +28 -0
  597. package/src/icons/stroke/Star.tsx +18 -0
  598. package/src/icons/stroke/Stop.tsx +20 -0
  599. package/src/icons/stroke/Table.tsx +20 -0
  600. package/src/icons/stroke/Template.tsx +18 -0
  601. package/src/icons/stroke/TestTube.tsx +18 -0
  602. package/src/icons/stroke/Time.tsx +18 -0
  603. package/src/icons/stroke/Trash.tsx +18 -0
  604. package/src/icons/stroke/Triangle.tsx +20 -0
  605. package/src/icons/stroke/User.tsx +24 -0
  606. package/src/icons/stroke/UserArrow.tsx +24 -0
  607. package/src/icons/stroke/UserGroup.tsx +24 -0
  608. package/src/icons/stroke/UserPlus.tsx +24 -0
  609. package/src/icons/stroke/Wrench.tsx +18 -0
  610. package/src/icons/stroke/XCircle.tsx +18 -0
  611. package/src/icons/stroke/XMark.tsx +18 -0
  612. package/src/icons/stroke/index.ts +115 -0
  613. package/src/index.ts +5 -0
  614. package/src/index_with_tw_base.ts +2 -0
  615. package/src/lib/avatar/types.ts +13 -0
  616. package/src/lib/avatar/utils.ts +56 -0
  617. package/src/lib/index.ts +1 -0
  618. package/src/lib/utils.ts +37 -0
  619. package/src/logo/Logo.tsx +32 -0
  620. package/src/logo/LogoColoredGrey.tsx +26 -0
  621. package/src/logo/LogoFullColor.tsx +31 -0
  622. package/src/logo/LogoSquareColoredGrey.tsx +26 -0
  623. package/src/logo/LogoSquareFullColor.tsx +37 -0
  624. package/src/logo/dust/LogoHorizontalColor.tsx +37 -0
  625. package/src/logo/dust/LogoHorizontalColorLayer1.tsx +29 -0
  626. package/src/logo/dust/LogoHorizontalColorLayer2.tsx +22 -0
  627. package/src/logo/dust/LogoHorizontalDark.tsx +27 -0
  628. package/src/logo/dust/LogoHorizontalWhite.tsx +27 -0
  629. package/src/logo/dust/LogoSquareColor.tsx +37 -0
  630. package/src/logo/dust/LogoSquareColorLayer1.tsx +29 -0
  631. package/src/logo/dust/LogoSquareColorLayer2.tsx +22 -0
  632. package/src/logo/dust/LogoSquareDark.tsx +27 -0
  633. package/src/logo/dust/LogoSquareWhite.tsx +27 -0
  634. package/src/logo/dust/index.ts +10 -0
  635. package/src/logo/index.ts +48 -0
  636. package/src/logo/platforms/Ai21.tsx +31 -0
  637. package/src/logo/platforms/Anthropic.tsx +18 -0
  638. package/src/logo/platforms/AnthropicWhite.tsx +18 -0
  639. package/src/logo/platforms/Claude.tsx +29 -0
  640. package/src/logo/platforms/Cohere.tsx +26 -0
  641. package/src/logo/platforms/Confluence.tsx +51 -0
  642. package/src/logo/platforms/Drive.tsx +38 -0
  643. package/src/logo/platforms/Gemini.tsx +40 -0
  644. package/src/logo/platforms/Github.tsx +20 -0
  645. package/src/logo/platforms/GithubWhite.tsx +20 -0
  646. package/src/logo/platforms/Gong.tsx +18 -0
  647. package/src/logo/platforms/Google.tsx +38 -0
  648. package/src/logo/platforms/GoogleDoc.tsx +20 -0
  649. package/src/logo/platforms/GooglePdf.tsx +35 -0
  650. package/src/logo/platforms/GoogleSlide.tsx +22 -0
  651. package/src/logo/platforms/GoogleSpreadsheet.tsx +22 -0
  652. package/src/logo/platforms/Gpt3.tsx +29 -0
  653. package/src/logo/platforms/Gpt4.tsx +29 -0
  654. package/src/logo/platforms/HuggingFace.tsx +52 -0
  655. package/src/logo/platforms/Intercom.tsx +18 -0
  656. package/src/logo/platforms/Microsoft.tsx +18 -0
  657. package/src/logo/platforms/MicrosoftExcel.tsx +30 -0
  658. package/src/logo/platforms/MicrosoftPowerpoint.tsx +34 -0
  659. package/src/logo/platforms/MicrosoftWord.tsx +26 -0
  660. package/src/logo/platforms/Mistral.tsx +32 -0
  661. package/src/logo/platforms/Notion.tsx +24 -0
  662. package/src/logo/platforms/Office.tsx +106 -0
  663. package/src/logo/platforms/Openai.tsx +18 -0
  664. package/src/logo/platforms/OpenaiWhite.tsx +18 -0
  665. package/src/logo/platforms/Replicate.tsx +31 -0
  666. package/src/logo/platforms/Salesforce.tsx +27 -0
  667. package/src/logo/platforms/Slack.tsx +30 -0
  668. package/src/logo/platforms/Zapier.tsx +18 -0
  669. package/src/logo/platforms/index.ts +33 -0
  670. package/src/logo/src/dust/logoHorizontalColor.svg +9 -0
  671. package/src/logo/src/dust/logoHorizontalColor_layer1.svg +6 -0
  672. package/src/logo/src/dust/logoHorizontalColor_layer2.svg +5 -0
  673. package/src/logo/src/dust/logoHorizontalDark.svg +4 -0
  674. package/src/logo/src/dust/logoHorizontalWhite.svg +4 -0
  675. package/src/logo/src/dust/logoSquareColor.svg +9 -0
  676. package/src/logo/src/dust/logoSquareColor_layer1.svg +6 -0
  677. package/src/logo/src/dust/logoSquareColor_layer2.svg +5 -0
  678. package/src/logo/src/dust/logoSquareDark.svg +4 -0
  679. package/src/logo/src/dust/logoSquareWhite.svg +4 -0
  680. package/src/logo/src/logo-colored-grey.svg +4 -0
  681. package/src/logo/src/logo-full-color.svg +9 -0
  682. package/src/logo/src/logo-square-colored-grey.svg +4 -0
  683. package/src/logo/src/logo-square-full-color.svg +9 -0
  684. package/src/logo/src/platforms/Ai21.svg +11 -0
  685. package/src/logo/src/platforms/Anthropic.svg +3 -0
  686. package/src/logo/src/platforms/AnthropicWhite.svg +3 -0
  687. package/src/logo/src/platforms/Claude.svg +11 -0
  688. package/src/logo/src/platforms/Cohere.svg +5 -0
  689. package/src/logo/src/platforms/Confluence.svg +19 -0
  690. package/src/logo/src/platforms/Gemini.svg +15 -0
  691. package/src/logo/src/platforms/GithubWhite.svg +3 -0
  692. package/src/logo/src/platforms/Gong.svg +3 -0
  693. package/src/logo/src/platforms/Google.svg +6 -0
  694. package/src/logo/src/platforms/GoogleDoc.svg +8 -0
  695. package/src/logo/src/platforms/GooglePDF.svg +7 -0
  696. package/src/logo/src/platforms/GoogleSlide.svg +8 -0
  697. package/src/logo/src/platforms/GoogleSpreadsheet.svg +11 -0
  698. package/src/logo/src/platforms/Gpt3.svg +11 -0
  699. package/src/logo/src/platforms/Gpt4.svg +11 -0
  700. package/src/logo/src/platforms/HuggingFace.svg +11 -0
  701. package/src/logo/src/platforms/Intercom.svg +3 -0
  702. package/src/logo/src/platforms/Microsoft.svg +6 -0
  703. package/src/logo/src/platforms/MicrosoftExcel.svg +12 -0
  704. package/src/logo/src/platforms/MicrosoftPowerpoint.svg +7 -0
  705. package/src/logo/src/platforms/MicrosoftWord.svg +8 -0
  706. package/src/logo/src/platforms/Mistral.svg +23 -0
  707. package/src/logo/src/platforms/Office.svg +34 -0
  708. package/src/logo/src/platforms/Openai.svg +3 -0
  709. package/src/logo/src/platforms/OpenaiWhite.svg +3 -0
  710. package/src/logo/src/platforms/Replicate.svg +11 -0
  711. package/src/logo/src/platforms/Salesforce.svg +10 -0
  712. package/src/logo/src/platforms/Zapier.svg +3 -0
  713. package/src/logo/src/platforms/drive.svg +8 -0
  714. package/src/logo/src/platforms/github.svg +3 -0
  715. package/src/logo/src/platforms/notion.svg +4 -0
  716. package/src/logo/src/platforms/slack.svg +6 -0
  717. package/src/lottie/collapseBar.ts +189 -0
  718. package/src/lottie/spinnerColor.ts +431 -0
  719. package/src/lottie/spinnerColorLG.ts +1098 -0
  720. package/src/lottie/spinnerColorXS.ts +325 -0
  721. package/src/lottie/spinnerDark.ts +455 -0
  722. package/src/lottie/spinnerDarkLG.ts +1102 -0
  723. package/src/lottie/spinnerDarkXS.ts +362 -0
  724. package/src/lottie/spinnerLight.ts +440 -0
  725. package/src/lottie/spinnerLightLG.ts +1066 -0
  726. package/src/lottie/spinnerLightXS.ts +358 -0
  727. package/src/lottie/src/collapseBar.json +187 -0
  728. package/src/lottie/src/spinnerColor.json +429 -0
  729. package/src/lottie/src/spinnerColorLG.json +1100 -0
  730. package/src/lottie/src/spinnerColorXS.json +323 -0
  731. package/src/lottie/src/spinnerDark.json +453 -0
  732. package/src/lottie/src/spinnerDarkLG.json +1100 -0
  733. package/src/lottie/src/spinnerDarkXS.json +360 -0
  734. package/src/lottie/src/spinnerLight.json +438 -0
  735. package/src/lottie/src/spinnerLightLG.json +1064 -0
  736. package/src/lottie/src/spinnerLightXS.json +356 -0
  737. package/src/stories/AssistantPreview.stories.tsx +69 -0
  738. package/src/stories/Avatar.stories.tsx +437 -0
  739. package/src/stories/AvatarSet.stories.tsx +144 -0
  740. package/src/stories/Banner.stories.tsx +72 -0
  741. package/src/stories/BarHeader.stories.tsx +161 -0
  742. package/src/stories/Button.stories.tsx +640 -0
  743. package/src/stories/CardButton.stories.tsx +110 -0
  744. package/src/stories/Checkbox.stories.tsx +46 -0
  745. package/src/stories/Chip.stories.tsx +87 -0
  746. package/src/stories/Citation.stories.tsx +212 -0
  747. package/src/stories/CollapseButton.stories.tsx +20 -0
  748. package/src/stories/Collapsible.stories.tsx +61 -0
  749. package/src/stories/ColorPicker.stories.tsx +177 -0
  750. package/src/stories/ConfettiBackground.stories.tsx +28 -0
  751. package/src/stories/ContentMessage.stories.tsx +58 -0
  752. package/src/stories/ContextItem.stories.tsx +140 -0
  753. package/src/stories/DataTable.stories.tsx +36 -0
  754. package/src/stories/Dialog.stories.tsx +65 -0
  755. package/src/stories/DropdownMenu.stories.tsx +522 -0
  756. package/src/stories/ElementDialog.stories.tsx +56 -0
  757. package/src/stories/ElementModal.stories.tsx +50 -0
  758. package/src/stories/FilterChips.stories.tsx +21 -0
  759. package/src/stories/Hover3D.stories.tsx +112 -0
  760. package/src/stories/Hoverable.stories.tsx +27 -0
  761. package/src/stories/Icon.stories.tsx +43 -0
  762. package/src/stories/IconButton.stories.tsx +46 -0
  763. package/src/stories/IconSet.stories.tsx +59 -0
  764. package/src/stories/IconToggleButton.stories.tsx +34 -0
  765. package/src/stories/Input.stories.tsx +96 -0
  766. package/src/stories/Introduction.mdx +221 -0
  767. package/src/stories/Item.stories.tsx +199 -0
  768. package/src/stories/Logo.stories.tsx +113 -0
  769. package/src/stories/Markdown.stories.tsx +52 -0
  770. package/src/stories/Modal.stories.tsx +146 -0
  771. package/src/stories/Notification.stories.tsx +38 -0
  772. package/src/stories/Page.stories.tsx +389 -0
  773. package/src/stories/PaginatedCitationsGrid.stories.tsx +41 -0
  774. package/src/stories/Pagination.stories.tsx +46 -0
  775. package/src/stories/PlatformIconSet.stories.tsx +40 -0
  776. package/src/stories/Popup.stories.tsx +49 -0
  777. package/src/stories/PriceTable.stories.tsx +118 -0
  778. package/src/stories/RadioButton.stories.tsx +68 -0
  779. package/src/stories/Searchbar.stories.tsx +109 -0
  780. package/src/stories/Shadows.stories.tsx +42 -0
  781. package/src/stories/SliderToggle.stories.tsx +36 -0
  782. package/src/stories/Spinner.stories.tsx +121 -0
  783. package/src/stories/SystemAvatarSet.stories.tsx +72 -0
  784. package/src/stories/Tab.stories.tsx +96 -0
  785. package/src/stories/TextArea.stories.tsx +50 -0
  786. package/src/stories/Tooltip.stories.tsx +62 -0
  787. package/src/stories/Tree.stories.tsx +368 -0
  788. package/src/stories/assets/accessibility.png +0 -0
  789. package/src/stories/assets/accessibility.svg +5 -0
  790. package/src/stories/assets/addon-library.png +0 -0
  791. package/src/stories/assets/assets.png +0 -0
  792. package/src/stories/assets/code-brackets.svg +1 -0
  793. package/src/stories/assets/colors.svg +1 -0
  794. package/src/stories/assets/comments.svg +1 -0
  795. package/src/stories/assets/context.png +0 -0
  796. package/src/stories/assets/direction.svg +1 -0
  797. package/src/stories/assets/discord.svg +15 -0
  798. package/src/stories/assets/docs.png +0 -0
  799. package/src/stories/assets/figma-plugin.png +0 -0
  800. package/src/stories/assets/flow.svg +1 -0
  801. package/src/stories/assets/github.svg +3 -0
  802. package/src/stories/assets/plugin.svg +1 -0
  803. package/src/stories/assets/repo.svg +1 -0
  804. package/src/stories/assets/share.png +0 -0
  805. package/src/stories/assets/stackalt.svg +1 -0
  806. package/src/stories/assets/styling.png +0 -0
  807. package/src/stories/assets/testing.png +0 -0
  808. package/src/stories/assets/theming.png +0 -0
  809. package/src/stories/assets/tutorials.svg +12 -0
  810. package/src/stories/assets/youtube.svg +4 -0
  811. package/src/styles/global.css +12 -0
  812. package/src/styles/global_with_tw_base.css +4 -0
  813. package/src/styles/tailwind.css +15 -0
@@ -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="M3 4H21V7H3V4ZM3 10.5H21V13.5H3V10.5ZM3 17H21V20H3V17Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5 10C3.9 10 3 10.9 3 12C3 13.1 3.9 14 5 14C6.1 14 7 13.1 7 12C7 10.9 6.1 10 5 10ZM19 10C17.9 10 17 10.9 17 12C17 13.1 17.9 14 19 14C20.1 14 21 13.1 21 12C21 10.9 20.1 10 19 10ZM12 10C10.9 10 10 10.9 10 12C10 13.1 10.9 14 12 14C13.1 14 14 13.1 14 12C14 10.9 13.1 10 12 10Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2 6.76056V20H22V6.76057L12 15.8515L2 6.76056Z" fill="#020617"/>
3
+ <path d="M22 4.05764V4H2V4.05764L12 13.1486L22 4.05764Z" fill="#020617"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.58581 5.00004L7.29289 2.70712L8.70711 1.29291L20.4143 13.0001L13.1213 20.293C11.9498 21.4645 10.0503 21.4645 8.8787 20.293L3.70711 15.1214C2.53554 13.9498 2.53553 12.0503 3.70711 10.8787L9.58581 5.00004ZM11 6.41425L5.12132 12.2929C4.92607 12.4882 4.82844 12.7441 4.82843 13H17.5858L11 6.41425Z" fill="#020617"/>
3
+ <path d="M20.9955 16.9644L19.2277 18.7321C18.2514 19.7084 18.2514 21.2914 19.2277 22.2677C20.204 23.244 21.7869 23.244 22.7632 22.2677C23.7395 21.2914 23.7395 19.7084 22.7632 18.7321L20.9955 16.9644Z" fill="#020617"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16 23C14.5887 20.1802 11.7691 14.539 11.7691 14.539L14 10L9.5 12.4002L1 8.99998C8.00001 6.66668 15.0002 4.33397 22 2C19.9982 8.99946 17.9981 15.9994 16 23Z" fill="#020617"/>
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 5H10V19H6V5ZM14 5H18V19H14V5Z" fill="#020617"/>
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
+ <path d="M3 18.9964H21V20.9964H3V18.9964Z" fill="#020617"/>
3
+ <path d="M3 19L7 20.9964L16.5 11.5L12.5 7.5L3 17V19Z" fill="#020617"/>
4
+ <path d="M16.5 3.5L20.5 7.5L17.5 10.5L13.5 6.5L16.5 3.5Z" fill="#020617"/>
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="M5.32244 5.96577C5.42367 5.85395 5.5282 5.74405 5.63604 5.6362C6.11945 5.1528 6.64417 4.73588 7.19883 4.38544C6.8849 4.29891 6.60274 4.24766 6.35542 4.22901C5.78308 4.18584 5.53243 4.32175 5.42553 4.42865C5.31863 4.53555 5.18272 4.7862 5.22589 5.35853C5.23974 5.54216 5.27156 5.74499 5.32244 5.96577ZM20.7257 14.2109C20.7873 14.3339 20.8463 14.4559 20.9028 14.5768C21.3793 15.5979 21.6941 16.5946 21.7616 17.4905C21.8289 18.3821 21.656 19.3109 20.9819 19.985C20.3077 20.6591 19.379 20.832 18.4874 20.7648C17.7068 20.7059 16.8497 20.4593 15.9666 20.0817L15.964 20.0829C15.8109 20.0174 15.657 19.948 15.5025 19.8748C13.4695 18.9125 11.1435 17.2207 8.9599 15.0371C6.77855 12.8558 5.08807 10.5323 4.1252 8.50091C4.05178 8.346 3.98205 8.19166 3.91629 8.03814L3.91734 8.036C3.53815 7.1507 3.29057 6.2914 3.23155 5.50895C3.1643 4.61731 3.33717 3.68858 4.01132 3.01444C4.68547 2.34029 5.61419 2.16742 6.50583 2.23467C7.40174 2.30224 8.3984 2.61703 9.41949 3.09353C9.54253 3.15096 9.66667 3.21108 9.79181 3.27384C12.7623 2.52515 16.0404 3.3126 18.364 5.6362C20.6882 7.96047 21.4755 11.2397 20.7257 14.2109ZM19.6128 16.8044C19.2627 17.3579 18.8465 17.8816 18.364 18.3641C18.257 18.4711 18.1479 18.5749 18.037 18.6754C18.2553 18.7254 18.456 18.7567 18.6378 18.7704C19.2101 18.8136 19.4608 18.6777 19.5677 18.5708C19.6746 18.4639 19.8105 18.2132 19.7673 17.6409C19.7488 17.3954 19.6982 17.1156 19.6128 16.8044ZM5.63604 18.3641C3.37241 16.1005 2.56666 12.9311 3.21877 10.0226C4.30105 12.0034 5.92374 14.1223 7.89924 16.0978C9.87632 18.0748 11.9971 19.6986 13.9794 20.781C11.0705 21.4339 7.90015 20.6282 5.63604 18.3641Z" fill="#020617"/>
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="M20 12L8 20L8 4L20 12Z" fill="#020617"/>
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="M4.92892 19.0711C1.02368 15.1658 1.02371 8.83414 4.92892 4.92893C8.83416 1.02369 15.1658 1.02369 19.0711 4.92893C22.9763 8.83414 22.9763 15.1658 19.0711 19.0711C15.1658 22.9763 8.83413 22.9763 4.92892 19.0711ZM13 11L13 7H11L11 11L7.00001 11L7.00001 13L11 13V17H13V13L17 13L17 11L13 11Z" fill="#020617"/>
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="M10.5 10.5V5L13.5 5V10.5H19V13.5H13.5V19H10.5V13.5H5V10.5H10.5Z" fill="#020617"/>
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="M22.3126 10.1753L20.8984 11.5895L20.1913 10.8824L15.9486 15.125L15.2415 18.6606L13.8273 20.0748L9.58466 15.8321L4.63492 20.7819L3.2207 19.3677L8.17045 14.4179L3.92781 10.1753L5.34202 8.76107L8.87756 8.05396L13.1202 3.81132L12.4131 3.10422L13.8273 1.69L22.3126 10.1753Z" fill="#020617"/>
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="M8 4C8 2.34315 9.34315 1 11 1C12.6569 1 14 2.34315 14 4C14 4.35064 13.9398 4.68722 13.8293 5C15.5529 5 17.2764 5 19 5V10.1707C19.3128 10.0602 19.6494 10 20 10C21.6569 10 23 11.3431 23 13C23 14.6569 21.6569 16 20 16C19.6494 16 19.3128 15.9398 19 15.8293V21C13.6667 21 8.33333 21 3 21V5C4.72357 5 6.44714 5 8.17071 5C8.06015 4.68722 8 4.35064 8 4Z" fill="#020617"/>
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="M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM11 15V17H13V15H11ZM13 13.3551C14.4457 12.9248 15.5 11.5855 15.5 10C15.5 8.067 13.933 6.5 12 6.5C10.302 6.5 8.88637 7.70919 8.56731 9.31346L10.5288 9.70577C10.6656 9.01823 11.2723 8.5 12 8.5C12.8284 8.5 13.5 9.17157 13.5 10C13.5 10.8284 12.8284 11.5 12 11.5C11.4477 11.5 11 11.9477 11 12.5V14H13V13.3551Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M19 0H21V3H24V5H21V8H19V5H16V3H19V0Z" fill="#020617"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12 22C17.5228 22 22 17.5228 22 12C22 10.9548 21.8396 9.94704 21.5422 9H18C18 7.34315 16.6569 6 15 6V2.4578C14.053 2.16035 13.0452 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22ZM7 11C6.17157 11 5.5 10.3284 5.5 9.5C5.5 8.67157 6.17157 8 7 8C7.82843 8 8.5 8.67157 8.5 9.5C8.5 10.3284 7.82843 11 7 11ZM15 13C15 15.2091 13.2091 17 11 17C8.79086 17 7 15.2091 7 13H15ZM13.5 9.5C13.5 10.3284 14.1716 11 15 11C15.8284 11 16.5 10.3284 16.5 9.5C16.5 8.67157 15.8284 8 15 8C14.1716 8 13.5 8.67157 13.5 9.5Z" fill="#020617"/>
4
+ </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
+ <rect x="7" y="2" width="10" height="20" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14 4C14 5.10457 13.1046 6 12 6C10.8954 6 10 5.10457 10 4C10 2.89543 10.8954 2 12 2C13.1046 2 14 2.89543 14 4Z" fill="#020617"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3 13C3 9.68629 5.68629 7 9 7H15C18.3137 7 21 9.68629 21 13V16C21 18.2091 19.2091 20 17 20H7C4.79086 20 3 18.2091 3 16V13ZM13.6646 15.3292C14.0351 15.1439 14.4856 15.2941 14.6708 15.6646C14.8561 16.0351 14.7059 16.4856 14.3354 16.6708L13.2298 17.2236C12.4556 17.6107 11.5444 17.6107 10.7702 17.2236L9.66459 16.6708C9.29411 16.4856 9.14394 16.0351 9.32918 15.6646C9.51443 15.2941 9.96493 15.1439 10.3354 15.3292L11.441 15.882C11.7929 16.0579 12.2071 16.0579 12.559 15.882L13.6646 15.3292ZM18 13.5C18 14.3284 17.3284 15 16.5 15C15.6716 15 15 14.3284 15 13.5C15 12.6716 15.6716 12 16.5 12C17.3284 12 18 12.6716 18 13.5ZM7.5 15C8.32843 15 9 14.3284 9 13.5C9 12.6716 8.32843 12 7.5 12C6.67157 12 6 12.6716 6 13.5C6 14.3284 6.67157 15 7.5 15Z" fill="#020617"/>
4
+ <path d="M1 11C0.447715 11 0 11.4477 0 12V15C0 15.5523 0.447715 16 1 16C1.55228 16 2 15.5523 2 15V12C2 11.4477 1.55228 11 1 11Z" fill="#020617"/>
5
+ <path d="M22 12C22 11.4477 22.4477 11 23 11C23.5523 11 24 11.4477 24 12V15C24 15.5523 23.5523 16 23 16C22.4477 16 22 15.5523 22 15V12Z" fill="#020617"/>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.33053 15.9287C5.115 14.9913 5.00054 14.0101 5.00054 12.9998C5.00054 7.91186 7.90319 3.56348 12.0005 1.81787C16.0979 3.56348 19.0005 7.91186 19.0005 12.9998C19.0005 14.0101 18.8861 14.9913 18.6706 15.9287L20.6907 17.7244C20.8704 17.8841 20.9109 18.1492 20.7872 18.3553L18.33 22.4507C18.1879 22.6875 17.8808 22.7643 17.644 22.6222C17.609 22.6012 17.5766 22.5759 17.5477 22.547L15.2934 20.2927C15.1059 20.1052 14.8515 19.9998 14.5863 19.9998H9.41476C9.14954 19.9998 8.89519 20.1052 8.70765 20.2927L6.45337 22.547C6.2581 22.7423 5.94152 22.7423 5.74626 22.547C5.71735 22.5181 5.6921 22.4857 5.67107 22.4507L3.21385 18.3553C3.09014 18.1492 3.13071 17.8841 3.31042 17.7244L5.33053 15.9287ZM12.0005 12.9998C13.1051 12.9998 14.0005 12.1044 14.0005 10.9998C14.0005 9.89525 13.1051 8.99982 12.0005 8.99982C10.896 8.99982 10.0005 9.89525 10.0005 10.9998C10.0005 12.1044 10.896 12.9998 12.0005 12.9998Z" fill="#020617"/>
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
+ <path d="M20 22V15H4V22H20Z" fill="#020617"/>
3
+ <path d="M4 5H20V2H4V5Z" fill="#020617"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2 7H22V13H2V7ZM4 9H20V11H4V9Z" fill="#020617"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M18 2C19.6569 2 21 3.34315 21 5V19C21 20.6569 19.6569 22 18 22H6C4.34315 22 3 20.6569 3 19L3 5C3 3.34315 4.34315 2 6 2H18ZM6 16C5.44772 16 5 16.4477 5 17V19C5 19.5523 5.44772 20 6 20H18C18.5523 20 19 19.5523 19 19V17C19 16.4477 18.5523 16 18 16H6ZM15 17H17V19H15V17Z" fill="#020617"/>
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="M19.2914 5.99994H20.0002C20.5525 5.99994 21.0002 6.44766 21.0002 6.99994V13.9999C21.0002 14.5522 20.5525 14.9999 20.0002 14.9999H18.0002L13.8319 9.16427C13.3345 8.46797 12.4493 8.16522 11.6297 8.41109L9.14444 9.15668C8.43971 9.3681 7.6758 9.17551 7.15553 8.65524L6.86277 8.36247C6.41655 7.91626 6.49011 7.17336 7.01517 6.82332L12.4162 3.22262C13.0752 2.78333 13.9312 2.77422 14.5994 3.1994L18.7546 5.8436C18.915 5.94571 19.1013 5.99994 19.2914 5.99994ZM5.02708 14.2947L3.41132 15.7085C2.93991 16.1209 2.95945 16.8603 3.45201 17.2474L8.59277 21.2865C9.07284 21.6637 9.77592 21.5264 10.0788 20.9963L10.7827 19.7645C11.2127 19.012 11.1091 18.0682 10.5261 17.4269L7.82397 14.4545C7.09091 13.6481 5.84722 13.5771 5.02708 14.2947ZM7.04557 5H3C2.44772 5 2 5.44772 2 6V13.5158C2 13.9242 2.12475 14.3173 2.35019 14.6464C2.3741 14.6238 2.39856 14.6015 2.42357 14.5796L4.03933 13.1658C5.47457 11.91 7.65103 12.0343 8.93388 13.4455L11.6361 16.4179C12.6563 17.5401 12.8376 19.1918 12.0851 20.5087L11.4308 21.6538C11.9937 21.8671 12.635 21.819 13.169 21.4986L17.5782 18.8531C18.0786 18.5528 18.2166 17.8896 17.8776 17.4146L12.6109 10.0361C12.4865 9.86205 12.2652 9.78636 12.0603 9.84783L9.57505 10.5934C8.34176 10.9634 7.00492 10.6264 6.09446 9.7159L5.80169 9.42313C4.68615 8.30759 4.87005 6.45035 6.18271 5.57524L7.04557 5Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.9998 1L18 11H6L11.9998 1ZM13 13.5H21V21.5H13V13.5ZM6.75 22C9.37335 22 11.5 19.8734 11.5 17.25C11.5 14.6266 9.37335 12.5 6.75 12.5C4.12665 12.5 2 14.6266 2 17.25C2 19.8734 4.12665 22 6.75 22Z" fill="#020617"/>
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="M14 5C14 4.68934 14.2553 4.4442 14.5578 4.37339C15.456 4.16311 16.1631 3.45603 16.3734 2.55775C16.4442 2.25527 16.6893 2 17 2C17.3107 2 17.5558 2.25527 17.6266 2.55775C17.8369 3.45603 18.544 4.16311 19.4422 4.37339C19.7447 4.4442 20 4.68934 20 5C20 5.31066 19.7447 5.5558 19.4422 5.62661C18.544 5.83689 17.8369 6.54397 17.6266 7.44225C17.5558 7.74473 17.3107 8 17 8C16.6893 8 16.4442 7.74473 16.3734 7.44225C16.1631 6.54397 15.456 5.83689 14.5578 5.62661C14.2553 5.5558 14 5.31066 14 5ZM1 12C1 11.4477 1.45108 11.0087 1.99581 10.9177C4.5117 10.4975 6.49749 8.5117 6.91774 5.99581C7.00873 5.45108 7.44772 5 8 5C8.55228 5 8.99127 5.45108 9.08226 5.99581C9.50251 8.5117 11.4883 10.4975 14.0042 10.9177C14.5489 11.0087 15 11.4477 15 12C15 12.5523 14.5489 12.9913 14.0042 13.0823C11.4883 13.5025 9.50251 15.4883 9.08226 18.0042C8.99127 18.5489 8.55228 19 8 19C7.44772 19 7.00873 18.5489 6.91774 18.0042C6.49749 15.4883 4.5117 13.5025 1.99581 13.0823C1.45108 12.9913 1 12.5523 1 12ZM18 14C17.5858 14 17.2589 14.3404 17.1645 14.7437C16.8841 15.9414 15.9414 16.8841 14.7437 17.1645C14.3404 17.2589 14 17.5858 14 18C14 18.4142 14.3404 18.7411 14.7437 18.8355C15.9414 19.1159 16.8841 20.0586 17.1645 21.2563C17.2589 21.6596 17.5858 22 18 22C18.4142 22 18.7411 21.6596 18.8355 21.2563C19.1159 20.0586 20.0586 19.1159 21.2563 18.8355C21.6596 18.7411 22 18.4142 22 18C22 17.5858 21.6596 17.2589 21.2563 17.1645C20.0586 16.8841 19.1159 15.9414 18.8355 14.7437C18.7411 14.3404 18.4142 14 18 14Z" fill="#020617"/>
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
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.00012 7C5.3329 4.99912 8.6659 2.99861 12 1C15.334 2.99901 18.6671 4.99929 22 7C18.6663 8.99925 15.3332 10.9997 12 12.9998C8.66678 10.9997 5.33374 8.99939 2.00012 7Z" fill="#020617"/>
3
+ <path d="M4.08278 10.7497L2.00012 12C5.33374 13.9994 8.66678 15.9997 12 17.9998C15.3332 15.9997 18.6663 13.9992 22 12L19.9172 10.7497L12 15.5L4.08278 10.7497Z" fill="#020617"/>
4
+ <path d="M2.00012 17L4.08277 15.7497L12 20.5L19.9172 15.7497L22 17C18.6663 18.9992 15.3332 20.9997 12 22.9998C8.66678 20.9997 5.33374 18.9993 2.00012 17Z" fill="#020617"/>
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
+ <rect x="4" y="4" width="16" height="16" fill="#020617"/>
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="M12.0006 18.26L4.94715 22.2082L6.52248 14.2799L0.587891 8.7918L8.61493 7.84006L12.0006 0.5L15.3862 7.84006L23.4132 8.7918L17.4787 14.2799L19.054 22.2082L12.0006 18.26Z" fill="#020617"/>
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
+ <rect x="5" y="5" width="14" height="14" fill="#020617"/>
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 fill-rule="evenodd" clip-rule="evenodd" d="M2 22H22V2H2V22ZM11 4V8H4V4H11ZM4 14V10H11V14H4ZM4 16H11V20H4V16ZM13 16H20V20H13V16ZM20 14H13V10H20V14ZM20 4V8H13V4H20Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11 13V21C8.33333 21 5.66667 21.0001 3 21V13H11ZM13 3.00001C15.6667 3.00001 18.3333 3.00008 21 3V21C18.3333 21.0001 15.6667 21 13 21V3.00001ZM3 3C5.66667 3.00008 8.33333 3.00001 11 3.00001V11H3V3Z" fill="#020617"/>
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 2V4H16V18C16 20.2091 14.2091 22 12 22C9.79086 22 8 20.2091 8 18V4H7V2H17ZM13 15C12.4477 15 12 15.4477 12 16C12 16.5523 12.4477 17 13 17C13.5523 17 14 16.5523 14 16C14 15.4477 13.5523 15 13 15ZM11 12C10.4477 12 10 12.4477 10 13C10 13.5523 10.4477 14 11 14C11.5523 14 12 13.5523 12 13C12 12.4477 11.5523 12 11 12ZM14 4H10V8H14V4Z" fill="#020617"/>
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="M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM13 12V7H11V14H17V12H13Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M20 5H16V3C16 2.44772 15.5523 2 15 2H9C8.44772 2 8 2.44772 8 3V5H4V7H20V5ZM10 5V4H14V5H10Z" fill="#020617"/>
3
+ <path d="M19 8H5V19C5 20.6569 6.34315 22 8 22C10.6667 22 13.3333 22 16 22C17.6569 22 19 20.6569 19 19V8Z" fill="#020617"/>
4
+ </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="M12 3L22.3923 21H1.6077L12 3Z" fill="#020617"/>
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
+ <path d="M14 8C14 10.7614 11.7614 13 9 13C6.23858 13 4 10.7614 4 8C4 5.23858 6.23858 3 9 3C11.7614 3 14 5.23858 14 8Z" fill="#020617"/>
3
+ <path d="M1 22C1 17.5817 4.58172 14 9 14C13.4183 14 17 17.5817 17 22H1Z" fill="#020617"/>
4
+ <path d="M22 13L18 9V12H14V14H18V17L22 13Z" fill="#020617"/>
5
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M17 8C17 10.7614 14.7614 13 12 13C9.23858 13 7 10.7614 7 8C7 5.23858 9.23858 3 12 3C14.7614 3 17 5.23858 17 8Z" fill="#020617"/>
3
+ <path d="M4 22C4 17.5817 7.58172 14 12 14C16.4183 14 20 17.5817 20 22H4Z" fill="#020617"/>
4
+ <path d="M5.22305 6.24025C5.07746 6.80252 5 7.39221 5 8C5 9.93618 5.78608 11.6888 7.05651 12.956C6.87527 12.985 6.68939 13 6.5 13C4.567 13 3 11.433 3 9.5C3 8.01762 3.92157 6.75047 5.22305 6.24025Z" fill="#020617"/>
5
+ <path d="M19 8C19 9.93618 18.2139 11.6888 16.9435 12.956C17.1247 12.985 17.3106 13 17.5 13C19.433 13 21 11.433 21 9.5C21 8.01761 20.0784 6.75048 18.777 6.24026C18.9225 6.80252 19 7.39222 19 8Z" fill="#020617"/>
6
+ <path d="M0.173931 22C0.0601884 21.5185 0 21.0163 0 20.5C0 17.0883 2.62849 14.2905 5.97087 14.0212C3.55855 15.8469 2 18.7414 2 22L0.173931 22Z" fill="#020617"/>
7
+ <path d="M22 22L23.8261 22C23.9398 21.5185 24 21.0163 24 20.5C24 17.0883 21.3715 14.2905 18.0291 14.0212C20.4415 15.8469 22 18.7414 22 22Z" fill="#020617"/>
8
+ </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
+ <path d="M14 8C14 10.7614 11.7614 13 9 13C6.23858 13 4 10.7614 4 8C4 5.23858 6.23858 3 9 3C11.7614 3 14 5.23858 14 8Z" fill="#020617"/>
3
+ <path d="M1 22C1 17.5817 4.58172 14 9 14C13.4183 14 17 17.5817 17 22H1Z" fill="#020617"/>
4
+ <path d="M18 12V9H20V12H23V14H20V17H18V14H15V12H18Z" fill="#020617"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 13C14.7614 13 17 10.7614 17 8C17 5.23858 14.7614 3 12 3C9.23858 3 7 5.23858 7 8C7 10.7614 9.23858 13 12 13Z" fill="#020617"/>
3
+ <path d="M12 14C7.58172 14 4 17.5817 4 22H20C20 17.5817 16.4183 14 12 14Z" fill="#020617"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.32894 3.27158C6.56203 2.8332 7.99181 3.10749 8.97878 4.09446C9.96603 5.08171 10.2402 6.51202 9.80129 7.74535L20.646 18.5902L18.5247 20.7115L7.67887 9.86709C6.44578 10.3055 5.016 10.0312 4.02903 9.04421C3.04178 8.05696 2.76761 6.62665 3.20652 5.39332L5.44325 7.63C6.02903 8.21578 6.97878 8.21578 7.56457 7.63C8.15035 7.04421 8.15035 6.09446 7.56457 5.50868L5.32894 3.27158ZM15.6963 5.15512L18.8783 3.38736L20.2925 4.80157L18.5247 7.98355L16.757 8.3371L14.6356 10.4584L13.2214 9.04421L15.3427 6.92289L15.6963 5.15512ZM8.62523 12.9333L10.7465 15.0546L5.7968 20.0044C5.21101 20.5902 4.26127 20.5902 3.67548 20.0044C3.12415 19.453 3.09172 18.5793 3.57819 17.99L3.67548 17.883L8.62523 12.9333Z" fill="#020617"/>
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="M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM12 10.5858L9.17157 7.75736L7.75736 9.17157L10.5858 12L7.75736 14.8284L9.17157 16.2426L12 13.4142L14.8284 16.2426L16.2426 14.8284L13.4142 12L16.2426 9.17157L14.8284 7.75736L12 10.5858Z" fill="#020617"/>
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="M12 10L17 5L19 7L14 12.0007L19 17L17 19L12 14L7 19L5 17L10 12.0007L5 7L7 5L12 10Z" fill="#020617"/>
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="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 20C16.42 20 20 16.42 20 12C20 7.58 16.42 4 12 4C7.58 4 4 7.58 4 12C4 16.42 7.58 20 12 20ZM13 12H16L12 16L8 12H11V8H13V12Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.364 8.80745L13 11.1714L13 2.99985H11V11.1714L8.63608 8.80745L7.22188 10.2216L12 14.9998L16.7782 10.2216L15.364 8.80745Z" fill="#020617"/>
3
+ <path d="M17 19C17.5523 19 18 18.5523 18 18V13H20V18C20 19.6569 18.6569 21 17 21H7C5.34315 21 4 19.6569 4 18V13H6V18C6 18.5523 6.44772 19 7 19H17Z" fill="#020617"/>
4
+ </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="M12.9999 16.1714L18.3639 10.8074L19.7781 12.2216L11.9999 19.9998L4.22182 12.2216L5.63602 10.8074L10.9999 16.1714L10.9999 3.99985L12.9999 3.99985L12.9999 16.1714Z" fill="#020617"/>
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="M7.8284 12.9998L13.1924 18.3638L11.7782 19.778L4 11.9998L11.7782 4.22168L13.1924 5.63588L7.8284 10.9998L20 10.9998L20 12.9998L7.8284 12.9998Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 5C8.13401 5 5 8.13401 5 12C5 12.3395 5.02417 12.6734 5.07089 13H3.05493C3.01863 12.6717 3 12.338 3 12C3 7.02944 7.02944 3 12 3C14.6125 3 16.965 4.1131 18.6091 5.89092L20.5 4V9H15.5L17.1935 7.30653C15.9125 5.89002 14.0602 5 12 5Z" fill="#020617"/>
3
+ <path d="M6.80653 16.6935L8.5 15H3.5L3.5 20L5.39092 18.1091C7.03504 19.8869 9.38753 21 12 21C16.9706 21 21 16.9706 21 12C21 11.662 20.9814 11.3283 20.9451 11H18.9291C18.9758 11.3266 19 11.6605 19 12C19 15.866 15.866 19 12 19C9.9398 19 8.08747 18.11 6.80653 16.6935Z" fill="#020617"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.1716 10.9999L10.8076 5.63589L12.2218 4.22168L20 11.9999L12.2218 19.778L10.8076 18.3638L16.1716 12.9999H4V10.9999H16.1716Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M18 18C18 18.5523 17.5523 19 17 19H7C6.44772 19 6 18.5523 6 18V13H4V18C4 19.6569 5.34315 21 7 21H17C18.6569 21 20 19.6569 20 18V13H18V18Z" fill="#020617"/>
3
+ <path d="M11.0001 6.82825L8.63607 9.19225L7.22186 7.77805L12.0001 2.99985L16.7782 7.77805L15.364 9.19225L13.0001 6.82825V14.9998H11.0001L11.0001 6.82825Z" fill="#020617"/>
4
+ </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.0001 7.82825L5.63604 13.1922L4.22183 11.778L12.0001 3.99985L19.7782 11.778L18.364 13.1922L13.0001 7.82825L13.0001 19.9998L11.0001 19.9998L11.0001 7.82825Z" fill="#020617"/>
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="M14.8287 7.7574L9.1718 13.4143C8.78127 13.8048 8.78127 14.4379 9.1718 14.8285C9.56232 15.219 10.1955 15.219 10.586 14.8285L16.2429 9.17161C17.4144 8.00004 17.4144 6.10055 16.2429 4.92897C15.0713 3.7574 13.1718 3.7574 12.0002 4.92897L6.34337 10.5858C4.39075 12.5384 4.39075 15.7043 6.34337 17.6569C8.29599 19.6095 11.4618 19.6095 13.4144 17.6569L19.0713 12L20.4855 13.4143L14.8287 19.0711C12.095 21.8048 7.66283 21.8048 4.92916 19.0711C2.19549 16.3374 2.19549 11.9053 4.92916 9.17161L10.586 3.51476C12.5386 1.56214 15.7045 1.56214 17.6571 3.51476C19.6097 5.46738 19.6097 8.63321 17.6571 10.5858L12.0002 16.2427C10.8287 17.4143 8.92916 17.4143 7.75759 16.2427C6.58601 15.0711 6.58601 13.1716 7.75759 12L13.4144 6.34319L14.8287 7.7574Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.8277 7.75735L12.9993 10.5858L10.1709 7.75735L8.75671 9.17156L11.5851 12L8.75671 14.8284L10.1709 16.2426L12.9993 13.4142L15.8277 16.2426L17.242 14.8284L14.4135 12L17.242 9.17156L15.8277 7.75735Z" fill="#020617"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.10852 3C7.07415 3 6.11274 3.53286 5.56453 4.41L1.81453 10.41C1.20652 11.3828 1.20652 12.6172 1.81453 13.59L5.56453 19.59C6.11274 20.4671 7.07415 21 8.10852 21H22V3H8.10852ZM7.26052 5.47C7.44326 5.17762 7.76373 5 8.10852 5H20V19H8.10852C7.76373 19 7.44326 18.8224 7.26052 18.53L3.51052 12.53C3.30785 12.2057 3.30785 11.7943 3.51052 11.47L7.26052 5.47Z" fill="#020617"/>
4
+ </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 20V22H11V20H2C2.00028 14.6667 2.00026 9.33333 2 4L9.00002 4C10.1947 4 11.2671 4.52375 12 5.35418C12.7329 4.52375 13.8053 4 15 4H22C22.0003 9.33333 22.0003 14.6667 22 20H13ZM20 18V6H15C13.8954 6 13 6.89543 13 8V18H20ZM11 18V8C11 6.89543 10.1046 6 9.00002 6H4.00002V18H11Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5 2H19C19.5523 2 20 2.44772 20 3V22.1433C20 22.4194 19.7761 22.6434 19.5 22.6434C19.4061 22.6434 19.314 22.6168 19.2344 22.5669L12 18.0313L4.76559 22.5669C4.53163 22.7136 4.22306 22.6429 4.07637 22.4089C4.02647 22.3293 4 22.2373 4 22.1433V3C4 2.44772 4.44772 2 5 2ZM18 4H6V19.4324L12 15.6707L18 19.4324V4Z" fill="#020617"/>
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="M4 18V14.3C4 13.4716 3.32843 12.8 2.5 12.8H2V11.2H2.5C3.32843 11.2 4 10.5284 4 9.7V6C4 4.34315 5.34315 3 7 3H8V5H7C6.44772 5 6 5.44772 6 6V10.1C6 10.9858 5.42408 11.7372 4.62623 12C5.42408 12.2628 6 13.0142 6 13.9V18C6 18.5523 6.44772 19 7 19H8V21H7C5.34315 21 4 19.6569 4 18ZM20 14.3V18C20 19.6569 18.6569 21 17 21H16V19H17C17.5523 19 18 18.5523 18 18V13.9C18 13.0142 18.5759 12.2628 19.3738 12C18.5759 11.7372 18 10.9858 18 10.1V6C18 5.44772 17.5523 5 17 5H16V3H17C18.6569 3 20 4.34315 20 6V9.7C20 10.5284 20.6716 11.2 21.5 11.2H22V12.8H21.5C20.6716 12.8 20 13.4716 20 14.3Z" fill="#020617"/>
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 fill-rule="evenodd" clip-rule="evenodd" d="M22.0049 6C22.0049 4.34315 20.6618 3 19.0049 3H5.00494C3.34809 3 2.00494 4.34314 2.00494 6L2.00494 18.0001C2.00494 19.6569 3.34809 21.0001 5.00494 21.0001H19.0049C20.6618 21.0001 22.0049 19.6569 22.0049 18.0001V6ZM4.00494 12H20.0049V18C20.0049 18.5523 19.5572 19 19.0049 19H5.00494C4.45266 19 4.00494 18.5523 4.00494 18V12ZM20.0049 6.00002V8.00002H4.00494V6.00002C4.00494 5.44774 4.45266 5.00002 5.00494 5.00002H19.0049C19.5572 5.00002 20.0049 5.44774 20.0049 6.00002Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8 10H11V7H13V10H16V12H13V15H11V12H8V10Z" fill="#020617"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M14 3H10C5.58172 3 2 6.58172 2 11C2 17.5 9 20.5 14 22.5V19C18.4183 19 22 15.4183 22 11C22 6.58172 18.4183 3 14 3ZM20 11C20 14.3137 17.3137 17 14 17H12V19.4798C6.46208 16.9656 4 14.61 4 11C4 7.68629 6.68629 5 10 5H14C17.3137 5 20 7.68629 20 11Z" fill="#020617"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10 3H14C18.4183 3 22 6.58172 22 11C22 15.4183 18.4183 19 14 19V22.5C9 20.5 2 17.5 2 11C2 6.58172 5.58172 3 10 3ZM12 17H14C17.3137 17 20 14.3137 20 11C20 7.68629 17.3137 5 14 5H10C6.68629 5 4 7.68629 4 11C4 14.61 6.46208 16.9656 12 19.4798V17Z" fill="#020617"/>
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 fill-rule="evenodd" clip-rule="evenodd" d="M11.5949 17.985C10.8028 18.4143 9.99269 18.8 9.2 19.1523C8.51254 19.4578 7.83817 19.7382 7.2 20V16.7692C3.22353 16.7692 0 13.463 0 9.38462C0 5.3062 3.22353 2 7.2 2H10.8C14.315 2 17.2417 4.58342 17.8736 8H18.4C21.4928 8 24 10.5715 24 13.7436C24 16.9157 21.55 19.4872 18.4 19.4872V22C18.4 22 17.4991 21.6535 16.4 21.1571C15.5614 20.7783 14.6074 20.3122 13.85 19.8462C13.0981 19.3835 12.2817 18.7774 11.5949 17.985ZM9.2 14.7692H7.2C4.37553 14.7692 2 12.4065 2 9.38462C2 6.36273 4.37553 4 7.2 4H10.8C13.1754 4 15.2332 5.67111 15.8276 8H15.6C12.5072 8 10 10.5715 10 13.7436C10 14.7114 10.1955 15.5565 10.5169 16.2943C10.0858 16.5244 9.64507 16.7433 9.2 16.9529V14.7692ZM18.4 17.4872H16.4V18.9494C15.8595 18.6871 15.3323 18.41 14.8982 18.1428C13.355 17.1932 12 15.8654 12 13.7436C12 11.628 13.6592 10 15.6 10H18.4C20.3408 10 22 11.628 22 13.7436C22 15.8727 20.3848 17.4872 18.4 17.4872Z" fill="#020617"/>
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="M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20ZM11.0026 16L6.75999 11.7574L8.17421 10.3431L11.0026 13.1716L16.6595 7.51472L18.0737 8.92893L11.0026 16Z" fill="#020617"/>
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="M10.0007 15L19 6L20.5 7.5L10.0007 17.9993L3.5 11.5L5 10L10.0007 15Z" fill="#020617"/>
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="M12 13L17 8L18.5 9.5L11.9997 15.9999L5.5 9.5L7 8L12 13Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11 12L16 17L14.5 18.5L8.00006 11.9997L14.5 5.49995L16 6.99995L11 12Z" fill="#020617"/>
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 12L8.00003 6.99995L9.50003 5.49995L15.9999 12.0003L9.50003 18.5L8.00003 17L13 12Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9 10.9999L12 7.9999L15 10.9999L16.5 9.4999L12.0003 5L7.5 9.4999L9 10.9999Z" fill="#020617"/>
3
+ <path d="M15 13L12 16L9 13L7.5 14.5L11.9997 18.9999L16.5 14.5L15 13Z" fill="#020617"/>
4
+ </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="M12 10.9999L7 15.9999L5.5 14.4999L12.0003 8L18.5 14.4999L17 15.9999L12 10.9999Z" fill="#020617"/>
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 fill-rule="evenodd" clip-rule="evenodd" d="M5 12C5 15.866 8.13401 19 12 19C15.866 19 19 15.866 19 12C19 8.13401 15.866 5 12 5C8.134 5 5 8.134 5 12ZM3 12C3 16.9705 7.02944 21 12 21C16.9705 21 21 16.9705 21 12C21 7.02944 16.9705 3 12 3C7.02944 3 3 7.02944 3 12Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16 16V21H3L3 7.9925L7.9998 8V3L20.9998 3L20.9972 16L16 16ZM14 16L7.9998 16L7.9998 10L5 10L5 19H14V16ZM18.9972 14L18.9996 5L9.9998 5L9.9998 14L18.9972 14Z" fill="#020617"/>
3
+ <path d="M16.5 7L14 9.5L12.5 8L11 9.5L14 12.5L18 8.5L16.5 7Z" fill="#020617"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16 16V21H3L3 7.9925L7.9998 8V3L20.9998 3L20.9972 16L16 16ZM14 16L7.9998 16L7.9998 10L5 10L5 19H14V16ZM18.9972 14L18.9996 5L9.9998 5L9.9998 14L18.9972 14Z" fill="#020617"/>
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="M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20ZM13 12H17V14H11V7H13V12Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16 13L12 17L8 13L11 13V9H13V13L16 13Z" fill="#020617"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 21H16.5C20.0899 21 23 18.0899 23 14.5C23 10.982 20.2051 8.11671 16.7146 8.00348C15.2131 5.59939 12.5433 4 9.5 4C4.80558 4 1 7.80558 1 12.5C1 17.1944 4.80558 21 9.5 21ZM3 12.5C3 8.91015 5.91015 6 9.5 6C12.2429 6 14.589 7.69894 15.5433 10.1019C15.8516 10.0352 16.1717 10 16.5 10C18.9853 10 21 12.0147 21 14.5C21 16.9853 18.9853 19 16.5 19H9.5C5.91015 19 3 16.0899 3 12.5Z" fill="#020617"/>
4
+ </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
+ <path d="M9 14L6 11L9 8L9 10H13V12H9L9 14Z" fill="#020617"/>
3
+ <path d="M15 14L15 12L18 15L15 18L15 16H11V14H15Z" fill="#020617"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M23 14.5C23 18.0899 20.0899 21 16.5 21H9.5C4.80558 21 1 17.1944 1 12.5C1 7.80558 4.80558 4 9.5 4C12.5433 4 15.2131 5.59939 16.7146 8.00348C20.2051 8.11671 23 10.982 23 14.5ZM9.5 6C5.91015 6 3 8.91015 3 12.5C3 16.0899 5.91015 19 9.5 19H16.5C18.9853 19 21 16.9853 21 14.5C21 12.0147 18.9853 10 16.5 10C16.1717 10 15.8516 10.0352 15.5433 10.1019C14.589 7.69894 12.2429 6 9.5 6Z" fill="#020617"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16 14L12 10L8 14H11V18H13V14L16 14Z" fill="#020617"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M23 14.5C23 18.0899 20.0899 21 16.5 21H9.5C4.80558 21 1 17.1944 1 12.5C1 7.80558 4.80558 4 9.5 4C12.5433 4 15.2131 5.59939 16.7146 8.00348C20.2051 8.11671 23 10.982 23 14.5ZM9.5 6C5.91015 6 3 8.91015 3 12.5C3 16.0899 5.91015 19 9.5 19H16.5C18.9853 19 21 16.9853 21 14.5C21 12.0147 18.9853 10 16.5 10C16.1717 10 15.8516 10.0352 15.5433 10.1019C14.589 7.69894 12.2429 6 9.5 6Z" fill="#020617"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.79291 11.7071L10.5858 13.5L8.79291 15.2929L10.2071 16.7071L12 14.9142L13.7929 16.7071L15.2071 15.2929L13.4142 13.5L15.2071 11.7071L13.7929 10.2929L12 12.0858L10.2071 10.2929L8.79291 11.7071Z" fill="#020617"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M16.5 21H9.5C4.80558 21 1 17.1944 1 12.5C1 7.80558 4.80558 4 9.5 4C12.5433 4 15.2131 5.59939 16.7146 8.00348C20.2051 8.11671 23 10.982 23 14.5C23 18.0899 20.0899 21 16.5 21ZM9.5 6C5.91015 6 3 8.91015 3 12.5C3 16.0899 5.91015 19 9.5 19H16.5C18.9853 19 21 16.9853 21 14.5C21 12.0147 18.9853 10 16.5 10C16.1717 10 15.8516 10.0352 15.5433 10.1019C14.589 7.69894 12.2429 6 9.5 6Z" fill="#020617"/>
4
+ </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="M12 1L21.5 6.5V17.5L12 23L2.5 17.5V6.5L12 1ZM12 3.311L4.5 7.65311V16.3469L12 20.689L19.5 16.3469V7.65311L12 3.311ZM12 16C9.79086 16 8 14.2091 8 12C8 9.79086 9.79086 8 12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16ZM12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14Z" fill="#020617"/>
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="M3 3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3ZM4 5V19H20V5H4ZM12 15H18V17H12V15ZM8.66685 12L5.83842 9.17157L7.25264 7.75736L11.4953 12L7.25264 16.2426L5.83842 14.8284L8.66685 12Z" fill="#020617"/>
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="M10 8H14V6.5C14 4.567 15.567 3 17.5 3C19.433 3 21 4.567 21 6.5C21 8.433 19.433 10 17.5 10H16V14H17.5C19.433 14 21 15.567 21 17.5C21 19.433 19.433 21 17.5 21C15.567 21 14 19.433 14 17.5V16H10V17.5C10 19.433 8.433 21 6.5 21C4.567 21 3 19.433 3 17.5C3 15.567 4.567 14 6.5 14H8V10H6.5C4.567 10 3 8.433 3 6.5C3 4.567 4.567 3 6.5 3C8.433 3 10 4.567 10 6.5V8ZM8 8V6.5C8 5.67157 7.32843 5 6.5 5C5.67157 5 5 5.67157 5 6.5C5 7.32843 5.67157 8 6.5 8H8ZM8 16H6.5C5.67157 16 5 16.6716 5 17.5C5 18.3284 5.67157 19 6.5 19C7.32843 19 8 18.3284 8 17.5V16ZM16 8H17.5C18.3284 8 19 7.32843 19 6.5C19 5.67157 18.3284 5 17.5 5C16.6716 5 16 5.67157 16 6.5V8ZM16 16V17.5C16 18.3284 16.6716 19 17.5 19C18.3284 19 19 18.3284 19 17.5C19 16.6716 18.3284 16 17.5 16H16ZM10 10V14H14V10H10Z" fill="#020617"/>
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="M12 1L21.5 6.5V17.5L12 23L2.5 17.5V6.5L12 1ZM5.49388 7.0777L12.0001 10.8444L18.5062 7.07774L12 3.311L5.49388 7.0777ZM4.5 8.81329V16.3469L11.0001 20.1101V12.5765L4.5 8.81329ZM13.0001 20.11L19.5 16.3469V8.81337L13.0001 12.5765V20.11Z" fill="#020617"/>
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="M18 11V13H6V11H18Z" fill="#020617"/>
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 fill-rule="evenodd" clip-rule="evenodd" d="M6.9998 6H3V22H17L16.9998 18H20.9998V6L16.9998 2H7L6.9998 6ZM5.00019 20L5.00242 8H12V11H14.9998V20H5.00019ZM16.9998 16H18.9998V7H16V4H8.99982V6H13L16.9998 10V16Z" fill="#020617"/>
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 fill-rule="evenodd" clip-rule="evenodd" d="M7.00002 2H17L21 6V18H17C17 18.531 17 22 17 22H3V6H7.00002V2ZM7.00002 18H15V20H5.00002V8H7.00002V18ZM9.00244 4L9.00021 16H18.9998V7H16V4H9.00244Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11 13V10H13V13H16V15H13V18H11V15H8V13H11Z" fill="#020617"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M15 2L19.9997 7C19.9998 12 19.9999 17 20 22H4V2H15ZM14 4H6V20H18V8H14V4Z" fill="#020617"/>
4
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8 7H11V9H8V7Z" fill="#020617"/>
3
+ <path d="M8 11H16V13H8V11Z" fill="#020617"/>
4
+ <path d="M8 15H16V17H8V15Z" fill="#020617"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M20 8V20.9932C20 20.9955 20 21.9977 20 22H4V2H13.9968L20 8ZM18 9H13V4H6V20H18V9Z" fill="#020617"/>
6
+ </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 fill-rule="evenodd" clip-rule="evenodd" d="M20 8V20.9932C20 20.9955 20 21.9977 20 22H4V2H13.9968L20 8ZM18 9H13V4H6V20H18V9Z" fill="#020617"/>
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
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7 2C9.76142 2 12 4.23858 12 7C12 9.76142 9.76142 12 7 12H17H22V17H17V22H12V17H7C5.61929 17 4.5 15.8807 4.5 14.5C4.5 13.12 5.6181 12.0012 6.99779 12H2V2H7ZM10 7C10 8.65685 8.65685 10 7 10H4V4L7 4C8.65685 4 10 5.34315 10 7ZM7 14C6.72386 14 6.5 14.2239 6.5 14.5C6.5 14.7761 6.72386 15 7 15H14V21H15V15H20V14H7Z" fill="#020617"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7 17C8.38071 17 9.5 18.1193 9.5 19.5C9.5 20.8807 8.38071 22 7 22H2V17H7ZM4 19H7C7.27614 19 7.5 19.2239 7.5 19.5C7.5 19.7761 7.27614 20 7 20H4V19Z" fill="#020617"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M17 12C19.7614 12 22 9.76142 22 7V2H12V7C12 9.76142 14.2386 12 17 12ZM14 7C14 8.65685 15.3431 10 17 10C18.6569 10 20 8.65685 20 7V4H14V7Z" fill="#020617"/>
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="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 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4ZM12 11C14 11 15.6667 11.3333 17 12C17 14.7614 14.7614 17 12 17C9.23858 17 7 14.7614 7 12C8.33333 11.3333 10 11 12 11ZM8.5 7C9.70968 7 10.7187 7.85917 10.9501 9.00057H6.04989C6.28131 7.85917 7.29032 7 8.5 7ZM15.5 7C16.7097 7 17.7187 7.85917 17.9501 9.00057H13.0499C13.2813 7.85917 14.2903 7 15.5 7Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8 2H6V5.12602C4.27477 5.57006 3 7.13616 3 9C3 10.8638 4.27477 12.4299 6 12.874V22H8V12.874C9.72523 12.4299 11 10.8638 11 9C11 7.13616 9.72523 5.57006 8 5.12602V2ZM9 9C9 10.1046 8.10457 11 7 11C5.89543 11 5 10.1046 5 9C5 7.89543 5.89543 7 7 7C8.10457 7 9 7.89543 9 9Z" fill="#020617"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18 2H16V11.126C14.2748 11.5701 13 13.1362 13 15C13 16.8638 14.2748 18.4299 16 18.874V22H18V18.874C19.7252 18.4299 21 16.8638 21 15C21 13.1362 19.7252 11.5701 18 11.126V2ZM17 17C18.1046 17 19 16.1046 19 15C19 13.8954 18.1046 13 17 13C15.8954 13 15 13.8954 15 15C15 16.1046 15.8954 17 17 17Z" fill="#020617"/>
4
+ </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="M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20ZM11 15H13V17H11V15ZM11 7H13V13H11V7Z" fill="#020617"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M20 11H22V3H14V5H18.564C17.8869 6.4713 16.8101 7.81497 15.5075 8.8609C13.8341 10.2046 11.861 11 10 11V13C12.4121 13 14.8139 11.9829 16.7598 10.4204C18.0594 9.37677 19.1879 8.06456 20 6.59044V11Z" fill="black"/>
3
+ <path d="M7 7H11V5H5V19H19V14H17V17H7V7Z" fill="black"/>
4
+ </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.8827 19.2968C16.1814 20.3755 14.1638 21.0002 12.0003 21.0002C6.60812 21.0002 2.12215 17.1204 1.18164 12.0002C1.61832 9.62283 2.81932 7.5129 4.52047 5.93457L1.39366 2.80777L2.80788 1.39355L22.6069 21.1925L21.1927 22.6068L17.8827 19.2968ZM5.9356 7.3497C4.60673 8.56015 3.6378 10.1672 3.22278 12.0002C4.14022 16.0521 7.7646 19.0002 12.0003 19.0002C13.5997 19.0002 15.112 18.5798 16.4243 17.8384L14.396 15.8101C13.7023 16.2472 12.8808 16.5002 12.0003 16.5002C9.51498 16.5002 7.50026 14.4854 7.50026 12.0002C7.50026 11.1196 7.75317 10.2981 8.19031 9.60442L5.9356 7.3497ZM12.9139 14.328L9.67246 11.0866C9.5613 11.3696 9.50026 11.6777 9.50026 12.0002C9.50026 13.3809 10.6196 14.5002 12.0003 14.5002C12.3227 14.5002 12.6309 14.4391 12.9139 14.328ZM20.8068 16.5925L19.376 15.1617C20.0319 14.2268 20.5154 13.1586 20.7777 12.0002C19.8603 7.94818 16.2359 5.00016 12.0003 5.00016C11.1544 5.00016 10.3329 5.11773 9.55249 5.33818L7.97446 3.76015C9.22127 3.26959 10.5793 3.00016 12.0003 3.00016C17.3924 3.00016 21.8784 6.87993 22.8189 12.0002C22.5067 13.6998 21.8038 15.2628 20.8068 16.5925ZM11.7229 7.50857C11.8146 7.503 11.9071 7.50016 12.0003 7.50016C14.4855 7.50016 16.5003 9.51488 16.5003 12.0002C16.5003 12.0933 16.4974 12.1858 16.4919 12.2775L11.7229 7.50857Z" fill="#020617"/>
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="M12.0003 3C17.3924 3 21.8784 6.87976 22.8189 12C21.8784 17.1202 17.3924 21 12.0003 21C6.60812 21 2.12215 17.1202 1.18164 12C2.12215 6.87976 6.60812 3 12.0003 3ZM12.0003 19C16.2359 19 19.8603 16.052 20.7777 12C19.8603 7.94803 16.2359 5 12.0003 5C7.7646 5 4.14022 7.94803 3.22278 12C4.14022 16.052 7.7646 19 12.0003 19ZM12.0003 16.5C9.51498 16.5 7.50026 14.4853 7.50026 12C7.50026 9.51472 9.51498 7.5 12.0003 7.5C14.4855 7.5 16.5003 9.51472 16.5003 12C16.5003 14.4853 14.4855 16.5 12.0003 16.5ZM12.0003 14.5C13.381 14.5 14.5003 13.3807 14.5003 12C14.5003 10.6193 13.381 9.5 12.0003 9.5C10.6196 9.5 9.50026 10.6193 9.50026 12C9.50026 13.3807 10.6196 14.5 12.0003 14.5Z" fill="#020617"/>
3
+ </svg>