@goodhood-web/ui 0.0.6 → 1.0.0-development.1

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 (293) hide show
  1. package/{src/index.ts → index.d.ts} +1 -24
  2. package/index.js +48 -0
  3. package/index.mjs +2341 -0
  4. package/lib/BaseButton/BaseButton.d.ts +11 -0
  5. package/lib/Card/Card.d.ts +3 -0
  6. package/lib/Card/Card.types.d.ts +10 -0
  7. package/lib/Card/Card.utils.d.ts +3 -0
  8. package/lib/Card/CardBody/CardBody.d.ts +3 -0
  9. package/lib/Card/CardBody/CardBody.types.d.ts +5 -0
  10. package/lib/Card/CardHeader/CardHeader.d.ts +3 -0
  11. package/lib/Card/CardHeader/CardHeader.type.d.ts +12 -0
  12. package/lib/ContentCreatorButton/ContentCreatorButton.d.ts +3 -0
  13. package/{src/lib/ContentCreatorButton/ContentCreatorButton.types.ts → lib/ContentCreatorButton/ContentCreatorButton.types.d.ts} +2 -3
  14. package/lib/Divider/Divider.d.ts +3 -0
  15. package/lib/Divider/Divider.types.d.ts +6 -0
  16. package/lib/Fieldset/Fieldset.d.ts +3 -0
  17. package/lib/Fieldset/Fieldset.types.d.ts +8 -0
  18. package/lib/Form/Form.d.ts +3 -0
  19. package/lib/Form/Form.types.d.ts +10 -0
  20. package/lib/Icon/Icon.d.ts +4 -0
  21. package/lib/Icon/Icon.types.d.ts +18 -0
  22. package/lib/Icon/icons/24x24/index.d.ts +130 -0
  23. package/lib/Icon/icons/32x32/index.d.ts +265 -0
  24. package/lib/Icon/icons/index.d.ts +395 -0
  25. package/lib/IconButton/IconButton.d.ts +3 -0
  26. package/{src/lib/IconButton/IconButton.types.ts → lib/IconButton/IconButton.types.d.ts} +12 -10
  27. package/lib/IconButton/utils.d.ts +3 -0
  28. package/lib/Image/Image.d.ts +3 -0
  29. package/lib/Image/Image.type.d.ts +5 -0
  30. package/lib/LabelPill/LabelPill.d.ts +3 -0
  31. package/lib/LabelPill/LabelPill.types.d.ts +4 -0
  32. package/lib/Legend/Legend.d.ts +3 -0
  33. package/lib/Legend/Legend.types.d.ts +5 -0
  34. package/lib/MenuItem/MenuItem.d.ts +3 -0
  35. package/lib/MenuItem/MenuItem.types.d.ts +9 -0
  36. package/lib/NotificationBubble/NotificationBubble.d.ts +3 -0
  37. package/{src/lib/NotificationBubble/NotificationBubble.types.tsx → lib/NotificationBubble/NotificationBubble.types.d.ts} +2 -3
  38. package/lib/Thumbnail/Thumbnail.d.ts +3 -0
  39. package/{src/lib/Thumbnail/Thumbnail.type.tsx → lib/Thumbnail/Thumbnail.type.d.ts} +6 -9
  40. package/lib/Toggle/Toggle.d.ts +3 -0
  41. package/{src/lib/Toggle/Toggle.types.ts → lib/Toggle/Toggle.types.d.ts} +2 -3
  42. package/lib/ToggleInput/ToggleInput.d.ts +3 -0
  43. package/{src/lib/ToggleInput/ToggleInput.types.ts → lib/ToggleInput/ToggleInput.types.d.ts} +3 -5
  44. package/lib/Typography/Typography.d.ts +3 -0
  45. package/lib/Typography/Typography.types.d.ts +8 -0
  46. package/package.json +3 -2
  47. package/style.css +1 -0
  48. package/.babelrc +0 -12
  49. package/.eslintrc.json +0 -25
  50. package/.storybook/main.ts +0 -31
  51. package/.storybook/manager-head.html +0 -1
  52. package/.storybook/manager.ts +0 -7
  53. package/.storybook/nebenanTheme.ts +0 -17
  54. package/.storybook/preview.ts +0 -9
  55. package/.stylelintrc.json +0 -14
  56. package/README.md +0 -7
  57. package/__mocks__/svg.js +0 -2
  58. package/images/favicon.ico +0 -0
  59. package/images/logo.svg +0 -11
  60. package/jest.config.ts +0 -16
  61. package/project.json +0 -95
  62. package/release.config.js +0 -30
  63. package/src/lib/BaseButton/BaseButton.module.scss +0 -11
  64. package/src/lib/BaseButton/BaseButton.spec.tsx +0 -12
  65. package/src/lib/BaseButton/BaseButton.stories.tsx +0 -26
  66. package/src/lib/BaseButton/BaseButton.tsx +0 -39
  67. package/src/lib/Card/Card.module.scss +0 -15
  68. package/src/lib/Card/Card.spec.tsx +0 -15
  69. package/src/lib/Card/Card.stories.tsx +0 -159
  70. package/src/lib/Card/Card.tsx +0 -31
  71. package/src/lib/Card/Card.types.ts +0 -12
  72. package/src/lib/Card/Card.utils.spec.tsx +0 -51
  73. package/src/lib/Card/Card.utils.ts +0 -23
  74. package/src/lib/Card/CardBody/CardBody.module.scss +0 -4
  75. package/src/lib/Card/CardBody/CardBody.spec.tsx +0 -15
  76. package/src/lib/Card/CardBody/CardBody.stories.tsx +0 -108
  77. package/src/lib/Card/CardBody/CardBody.tsx +0 -9
  78. package/src/lib/Card/CardBody/CardBody.types.ts +0 -4
  79. package/src/lib/Card/CardHeader/CardHeader.module.scss +0 -12
  80. package/src/lib/Card/CardHeader/CardHeader.spec.tsx +0 -72
  81. package/src/lib/Card/CardHeader/CardHeader.stories.tsx +0 -77
  82. package/src/lib/Card/CardHeader/CardHeader.tsx +0 -29
  83. package/src/lib/Card/CardHeader/CardHeader.type.ts +0 -14
  84. package/src/lib/ContentCreatorButton/ContentCreatorButton.module.scss +0 -14
  85. package/src/lib/ContentCreatorButton/ContentCreatorButton.spec.tsx +0 -14
  86. package/src/lib/ContentCreatorButton/ContentCreatorButton.stories.tsx +0 -29
  87. package/src/lib/ContentCreatorButton/ContentCreatorButton.tsx +0 -35
  88. package/src/lib/Divider/Divider.module.scss +0 -10
  89. package/src/lib/Divider/Divider.spec.tsx +0 -46
  90. package/src/lib/Divider/Divider.stories.tsx +0 -35
  91. package/src/lib/Divider/Divider.tsx +0 -17
  92. package/src/lib/Divider/Divider.types.ts +0 -6
  93. package/src/lib/Fieldset/Fieldset.module.scss +0 -3
  94. package/src/lib/Fieldset/Fieldset.spec.tsx +0 -68
  95. package/src/lib/Fieldset/Fieldset.stories.tsx +0 -60
  96. package/src/lib/Fieldset/Fieldset.tsx +0 -28
  97. package/src/lib/Fieldset/Fieldset.types.ts +0 -7
  98. package/src/lib/Form/Form.spec.tsx +0 -15
  99. package/src/lib/Form/Form.stories.tsx +0 -53
  100. package/src/lib/Form/Form.tsx +0 -14
  101. package/src/lib/Form/Form.types.ts +0 -11
  102. package/src/lib/Icon/Icon.module.scss +0 -7
  103. package/src/lib/Icon/Icon.spec.tsx +0 -33
  104. package/src/lib/Icon/Icon.stories.tsx +0 -88
  105. package/src/lib/Icon/Icon.tsx +0 -29
  106. package/src/lib/Icon/Icon.types.ts +0 -23
  107. package/src/lib/Icon/icons/24x24/index.ts +0 -89
  108. package/src/lib/Icon/icons/24x24/svg/arrow_left.svg +0 -1
  109. package/src/lib/Icon/icons/24x24/svg/arrow_right.svg +0 -1
  110. package/src/lib/Icon/icons/24x24/svg/bookmark.svg +0 -1
  111. package/src/lib/Icon/icons/24x24/svg/bookmarked.svg +0 -1
  112. package/src/lib/Icon/icons/24x24/svg/burger_menu.svg +0 -1
  113. package/src/lib/Icon/icons/24x24/svg/camera.svg +0 -1
  114. package/src/lib/Icon/icons/24x24/svg/checkmark.svg +0 -1
  115. package/src/lib/Icon/icons/24x24/svg/checkmark_circle.svg +0 -1
  116. package/src/lib/Icon/icons/24x24/svg/chevron_down.svg +0 -1
  117. package/src/lib/Icon/icons/24x24/svg/chevron_left.svg +0 -1
  118. package/src/lib/Icon/icons/24x24/svg/chevron_right.svg +0 -1
  119. package/src/lib/Icon/icons/24x24/svg/chevron_up.svg +0 -1
  120. package/src/lib/Icon/icons/24x24/svg/comment_bubble.svg +0 -1
  121. package/src/lib/Icon/icons/24x24/svg/cross.svg +0 -1
  122. package/src/lib/Icon/icons/24x24/svg/cross_circle.svg +0 -1
  123. package/src/lib/Icon/icons/24x24/svg/envelope.svg +0 -1
  124. package/src/lib/Icon/icons/24x24/svg/event_calendar.svg +0 -1
  125. package/src/lib/Icon/icons/24x24/svg/external_link.svg +0 -1
  126. package/src/lib/Icon/icons/24x24/svg/eye.svg +0 -1
  127. package/src/lib/Icon/icons/24x24/svg/eye_crossed.svg +0 -1
  128. package/src/lib/Icon/icons/24x24/svg/filter.svg +0 -1
  129. package/src/lib/Icon/icons/24x24/svg/globe.svg +0 -1
  130. package/src/lib/Icon/icons/24x24/svg/heart.svg +0 -1
  131. package/src/lib/Icon/icons/24x24/svg/image.svg +0 -1
  132. package/src/lib/Icon/icons/24x24/svg/loudspeaker.svg +0 -1
  133. package/src/lib/Icon/icons/24x24/svg/marketplace.svg +0 -1
  134. package/src/lib/Icon/icons/24x24/svg/more_dots.svg +0 -1
  135. package/src/lib/Icon/icons/24x24/svg/more_dots_alt.svg +0 -1
  136. package/src/lib/Icon/icons/24x24/svg/mute.svg +0 -1
  137. package/src/lib/Icon/icons/24x24/svg/notification_bell.svg +0 -1
  138. package/src/lib/Icon/icons/24x24/svg/paperclip.svg +0 -1
  139. package/src/lib/Icon/icons/24x24/svg/pencil.svg +0 -1
  140. package/src/lib/Icon/icons/24x24/svg/pin.svg +0 -1
  141. package/src/lib/Icon/icons/24x24/svg/plus.svg +0 -1
  142. package/src/lib/Icon/icons/24x24/svg/plus_circle.svg +0 -1
  143. package/src/lib/Icon/icons/24x24/svg/privacy_lock.svg +0 -1
  144. package/src/lib/Icon/icons/24x24/svg/search.svg +0 -1
  145. package/src/lib/Icon/icons/24x24/svg/share_arrow.svg +0 -1
  146. package/src/lib/Icon/icons/24x24/svg/share_arrow_outline.svg +0 -1
  147. package/src/lib/Icon/icons/24x24/svg/sort.svg +0 -1
  148. package/src/lib/Icon/icons/24x24/svg/thanks.svg +0 -1
  149. package/src/lib/Icon/icons/24x24/svg/trash_can.svg +0 -1
  150. package/src/lib/Icon/icons/32x32/index.ts +0 -179
  151. package/src/lib/Icon/icons/32x32/svg/address_book.svg +0 -1
  152. package/src/lib/Icon/icons/32x32/svg/baby_toy.svg +0 -1
  153. package/src/lib/Icon/icons/32x32/svg/bicycle.svg +0 -1
  154. package/src/lib/Icon/icons/32x32/svg/bookmark.svg +0 -1
  155. package/src/lib/Icon/icons/32x32/svg/books.svg +0 -1
  156. package/src/lib/Icon/icons/32x32/svg/bubble_heart_filled.svg +0 -1
  157. package/src/lib/Icon/icons/32x32/svg/bubble_heart_outline.svg +0 -1
  158. package/src/lib/Icon/icons/32x32/svg/buildings.svg +0 -1
  159. package/src/lib/Icon/icons/32x32/svg/burger_menu.svg +0 -1
  160. package/src/lib/Icon/icons/32x32/svg/business.svg +0 -1
  161. package/src/lib/Icon/icons/32x32/svg/business_profile.svg +0 -1
  162. package/src/lib/Icon/icons/32x32/svg/camera.svg +0 -1
  163. package/src/lib/Icon/icons/32x32/svg/camera_crossed.svg +0 -1
  164. package/src/lib/Icon/icons/32x32/svg/car.svg +0 -1
  165. package/src/lib/Icon/icons/32x32/svg/carrot.svg +0 -1
  166. package/src/lib/Icon/icons/32x32/svg/chat.svg +0 -1
  167. package/src/lib/Icon/icons/32x32/svg/checkmark_circle.svg +0 -1
  168. package/src/lib/Icon/icons/32x32/svg/christmas_tree.svg +0 -1
  169. package/src/lib/Icon/icons/32x32/svg/clipboard.svg +0 -1
  170. package/src/lib/Icon/icons/32x32/svg/clothing.svg +0 -1
  171. package/src/lib/Icon/icons/32x32/svg/cocktail.svg +0 -1
  172. package/src/lib/Icon/icons/32x32/svg/comment_bubble.svg +0 -1
  173. package/src/lib/Icon/icons/32x32/svg/compass.svg +0 -1
  174. package/src/lib/Icon/icons/32x32/svg/computer.svg +0 -1
  175. package/src/lib/Icon/icons/32x32/svg/couch.svg +0 -1
  176. package/src/lib/Icon/icons/32x32/svg/credit_card.svg +0 -1
  177. package/src/lib/Icon/icons/32x32/svg/cross_circle.svg +0 -1
  178. package/src/lib/Icon/icons/32x32/svg/cutlery.svg +0 -1
  179. package/src/lib/Icon/icons/32x32/svg/drill_tool.svg +0 -1
  180. package/src/lib/Icon/icons/32x32/svg/email.svg +0 -1
  181. package/src/lib/Icon/icons/32x32/svg/envelope.svg +0 -1
  182. package/src/lib/Icon/icons/32x32/svg/event_calendar_check.svg +0 -1
  183. package/src/lib/Icon/icons/32x32/svg/event_calendar_date.svg +0 -1
  184. package/src/lib/Icon/icons/32x32/svg/event_calendar_plus.svg +0 -1
  185. package/src/lib/Icon/icons/32x32/svg/exchange.svg +0 -1
  186. package/src/lib/Icon/icons/32x32/svg/eye.svg +0 -1
  187. package/src/lib/Icon/icons/32x32/svg/eye_crossed.svg +0 -1
  188. package/src/lib/Icon/icons/32x32/svg/gift.svg +0 -1
  189. package/src/lib/Icon/icons/32x32/svg/group.svg +0 -1
  190. package/src/lib/Icon/icons/32x32/svg/healthcare.svg +0 -1
  191. package/src/lib/Icon/icons/32x32/svg/heart.svg +0 -1
  192. package/src/lib/Icon/icons/32x32/svg/house.svg +0 -1
  193. package/src/lib/Icon/icons/32x32/svg/image.svg +0 -1
  194. package/src/lib/Icon/icons/32x32/svg/info.svg +0 -1
  195. package/src/lib/Icon/icons/32x32/svg/invite_neighbour.svg +0 -1
  196. package/src/lib/Icon/icons/32x32/svg/key.svg +0 -1
  197. package/src/lib/Icon/icons/32x32/svg/kitchen_pot.svg +0 -1
  198. package/src/lib/Icon/icons/32x32/svg/list.svg +0 -1
  199. package/src/lib/Icon/icons/32x32/svg/log_out.svg +0 -1
  200. package/src/lib/Icon/icons/32x32/svg/loudspeaker.svg +0 -1
  201. package/src/lib/Icon/icons/32x32/svg/map.svg +0 -1
  202. package/src/lib/Icon/icons/32x32/svg/marketplace.svg +0 -1
  203. package/src/lib/Icon/icons/32x32/svg/miscellaneous_other.svg +0 -1
  204. package/src/lib/Icon/icons/32x32/svg/more_dots.svg +0 -1
  205. package/src/lib/Icon/icons/32x32/svg/more_dots_alt.svg +0 -1
  206. package/src/lib/Icon/icons/32x32/svg/music.svg +0 -1
  207. package/src/lib/Icon/icons/32x32/svg/nebenan.de.svg +0 -1
  208. package/src/lib/Icon/icons/32x32/svg/neighbour.svg +0 -1
  209. package/src/lib/Icon/icons/32x32/svg/notification_bell.svg +0 -1
  210. package/src/lib/Icon/icons/32x32/svg/organisation.svg +0 -1
  211. package/src/lib/Icon/icons/32x32/svg/paper_form_empty.svg +0 -1
  212. package/src/lib/Icon/icons/32x32/svg/paper_form_filled.svg +0 -1
  213. package/src/lib/Icon/icons/32x32/svg/paperclip.svg +0 -1
  214. package/src/lib/Icon/icons/32x32/svg/paw.svg +0 -1
  215. package/src/lib/Icon/icons/32x32/svg/pencil.svg +0 -1
  216. package/src/lib/Icon/icons/32x32/svg/pin.svg +0 -1
  217. package/src/lib/Icon/icons/32x32/svg/pins.svg +0 -1
  218. package/src/lib/Icon/icons/32x32/svg/plant.svg +0 -1
  219. package/src/lib/Icon/icons/32x32/svg/plus.svg +0 -1
  220. package/src/lib/Icon/icons/32x32/svg/plus_circle.svg +0 -1
  221. package/src/lib/Icon/icons/32x32/svg/post.svg +0 -1
  222. package/src/lib/Icon/icons/32x32/svg/privacy_lock.svg +0 -1
  223. package/src/lib/Icon/icons/32x32/svg/qr_code.svg +0 -1
  224. package/src/lib/Icon/icons/32x32/svg/search.svg +0 -1
  225. package/src/lib/Icon/icons/32x32/svg/settings_cog.svg +0 -1
  226. package/src/lib/Icon/icons/32x32/svg/shopping_bag.svg +0 -1
  227. package/src/lib/Icon/icons/32x32/svg/shopping_cart.svg +0 -1
  228. package/src/lib/Icon/icons/32x32/svg/special_place.svg +0 -1
  229. package/src/lib/Icon/icons/32x32/svg/suitcase.svg +0 -1
  230. package/src/lib/Icon/icons/32x32/svg/supporter.svg +0 -1
  231. package/src/lib/Icon/icons/32x32/svg/tennis_ball.svg +0 -1
  232. package/src/lib/Icon/icons/32x32/svg/thanks.svg +0 -1
  233. package/src/lib/Icon/icons/32x32/svg/trash_can.svg +0 -1
  234. package/src/lib/Icon/icons/32x32/svg/truck.svg +0 -1
  235. package/src/lib/Icon/icons/32x32/svg/user.svg +0 -1
  236. package/src/lib/Icon/icons/32x32/svg/user_profile.svg +0 -1
  237. package/src/lib/Icon/icons/32x32/svg/wellness.svg +0 -1
  238. package/src/lib/Icon/icons/index.ts +0 -9
  239. package/src/lib/IconButton/IconButton.module.scss +0 -37
  240. package/src/lib/IconButton/IconButton.spec.tsx +0 -56
  241. package/src/lib/IconButton/IconButton.stories.tsx +0 -36
  242. package/src/lib/IconButton/IconButton.tsx +0 -25
  243. package/src/lib/IconButton/utils.ts +0 -6
  244. package/src/lib/Image/Image.spec.tsx +0 -10
  245. package/src/lib/Image/Image.tsx +0 -7
  246. package/src/lib/Image/Image.type.tsx +0 -5
  247. package/src/lib/LabelPill/LabelPill.module.scss +0 -33
  248. package/src/lib/LabelPill/LabelPill.spec.tsx +0 -23
  249. package/src/lib/LabelPill/LabelPill.stories.tsx +0 -31
  250. package/src/lib/LabelPill/LabelPill.tsx +0 -16
  251. package/src/lib/LabelPill/LabelPill.types.ts +0 -4
  252. package/src/lib/Legend/Legend.module.scss +0 -9
  253. package/src/lib/Legend/Legend.spec.tsx +0 -35
  254. package/src/lib/Legend/Legend.stories.ts +0 -39
  255. package/src/lib/Legend/Legend.tsx +0 -19
  256. package/src/lib/Legend/Legend.types.ts +0 -5
  257. package/src/lib/MenuItem/MenuItem.module.scss +0 -73
  258. package/src/lib/MenuItem/MenuItem.spec.tsx +0 -47
  259. package/src/lib/MenuItem/MenuItem.stories.tsx +0 -97
  260. package/src/lib/MenuItem/MenuItem.tsx +0 -34
  261. package/src/lib/MenuItem/MenuItem.types.ts +0 -10
  262. package/src/lib/NotificationBubble/NotificationBubble.module.scss +0 -30
  263. package/src/lib/NotificationBubble/NotificationBubble.spec.tsx +0 -36
  264. package/src/lib/NotificationBubble/NotificationBubble.stories.tsx +0 -56
  265. package/src/lib/NotificationBubble/NotificationBubble.tsx +0 -34
  266. package/src/lib/Thumbnail/Thumbnail.module.scss +0 -68
  267. package/src/lib/Thumbnail/Thumbnail.spec.tsx +0 -51
  268. package/src/lib/Thumbnail/Thumbnail.stories.tsx +0 -242
  269. package/src/lib/Thumbnail/Thumbnail.tsx +0 -28
  270. package/src/lib/Toggle/Toggle.module.scss +0 -53
  271. package/src/lib/Toggle/Toggle.spec.tsx +0 -23
  272. package/src/lib/Toggle/Toggle.stories.tsx +0 -38
  273. package/src/lib/Toggle/Toggle.tsx +0 -32
  274. package/src/lib/ToggleInput/ToggleInput.module.scss +0 -32
  275. package/src/lib/ToggleInput/ToggleInput.spec.tsx +0 -45
  276. package/src/lib/ToggleInput/ToggleInput.stories.tsx +0 -62
  277. package/src/lib/ToggleInput/ToggleInput.tsx +0 -40
  278. package/src/lib/Typography/Typography.module.scss +0 -61
  279. package/src/lib/Typography/Typography.spec.tsx +0 -60
  280. package/src/lib/Typography/Typography.stories.tsx +0 -45
  281. package/src/lib/Typography/Typography.tsx +0 -26
  282. package/src/lib/Typography/Typography.types.ts +0 -28
  283. package/src/styles/_design-tokens.scss +0 -1
  284. package/src/styles/_fonts.scss +0 -0
  285. package/src/styles/_functions.scss +0 -17
  286. package/src/styles/_mixins.scss +0 -33
  287. package/src/styles/index.scss +0 -3
  288. package/src/styles/reset.scss +0 -67
  289. package/tsconfig.json +0 -24
  290. package/tsconfig.lib.json +0 -35
  291. package/tsconfig.spec.json +0 -20
  292. package/tsconfig.storybook.json +0 -31
  293. package/vite.config.ts +0 -57
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="m21 13-6.757 6.757a6.364 6.364 0 0 1-7.346 1.192v0a6.364 6.364 0 0 1-2.846-2.846v0a6.364 6.364 0 0 1 1.192-7.346L12.42 3.58a4.84 4.84 0 0 1 5.772-.808l.135.075A4.34 4.34 0 0 1 20.101 4.7v0a4.341 4.341 0 0 1-.814 5.012l-6.225 6.225a2.828 2.828 0 0 1-3.456.426v0a2.829 2.829 0 0 1-.97-.97v0a2.829 2.829 0 0 1 .426-3.456L14 7"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path stroke="#201649" stroke-width="1.5" d="m15 5 2.293-2.293a1 1 0 0 1 1.414 0l2.586 2.586a1 1 0 0 1 0 1.414L19 9m-4-4L4.428 15.572a2 2 0 0 0-.547 1.022l-.822 4.112a.2.2 0 0 0 .235.235l4.112-.822a2 2 0 0 0 1.022-.547L19 9m-4-4 4 4"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path stroke="#201649" stroke-width="1.5" d="M18 8c0 5.436-4.925 11.692-5.85 12.82a.192.192 0 0 1-.3 0C10.926 19.693 6 13.437 6 8a6 6 0 1 1 12 0Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M12 3.5v17M3.5 12h17"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M7 12h10m-5 5V7m9.5 5a9.5 9.5 0 1 1-19 0 9.5 9.5 0 0 1 19 0Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M16 8.5H5.5a2 2 0 0 0-2 2V18a2 2 0 0 0 2 2h13a2 2 0 0 0 2-2v-7.5a2 2 0 0 0-2-2H16Zm0 0V5c0-3-4-3-4-3v0S8 2 8 5m4 8.5v1m.75.25v0a1.06 1.06 0 0 1-1.5 0v0a1.06 1.06 0 0 1 0-1.5v0a1.06 1.06 0 0 1 1.5 0v0a1.06 1.06 0 0 1 0 1.5Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="m16 16 5 5m-3-10.5a7.5 7.5 0 1 1-15 0 7.5 7.5 0 0 1 15 0Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M3 7v11a2 2 0 0 0 2 2h11m-9-4s.745-4.204 3-6c2.787-2.22 4.5-2 9.5-2M16 3l4.646 4.646a.5.5 0 0 1 0 .708L16 13"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path stroke="#201649" stroke-width="1.5" d="m14.341 3.341 6.305 6.305a.5.5 0 0 1 0 .708l-6.305 6.305a.2.2 0 0 1-.341-.142V13.06a.484.484 0 0 0-.554-.484c-1.077.162-3.477.596-4.946 1.424-2.297 1.294-4.273 4.651-5.094 6.198-.1.189-.406.115-.406-.1.002-4.415.112-6.83 3-9.598 2.292-2.197 4.29-2.93 7.5-2.995A.509.509 0 0 0 14 7V3.483a.2.2 0 0 1 .341-.142Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M5 4.5h16M11.5 11H21m0 6.5h-6m-8-9v11m4-3-3.93 3.93a.1.1 0 0 1-.14 0L3 16.5"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path stroke="#201649" stroke-width="1.5" d="M7.5 10h-4a1 1 0 0 0-1 1v7.5a1 1 0 0 0 1 1h4m0-9.5 3.4-7.285a.372.372 0 0 1 .337-.215 2.98 2.98 0 0 1 2.968 3.25l-.193 2.116a.123.123 0 0 0 .123.134h5.087a2 2 0 0 1 1.983 2.259l-.978 7.5a2 2 0 0 1-1.983 1.741H7.5m0-9.5v9.5"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M19 6.5v13a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-13M3 6h5.5M21 6h-5.5m0 0V3.5a1 1 0 0 0-1-1h-5a1 1 0 0 0-1 1V6m7 0h-7m6 11.5V10m-5 7.5V10"/></svg>
@@ -1,179 +0,0 @@
1
- import AddressBook from './svg/address_book.svg?react';
2
- import BabyToy from './svg/baby_toy.svg?react';
3
- import Bicycle from './svg/bicycle.svg?react';
4
- import Bookmark from './svg/bookmark.svg?react';
5
- import Books from './svg/books.svg?react';
6
- import BubbleHeartFilled from './svg/bubble_heart_filled.svg?react';
7
- import BubbleHeartOutline from './svg/bubble_heart_outline.svg?react';
8
- import Buildings from './svg/buildings.svg?react';
9
- import BurgerMenu from './svg/burger_menu.svg?react';
10
- import Business from './svg/business.svg?react';
11
- import BusinessProfile from './svg/business_profile.svg?react';
12
- import Camera from './svg/camera.svg?react';
13
- import CameraCrossed from './svg/camera_crossed.svg?react';
14
- import Car from './svg/car.svg?react';
15
- import Carrot from './svg/carrot.svg?react';
16
- import Chat from './svg/chat.svg?react';
17
- import CheckmarkCircle from './svg/checkmark_circle.svg?react';
18
- import ChristmasTree from './svg/christmas_tree.svg?react';
19
- import Clipboard from './svg/clipboard.svg?react';
20
- import Clothing from './svg/clothing.svg?react';
21
- import Cocktail from './svg/cocktail.svg?react';
22
- import CommentBubble from './svg/comment_bubble.svg?react';
23
- import Compass from './svg/compass.svg?react';
24
- import Computer from './svg/computer.svg?react';
25
- import Couch from './svg/couch.svg?react';
26
- import CreditCard from './svg/credit_card.svg?react';
27
- import CrossCircle from './svg/cross_circle.svg?react';
28
- import Cutlery from './svg/cutlery.svg?react';
29
- import DrillTool from './svg/drill_tool.svg?react';
30
- import Email from './svg/email.svg?react';
31
- import Envelope from './svg/envelope.svg?react';
32
- import EventCalendarCheck from './svg/event_calendar_check.svg?react';
33
- import EventCalendarDate from './svg/event_calendar_date.svg?react';
34
- import EventCalendarPlus from './svg/event_calendar_plus.svg?react';
35
- import Exchange from './svg/exchange.svg?react';
36
- import Eye from './svg/eye.svg?react';
37
- import EyeCrossed from './svg/eye_crossed.svg?react';
38
- import Gift from './svg/gift.svg?react';
39
- import Group from './svg/group.svg?react';
40
- import Healthcare from './svg/healthcare.svg?react';
41
- import Heart from './svg/heart.svg?react';
42
- import House from './svg/house.svg?react';
43
- import Image from './svg/image.svg?react';
44
- import Info from './svg/info.svg?react';
45
- import InviteNeighbour from './svg/invite_neighbour.svg?react';
46
- import Key from './svg/key.svg?react';
47
- import KitchenPot from './svg/kitchen_pot.svg?react';
48
- import List from './svg/list.svg?react';
49
- import LogOut from './svg/log_out.svg?react';
50
- import Loudspeaker from './svg/loudspeaker.svg?react';
51
- import Map from './svg/map.svg?react';
52
- import Marketplace from './svg/marketplace.svg?react';
53
- import MiscellaneousOther from './svg/miscellaneous_other.svg?react';
54
- import MoreDots from './svg/more_dots.svg?react';
55
- import MoreDotsAlt from './svg/more_dots_alt.svg?react';
56
- import Music from './svg/music.svg?react';
57
- import NebenanDe from './svg/nebenan.de.svg?react';
58
- import Neighbour from './svg/neighbour.svg?react';
59
- import NotificationBell from './svg/notification_bell.svg?react';
60
- import Organisation from './svg/organisation.svg?react';
61
- import PaperFormEmpty from './svg/paper_form_empty.svg?react';
62
- import PaperFormFilled from './svg/paper_form_filled.svg?react';
63
- import Paperclip from './svg/paperclip.svg?react';
64
- import Paw from './svg/paw.svg?react';
65
- import Pencil from './svg/pencil.svg?react';
66
- import Pin from './svg/pin.svg?react';
67
- import Pins from './svg/pins.svg?react';
68
- import Plant from './svg/plant.svg?react';
69
- import Plus from './svg/plus.svg?react';
70
- import PlusCircle from './svg/plus_circle.svg?react';
71
- import Post from './svg/post.svg?react';
72
- import PrivacyLock from './svg/privacy_lock.svg?react';
73
- import QrCode from './svg/qr_code.svg?react';
74
- import Search from './svg/search.svg?react';
75
- import SettingsCog from './svg/settings_cog.svg?react';
76
- import ShoppingBag from './svg/shopping_bag.svg?react';
77
- import ShoppingCart from './svg/shopping_cart.svg?react';
78
- import SpecialPlace from './svg/special_place.svg?react';
79
- import Suitcase from './svg/suitcase.svg?react';
80
- import Supporter from './svg/supporter.svg?react';
81
- import TennisBall from './svg/tennis_ball.svg?react';
82
- import Thanks from './svg/thanks.svg?react';
83
- import TrashCan from './svg/trash_can.svg?react';
84
- import Truck from './svg/truck.svg?react';
85
- import User from './svg/user.svg?react';
86
- import UserProfile from './svg/user_profile.svg?react';
87
- import Wellness from './svg/wellness.svg?react';
88
-
89
- const IconsMap = {
90
- address_book: AddressBook,
91
- baby_toy: BabyToy,
92
- bicycle: Bicycle,
93
- bookmark: Bookmark,
94
- books: Books,
95
- bubble_heart_filled: BubbleHeartFilled,
96
- bubble_heart_outline: BubbleHeartOutline,
97
- buildings: Buildings,
98
- burger_menu: BurgerMenu,
99
- business: Business,
100
- business_profile: BusinessProfile,
101
- camera: Camera,
102
- camera_crossed: CameraCrossed,
103
- car: Car,
104
- carrot: Carrot,
105
- chat: Chat,
106
- checkmark_circle: CheckmarkCircle,
107
- christmas_tree: ChristmasTree,
108
- clipboard: Clipboard,
109
- clothing: Clothing,
110
- cocktail: Cocktail,
111
- comment_bubble: CommentBubble,
112
- compass: Compass,
113
- computer: Computer,
114
- couch: Couch,
115
- credit_card: CreditCard,
116
- cross_circle: CrossCircle,
117
- cutlery: Cutlery,
118
- drill_tool: DrillTool,
119
- email: Email,
120
- envelope: Envelope,
121
- event_calendar_check: EventCalendarCheck,
122
- event_calendar_date: EventCalendarDate,
123
- event_calendar_plus: EventCalendarPlus,
124
- exchange: Exchange,
125
- eye: Eye,
126
- eye_crossed: EyeCrossed,
127
- gift: Gift,
128
- group: Group,
129
- healthcare: Healthcare,
130
- heart: Heart,
131
- house: House,
132
- image: Image,
133
- info: Info,
134
- invite_neighbour: InviteNeighbour,
135
- key: Key,
136
- kitchen_pot: KitchenPot,
137
- list: List,
138
- log_out: LogOut,
139
- loudspeaker: Loudspeaker,
140
- map: Map,
141
- marketplace: Marketplace,
142
- miscellaneous_other: MiscellaneousOther,
143
- more_dots: MoreDots,
144
- more_dots_alt: MoreDotsAlt,
145
- music: Music,
146
- nebenan_de: NebenanDe,
147
- neighbour: Neighbour,
148
- notification_bell: NotificationBell,
149
- organisation: Organisation,
150
- paper_form_empty: PaperFormEmpty,
151
- paper_form_filled: PaperFormFilled,
152
- paperclip: Paperclip,
153
- paw: Paw,
154
- pencil: Pencil,
155
- pin: Pin,
156
- pins: Pins,
157
- plant: Plant,
158
- plus: Plus,
159
- plus_circle: PlusCircle,
160
- post: Post,
161
- privacy_lock: PrivacyLock,
162
- qr_code: QrCode,
163
- search: Search,
164
- settings_cog: SettingsCog,
165
- shopping_bag: ShoppingBag,
166
- shopping_cart: ShoppingCart,
167
- special_place: SpecialPlace,
168
- suitcase: Suitcase,
169
- supporter: Supporter,
170
- tennis_ball: TennisBall,
171
- thanks: Thanks,
172
- trash_can: TrashCan,
173
- truck: Truck,
174
- user: User,
175
- user_profile: UserProfile,
176
- wellness: Wellness,
177
- } as const;
178
-
179
- export default IconsMap;
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M8 7V6a1 1 0 0 1 1-1h17a1 1 0 0 1 1 1v20a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1v-1M8 7H5m3 0v6m0 0H5m3 0v6m0 0H5m3 0v6m0 0H5m12.5-10a3 3 0 1 1 0-6 3 3 0 0 1 0 6Zm0 0a5 5 0 0 0-5 5v1.146c0 .818.498 1.554 1.285 1.777.959.273 2.337.577 3.715.577 1.378 0 2.756-.304 3.715-.576.787-.224 1.285-.96 1.285-1.778V20a5 5 0 0 0-5-5Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-width="1.5" d="M15 16.745A6.968 6.968 0 0 1 11 18a6.973 6.973 0 0 1-3-.674m7-.58A7.039 7.039 0 0 0 16.745 15M15 16.745l7.244 8.74c.816.984 1.961 1.836 3.208 1.555.385-.087.758-.25 1.048-.54.29-.29.453-.663.54-1.048.28-1.247-.57-2.392-1.555-3.208L16.745 15m0 0A6.968 6.968 0 0 0 18 11c0-1.074-.242-2.09-.674-3M5 14.608A7 7 0 0 1 14.608 5M5 14.608a7.031 7.031 0 0 0 3 2.718m-3-2.718S7 14 8 13c1.698-1.698 1.41-4.41 3-6 1-1 3.608-2 3.608-2m0 0a7.031 7.031 0 0 1 2.718 3m0 0S15 9 14 10c-1.499 1.499-1.477 3.926-3 5.5-.954.986-3 1.826-3 1.826"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="m24.5 20.5-5-9m0 0H12l-4.5 9m12-9-1.276-2.553a1 1 0 0 1 .894-1.447H23.5a1 1 0 0 1 1 1V10m-18-2.5h2.882a1 1 0 0 1 .894.553L16.5 20.5m-9 5a5 5 0 1 1 0-10 5 5 0 0 1 0 10Zm12-5a5 5 0 1 1 10 0 5 5 0 0 1-10 0Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-width="1.5" d="M6 12v14.08a1 1 0 0 0 1.573.819l7.28-5.096a2 2 0 0 1 2.294 0l7.28 5.096a1 1 0 0 0 1.573-.82V12M6 12V7a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5M6 12h20"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M24.5 27H8.75A1.75 1.75 0 0 1 7 25.25v0c0-.966.784-1.75 1.75-1.75H24a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-3M7 25V8a3 3 0 0 1 3-3h6m0 0v6.584a.2.2 0 0 0 .325.156l1.55-1.24a1 1 0 0 1 1.25 0l1.55 1.24a.2.2 0 0 0 .325-.156V5m-5 0h5"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path fill="#fff" d="M16 28c6.627 0 12-5.373 12-12S22.627 4 16 4 4 9.373 4 16c0 1.81.4 3.525 1.117 5.064.083.177.118.373.094.567l-.634 5.236a.5.5 0 0 0 .556.556l5.236-.634c.194-.024.39.011.567.093A11.954 11.954 0 0 0 16 28Z"/><path fill="#FF9DE2" d="M16.085 12.871c1.27-1.78 3.406-2.357 4.942-1.44 1.571.938 1.885 2.814.943 5.003-1.219 2.83-5.122 5.916-5.852 6.476a.193.193 0 0 1-.236 0c-.73-.56-4.633-3.646-5.852-6.476-.942-2.189-.628-4.065.943-5.003 1.525-.917 3.672-.34 4.942 1.44a.105.105 0 0 0 .17 0Z"/><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M16 4C9.373 4 4 9.373 4 16c0 1.81.4 3.526 1.118 5.065.083.177.118.373.094.567l-.635 5.234a.5.5 0 0 0 .557.557l5.225-.639c.195-.023.391.012.569.095C12.468 27.598 14.188 28 16 28c6.627 0 12-5.373 12-12S22.627 4 16 4Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M16 4C9.373 4 4 9.373 4 16c0 1.81.4 3.526 1.118 5.065.083.177.118.373.094.567l-.635 5.234a.5.5 0 0 0 .557.557l5.225-.639c.195-.023.391.012.569.095C12.468 27.598 14.188 28 16 28c6.627 0 12-5.373 12-12S22.627 4 16 4Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M4 26.5h3m21 0h-3m-18 0V6.835a1 1 0 0 1 .821-.984l9-1.637A1 1 0 0 1 18 5.198V10M7 26.5h11m0 0V10m0 16.5h7M18 10h6a1 1 0 0 1 1 1v15.5M14.8 16h-.6a.2.2 0 0 1-.2-.2v-1.1c0-.11.09-.2.2-.2h.6c.11 0 .2.09.2.2v1.1a.2.2 0 0 1-.2.2Zm-4 0h-.6a.2.2 0 0 1-.2-.2v-1.1c0-.11.09-.2.2-.2h.6c.11 0 .2.09.2.2v1.1a.2.2 0 0 1-.2.2Zm4.2-5.8v1.1a.2.2 0 0 1-.2.2h-.6a.2.2 0 0 1-.2-.2v-1.1c0-.11.09-.2.2-.2h.6c.11 0 .2.09.2.2Zm-4.2 1.3h-.6a.2.2 0 0 1-.2-.2v-1.1c0-.11.09-.2.2-.2h.6c.11 0 .2.09.2.2v1.1a.2.2 0 0 1-.2.2Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M4 16h24M4 23h24M4 9h24"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M5 15.5v0a1.442 1.442 0 0 1-1.368-1.897l2.64-7.92A1 1 0 0 1 7.221 5h4.029M5 15.5v11a1 1 0 0 0 1 1h3a.5.5 0 0 0 .5-.5v-6.5a1 1 0 0 1 1-1H14a1 1 0 0 1 1 1V27a.5.5 0 0 0 .5.5H26a1 1 0 0 0 1-1v-11m-22 0h4.5m17.5 0v0c.984 0 1.679-.964 1.367-1.897l-2.64-7.92A1 1 0 0 0 24.78 5H20.75M27 15.5h-4M16 5v10.5M16 5h4.75M16 5h-4.75M16 15.5h7m-7 0H9.5M20.75 5 23 15.5M11.25 5 9.5 15.5m10 8h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M23 14.5v0a.7.7 0 0 0 .658-.94L22.24 9.658A1 1 0 0 0 21.3 9H10.7a1 1 0 0 0-.94.658L8.343 13.56A.7.7 0 0 0 9 14.5v0m14 0V21a1 1 0 0 1-1 1h-5.8a.2.2 0 0 1-.2-.2v-4.1a.2.2 0 0 0-.2-.2h-3.1a.2.2 0 0 0-.2.2v4.1a.2.2 0 0 1-.2.2H10a1 1 0 0 1-1-1v-6.5m14 0H9M28 16c0 6.627-5.373 12-12 12S4 22.627 4 16 9.373 4 16 4s12 5.373 12 12Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-width="1.5" d="M3.5 11.5A2.5 2.5 0 0 1 6 9h2.586a1 1 0 0 0 .707-.293l3.121-3.121A2 2 0 0 1 13.828 5h4.344a2 2 0 0 1 1.414.586l3.121 3.121a1 1 0 0 0 .707.293H26a2.5 2.5 0 0 1 2.5 2.5V23a3 3 0 0 1-3 3h-19a3 3 0 0 1-3-3V11.5Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="m27.5 28.5-23-23M16 11a6 6 0 1 1 0 12 6 6 0 0 1 0-12Zm2.172-6h-4.344a2 2 0 0 0-1.414.586L9.293 8.707A1 1 0 0 1 8.586 9H6a2.5 2.5 0 0 0-2.5 2.5V23a3 3 0 0 0 3 3h19a3 3 0 0 0 3-3V11.5A2.5 2.5 0 0 0 26 9h-2.586a1 1 0 0 1-.707-.293l-3.121-3.121A2 2 0 0 0 18.172 5Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="m6 14.5 2.27-6.053A3 3 0 0 1 11.079 6.5h9.842a3 3 0 0 1 2.809 1.947L26 14.5m-20 0L3.5 14m2.5.5v7m0-7h20m-16.5 7v3a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1v-3m3.5 0h13m-13 0H6m16.5 0v3a1 1 0 0 0 1 1H25a1 1 0 0 0 1-1v-3m-3.5 0H26m0-7 2.5-.5m-2.5.5v7M23 18v0a.5.5 0 0 1-.5.5H21a.5.5 0 0 1-.5-.5v0a.5.5 0 0 1 .5-.5h1.5a.5.5 0 0 1 .5.5ZM9 18v0a.5.5 0 0 1 .5-.5H11a.5.5 0 0 1 .5.5v0a.5.5 0 0 1-.5.5H9.5A.5.5 0 0 1 9 18Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="m22 10 5-5m-5 5h5.5M22 10V4.5m0 5.5c-2.501-2.501-5.104-1.765-7.5.426M22 10c3.759 3.759.272 7.724-4.5 10.879m-3-10.453L18.074 14M14.5 10.426c-2.229 2.038-4.278 5.334-5.898 8.453m8.898 2c-3.643 2.408-8.034 4.344-10.523 5.354a.916.916 0 0 1-1.205-1.21 75.967 75.967 0 0 1 2.83-6.144m8.898 2-3-3m-5.898 1 1.62 1.621"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-width="1.5" d="M19.35 10a7.5 7.5 0 1 0-14.047 4.88c.12.237.159.508.09.764l-.804 3.022a.2.2 0 0 0 .245.245l3.022-.805c.256-.068.527-.029.763.09.432.219.887.397 1.362.53M27 18.5a8.5 8.5 0 1 0-5.309 7.88c.202-.081.424-.105.637-.057l4.862 1.107a.2.2 0 0 0 .24-.24l-1.107-4.862a1.067 1.067 0 0 1 .058-.637c.4-.985.619-2.062.619-3.191Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="m9.333 16.667 4 4 9.334-9.334M28 16c0 6.627-5.373 12-12 12S4 22.627 4 16 9.373 4 16 4s12 5.373 12 12Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="m19 11-2.555-1.277a1 1 0 0 0-.891-.002L12.975 11M19 11l-.485-2.912a.2.2 0 0 1 .04-.158l1.732-2.164a.2.2 0 0 0-.123-.322l-2.573-.429a.2.2 0 0 1-.139-.094l-1.28-2.135a.2.2 0 0 0-.344 0l-1.28 2.135a.2.2 0 0 1-.14.094l-2.572.429a.2.2 0 0 0-.123.322l1.73 2.164a.2.2 0 0 1 .041.159L12.975 11M19 11l2.5 4.063M12.975 11l-1.687 2.75m0 0S13.983 15.198 16 15.5c2.155.323 5.5-.438 5.5-.438M11.288 13.75 6.84 21M24 19.125l2.318 3.767c.344.56.063 1.284-.576 1.436-1.552.37-4.399.942-7.742 1.118m6-6.321S18.88 20.633 15.5 21c-3.362.365-8.66 0-8.66 0M24 19.125l-2.5-4.063M6.84 21l-1.16 1.893c-.344.559-.062 1.282.576 1.434 1.552.37 4.4.943 7.744 1.12m0 0a37.977 37.977 0 0 0 4 0m-4 0V28a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2.554"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M21 7v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V7m10 0h2.5a2 2 0 0 1 2 2v17a2 2 0 0 1-2 2h-15a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2H11m10 0v0a1.5 1.5 0 0 0-1.5-1.5h-.264a.509.509 0 0 1-.381-.186C18.512 4.913 17.56 4 16 4s-2.512.913-2.855 1.314a.509.509 0 0 1-.381.186H12.5A1.5 1.5 0 0 0 11 7v0m-1 6h12m-12 4h8m-8 4h10"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M9 11.5v2m14-2v2m0 0v12a1 1 0 0 1-1 1H10a1 1 0 0 1-1-1v-12m14 0 2.722.389a1 1 0 0 0 1.07-.619l1.414-3.534a1 1 0 0 0-.355-1.19L23.758 5.68a1 1 0 0 0-.573-.181H20c-.552 0-1.005.455-1.168.982C18.56 7.357 17.852 8.5 16 8.5c-1.852 0-2.56-1.143-2.832-2.018-.163-.527-.616-.982-1.168-.982H8.815a1 1 0 0 0-.573.18L4.149 8.546a1 1 0 0 0-.355 1.191l1.414 3.534a1 1 0 0 0 1.07.619L9 13.5"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M12 27h4m4 0h-4m0 0v-7m0 0 9.293-9.293c.63-.63.184-1.707-.707-1.707H10.874M16 20l-6.716-6.716M17.5 13l2.749-6.871a1 1 0 0 1 .928-.629H26M9 13h14M10.874 9A4.002 4.002 0 0 0 3 10a4 4 0 0 0 6.284 3.284M10.874 9h-3.46c-.89 0-1.337 1.077-.707 1.707l2.577 2.577"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M11.111 17.833h8.556m-7.334-4.277h8.556M27 16c0 6.075-4.925 11-11 11-1.61 0-3.14-.346-4.52-.968a1.3 1.3 0 0 0-.771-.1l-4.832.904a.611.611 0 0 1-.713-.713l.904-4.832c.049-.26.01-.53-.1-.772A10.96 10.96 0 0 1 5 16C5 9.925 9.925 5 16 5s11 4.925 11 11Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M28 16c0 6.627-5.373 12-12 12m12-12c0-6.627-5.373-12-12-12m12 12h-2.5M16 28C9.373 28 4 22.627 4 16m12 12v-2.5M4 16C4 9.373 9.373 4 16 4M4 16h2.5M16 4v2.5M18 18l-4-4m4.656 4.148 3.316-7.46a.5.5 0 0 0-.66-.66l-7.46 3.316a1 1 0 0 0-.508.508l-3.316 7.46a.5.5 0 0 0 .66.66l7.46-3.316a1 1 0 0 0 .508-.508Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M16 21.5h9.5a2 2 0 0 0 2-2v-3m-11.5 5H6.5a2 2 0 0 1-2-2v-3m11.5 5v5m0 0h5m-5 0h-5m16.5-10V8a2 2 0 0 0-2-2h-19a2 2 0 0 0-2 2v8.5m23 0h-23"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M7 25h-.5a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2v0M7 25v2m0-2h18m0 0h.5a2 2 0 0 0 2-2v-7a2 2 0 0 0-2-2v0M25 25v2M6.5 14H7a2 2 0 0 1 2 2v4a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-4a2 2 0 0 1 2-2h.5m-19 0v-4a2 2 0 0 1 2-2h15a2 2 0 0 1 2 2v4"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M4 13v10a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V13M4 13V9a2 2 0 0 1 2-2h20a2 2 0 0 1 2 2v4M4 13h24M7 10h8"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M21 11 11 21m0-10 10 10m7-5c0 6.627-5.373 12-12 12S4 22.627 4 16 9.373 4 16 4s12 5.373 12 12Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-miterlimit="16" stroke-width="1.5" d="M9 5.5H7a1 1 0 0 0-1 1v7.146a2 2 0 0 0 1.257 1.857l.551.22a1 1 0 0 1 .625 1.02l-.735 8.076A2 2 0 0 0 9.69 27h1.62a2 2 0 0 0 1.992-2.181l-.734-8.077a1 1 0 0 1 .624-1.019l.55-.22A2 2 0 0 0 15 13.646V6.5a1 1 0 0 0-1-1h-2m-3 0V12m0-6.5h3m0 0V12m11.437-6.777.422-.06a1 1 0 0 1 1.141.99V25a2 2 0 0 1-2 2h-1.06a2 2 0 0 1-1.962-2.392l1.23-6.152a1.785 1.785 0 0 0-1.086-2.007v0a1.738 1.738 0 0 1-1.105-1.658c.083-2.771.485-5.095 1.592-7.55.507-1.125 1.606-1.843 2.828-2.018Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="m16.5 18 3-1m-3 1h-4m4 0-.583 2.46A2 2 0 0 1 13.971 22H11.5m8-5H22a2 2 0 0 0 1.6-.8l.5-.667a2 2 0 0 0 .4-1.2V13m-5 4V9m0 0H22a2 2 0 0 1 1.6.8l.5.667a2 2 0 0 1 .4 1.2V13m-5-4-2.789-1.394a1 1 0 0 0-.447-.106H6a1 1 0 0 0-1 1V17a1 1 0 0 0 1 1h1m0 0-2.148 7.732A1 1 0 0 0 5.816 27h3.44a1 1 0 0 0 .958-.713L11.5 22M7 18h5.5m0 0-1 4m13-9H28"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M23 25.748A11.946 11.946 0 0 1 16 28C9.373 28 4 22.627 4 16S9.373 4 16 4s12 5 12 12c0 3-2 5-4.5 5-1.574 0-4-2-4-2m0 0v-6m0 6s-2.255 2.061-4 2c-2.625-.092-4.376-2.376-4.5-5-.13-2.772 2.274-5.533 4.5-5.5 1.299.019 2.64.287 3.5 1.5.253.356.5 1 .5 1m0-2.5V13"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="m13 15.63 1.618 1.548a2 2 0 0 0 2.764 0L19 15.63m-6 0L5 7m8 8.63-8 9.323M27 7l-8 8.63m0 0 8 9.323M26 26H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h20a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M10 4v6m6-6v6m6-6v6M5 13h22M5 13V8a1 1 0 0 1 1-1h20a1 1 0 0 1 1 1v5M5 13v12a1 1 0 0 0 1 1h20a1 1 0 0 0 1-1V13m-14 6.5 1.859 1.859a.2.2 0 0 0 .282 0L20 16.5"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M10 4v6m6-6v6m6-6v6M5 13h22M5 13V8a1 1 0 0 1 1-1h20a1 1 0 0 1 1 1v5M5 13v12a1 1 0 0 0 1 1h20a1 1 0 0 0 1-1V13m-15.5 5 1.84-1.38a.1.1 0 0 1 .16.08v5.8m6.5-.04h-3.237a.1.1 0 0 1-.075-.166l2.702-3.04A1.643 1.643 0 0 0 17 17l-.46.46"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M10 4v6m6-6v6m6-6v6M5 13h22M5 13V8a1 1 0 0 1 1-1h20a1 1 0 0 1 1 1v5M5 13v12a1 1 0 0 0 1 1h20a1 1 0 0 0 1-1V13m-11 3.5v6m-3-3h6"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="m9 27-4.293-4.293a1 1 0 0 1 0-1.414L9 17m-4 5h20a2 2 0 0 0 2-2v-3M22 5l4.293 4.293a1 1 0 0 1 0 1.414L22 15m4-5H7a2 2 0 0 0-2 2v3"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-width="1.5" d="M16 8C9.75 8 5.095 14.376 4.169 15.744a.449.449 0 0 0 0 .512C5.095 17.624 9.75 24 16 24c6.25 0 10.905-6.376 11.831-7.744a.449.449 0 0 0 0-.512C26.905 14.376 22.25 8 16 8Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="m5.5 5.5 21 21M16 8C9.75 8 5.095 14.376 4.169 15.744a.449.449 0 0 0 0 .512C5.095 17.624 9.75 24 16 24c6.25 0 10.905-6.376 11.831-7.744a.449.449 0 0 0 0-.512C26.905 14.376 22.25 8 16 8Zm0 3a5 5 0 1 0 0 10 5 5 0 0 0 0-10Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-width="1.5" d="M6 16h20M6 16v9a1 1 0 0 0 1 1h9M6 16a1.5 1.5 0 0 1-1.5-1.5V11A1.5 1.5 0 0 1 6 9.5h10M26 16v9a1 1 0 0 1-1 1h-9m10-10a1.5 1.5 0 0 0 1.5-1.5V11A1.5 1.5 0 0 0 26 9.5H16M16 26V9.5m0 0 1.702-4.425a2.194 2.194 0 0 1 2.862-1.25c1.883.754 1.824 3.44-.09 4.109L16 9.5Zm0 0-1.702-4.425a2.194 2.194 0 0 0-2.863-1.25c-1.882.754-1.823 3.44.09 4.109L16 9.5Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M16 14a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm0 0a6 6 0 0 0-6 6v3.558c0 .861.55 1.625 1.387 1.828 1.155.282 2.884.614 4.613.614 1.73 0 3.458-.332 4.613-.614.836-.203 1.387-.967 1.387-1.828V20a6 6 0 0 0-6-6Zm-8 1a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0 0c-2.761 0-4 2.239-4 5v1.264c0 .758.446 1.421 1.193 1.544C5.822 22.91 6.733 23 8 23c.73 0 1.402-.03 2-.075M8 15c1.126 0 2.164.372 3 1m13-1a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0 0c2.761 0 4 2.239 4 5v1.264c0 .758-.445 1.421-1.193 1.544-.629.103-1.54.192-2.807.192-.73 0-1.402-.03-2-.075M24 15a4.978 4.978 0 0 0-3 1"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M2 17h6.882a.2.2 0 0 0 .175-.103l2.241-4.034a.2.2 0 0 1 .36.021l3.171 7.702a.2.2 0 0 0 .365.01l1.68-3.483a.2.2 0 0 1 .18-.113H21M6.5 6.923c4.185-3.591 8.803.672 9.429 1.286a.1.1 0 0 0 .142 0c.625-.614 5.243-4.877 9.43-1.286C30 10.784 27 17.063 24 20.563c-1.65 1.925-5.01 4.66-6.806 6.074a1.924 1.924 0 0 1-2.388 0C13.011 25.224 9.651 22.488 8 20.562c-3-3.5-6-9.778-1.5-13.639Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M16.082 8.886C18.587 5.468 22.532 4.022 25.5 6c3 2 3.24 5.805 1.5 10-2.318 5.589-9.879 11.19-10.888 11.92a.187.187 0 0 1-.224 0C14.88 27.19 7.318 21.589 5 16 3.26 11.805 3.5 8 6.5 6c2.967-1.978 6.913-.532 9.418 2.886.04.055.124.055.164 0Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-width="1.5" d="m25 17.5-8.293-8.293a1 1 0 0 0-1.414 0L7 17.5m18 0V26a1 1 0 0 1-1 1h-4.5a1 1 0 0 1-1-1v-5a1 1 0 0 0-1-1h-3a1 1 0 0 0-1 1v5a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8.5m18 0s1 .5 2-.5c.757-.757.654-1.514.56-1.838a.653.653 0 0 0-.185-.282L16.69 4.66a1 1 0 0 0-1.382 0L4.626 14.88a.653.653 0 0 0-.186.282c-.094.323-.197 1.08.56 1.838 1 1 2 .5 2 .5"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-width="1.5" d="M4.5 23.5a2 2 0 0 0 2 2h19a2 2 0 0 0 2-2v-4m-23 4v-15a2 2 0 0 1 2-2h19a2 2 0 0 1 2 2v11m-23 4 4.793-4.793a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 0 1.414 0l5.879-5.879a2 2 0 0 1 2.828 0L27.5 19.5m-15-5.5a2.121 2.121 0 1 1-3-3 2.121 2.121 0 0 1 3 3Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M14.5 14.5h1a.5.5 0 0 1 .5.5v6.5a.5.5 0 0 0 .5.5h1m-2-10.5a.5.5 0 0 0 0-1m0 1a.5.5 0 0 1 0-1m0 1v-1m12 5.5c0-6.351-5.149-11.5-11.5-11.5S4.5 9.649 4.5 16 9.649 27.5 16 27.5c2.121 0 4.109-.574 5.815-1.576.265-.156.585-.197.876-.096l4.406 1.532c.16.056.313-.101.256-.26-.552-1.534-.98-3.116-1.423-4.682a1.041 1.041 0 0 1 .103-.793A11.448 11.448 0 0 0 27.5 16Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M16 18a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm0 0c-3.866 0-7 2.5-7 7 0 .263.015.523.043.779M16 18c1.622 0 3.108.44 4.29 1.284M9.042 25.779A11.945 11.945 0 0 0 16 28c1.631 0 3.187-.326 4.605-.915M9.043 25.779C5.99 23.603 4 20.297 4 16 4 9.373 9.373 4 16 4s12 5.373 12 12c0 .599-.039 1.179-.113 1.739m0 0A5.973 5.973 0 0 0 25 17a5.99 5.99 0 0 0-4.71 2.284m7.597-1.545a6 6 0 1 1-7.282 9.346m0 0A5.979 5.979 0 0 1 19 23c0-1.404.482-2.695 1.29-3.716M25 20v3m0 0v3m0-3h3m-3 0h-3"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-miterlimit="16" stroke-width="1.5" d="M28 11a7 7 0 1 0-13.854 1.43c.074.356-.013.73-.266.99L6.284 21.21a1 1 0 0 0-.284.698V25a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1.5a1 1 0 0 0 1-1v-.42c0-.734.767-1.217 1.43-.903.047.022.095.04.143.055A7 7 0 0 0 28 11Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M26 15.5v-3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v3m20 0V23a4 4 0 0 1-4 4H10a4 4 0 0 1-4-4v-7.5m20 0 4-2m-24 2-4-2m14-10V8m-3.5-3.5V8m7-3.5V8"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M11 16h17m-17 7h17M11 9h17M7 9H5m2 7H5m2 7H5"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M12 11V7a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2H14a2 2 0 0 1-2-2v-4m-3.5-9.5-3.793 3.793a1 1 0 0 0 0 1.414L8.5 20.5m12-4.5h-16"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="m24.5 18.5-5 2.813M13.5 7.5 5.244 22.178a2 2 0 0 0 .329 2.395l1.854 1.854a2 2 0 0 0 2.395.33l9.678-5.445m3-11.812L26 6m0 14L12 6m6 .5L19 4m6.5 10 2.5-1M14 25l1.492 2.239a1 1 0 0 0 1.311.323l3.821-2.084a1 1 0 0 0 .4-1.355l-1.524-2.81"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-width="1.5" d="M12 26.5v-19m8-2v19M12.242 6.94l7.515-1.88a1 1 0 0 1 .485 0l7 1.75a1 1 0 0 1 .758.97v17.94a1 1 0 0 1-1.242.97l-6.515-1.63a1 1 0 0 0-.485 0l-7.515 1.88a1 1 0 0 1-.486 0l-7-1.75A1 1 0 0 1 4 24.22V6.28a1 1 0 0 1 1.243-.97l6.514 1.63a1 1 0 0 0 .486 0Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M7 13h-.78a2 2 0 0 1-1.909-2.597l1.47-4.701A1 1 0 0 1 6.735 5H11m-4 8v4.5M7 13h3m-3 4.5H6a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h1m0-7h18m0-4.5h.78a2 2 0 0 0 1.909-2.597l-1.47-4.701A1 1 0 0 0 25.265 5H21m4 8v4.5m0-4.5h-3m3 4.5h1a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1h-1m0 0V27m0-2.5H7m0 0V27m9-22v8m0-8h5m-5 0h-5m5 8h6m-6 0h-6m11-8 1 8M11 5l-1 8"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-width="1.5" d="M26.5 22a5 5 0 1 1-10 0 5 5 0 0 1 10 0ZM14.5 6a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1h-7a1 1 0 0 1-1-1V6ZM4.413 19.257l4.15-7.47a.5.5 0 0 1 .874 0l4.15 7.47a.5.5 0 0 1-.437.743h-8.3a.5.5 0 0 1-.437-.743Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path fill="#201649" d="M8 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM18 16a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM26 16a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path fill="#201649" d="M16 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM18 16a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM18 24a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M12 22.5c0-1.657-2.047-3-4-3-1.953 0-4 1.047-4 3s2.047 3 4 3c1.953 0 4-1.343 4-3Zm0 0V11m13.5 10c0-1.657-2.047-3-4-3-1.953 0-4 1.047-4 3s2.047 3 4 3c1.953 0 4-1.343 4-3Zm0 0V9.5M12 11V6.895a1 1 0 0 1 .89-.994l11.5-1.278a1 1 0 0 1 1.11.994V9.5M12 11l13.5-1.5"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M16 4v12.595m0 0V28.7m0-12.107 10.836-6.353M16 16.595 5.164 10.24m10.335-6.106-10 5.789A1 1 0 0 0 5 10.79v11.12a1 1 0 0 0 .498.866l2.791 1.62a.2.2 0 0 0 .3-.173V18.84a.1.1 0 0 1 .15-.086l2.942 1.708a1 1 0 0 1 .498.865v4.75a1 1 0 0 0 .501.867l2.821 1.625a1 1 0 0 0 .998 0l2.821-1.625a1 1 0 0 0 .501-.866v-4.85a1 1 0 0 1 .52-.878l2.921-1.602a.1.1 0 0 1 .148.087v5.39a.2.2 0 0 0 .301.172l2.791-1.62A1 1 0 0 0 27 21.91V10.789a1 1 0 0 0-.499-.865l-10-5.79a1 1 0 0 0-1.002 0Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M21 14a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm0 0a6 6 0 0 1 6 6v3.56c0 .86-.55 1.623-1.387 1.826-1.155.282-2.884.614-4.613.614-1.729 0-3.458-.332-4.613-.614C15.551 25.183 15 24.42 15 23.56V21m6-7a6.001 6.001 0 0 0-5.5 3.598m0 0V14.51a1 1 0 0 0-.412-.809l-4.5-3.272a1 1 0 0 0-1.176 0l-4.5 3.272a1 1 0 0 0-.412.81V20a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1V20a1 1 0 0 0 1 1H15m.5-3.402A5.98 5.98 0 0 0 15 20v1"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M12 24s0 4 4 4 4-4 4-4M8 11.203v3.883c0 2.813-1.369 5.118-2.458 7.586-.28.637.197 1.328.892 1.328h19.132c.696 0 1.173-.691.892-1.328C25.368 20.204 24 17.9 24 15.085v-3.882A4.203 4.203 0 0 0 19.797 7a.389.389 0 0 1-.366-.288C19.217 5.962 18.426 4 16 4s-3.217 1.961-3.431 2.712a.389.389 0 0 1-.366.288A4.203 4.203 0 0 0 8 11.203Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M20 14.5h-8a1 1 0 0 1-1-1V8.945a1 1 0 0 1 .331-.743l4-3.6a1 1 0 0 1 1.338 0l4 3.6a1 1 0 0 1 .331.743V13.5a1 1 0 0 1-1 1ZM13.5 27h-8a1 1 0 0 1-1-1v-4.555a1 1 0 0 1 .331-.743l4-3.6a1 1 0 0 1 1.338 0l4 3.6a1 1 0 0 1 .331.743V26a1 1 0 0 1-1 1ZM26.5 27h-8a1 1 0 0 1-1-1v-4.555a1 1 0 0 1 .331-.743l4-3.6a1 1 0 0 1 1.338 0l4 3.6a1 1 0 0 1 .331.743V26a1 1 0 0 1-1 1Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-width="1.5" d="M25.5 11H20a1 1 0 0 1-1-1V4.5m7 6.914V27a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h11.586a1 1 0 0 1 .707.293l6.414 6.414a1 1 0 0 1 .293.707Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M9 22V6a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v19a2 2 0 0 1-2 2H7.5M9 22H5.5a1 1 0 0 0-1 1v2a2 2 0 0 0 2 2h1M9 22v2.93a2 2 0 0 1-.89 1.664L7.5 27M13 9h10m-10 4h10m0 4H13"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="m27 17-7.858 7.858a8 8 0 0 1-8.465 1.833l-.119-.044a7.73 7.73 0 0 1-4.367-4.14v0a7.729 7.729 0 0 1 1.8-8.741l8.244-7.712a6.188 6.188 0 0 1 7.19-.913l.32.175a4.93 4.93 0 0 1 1.95 1.933v0a4.93 4.93 0 0 1-.824 5.88l-7.678 7.678a3.535 3.535 0 0 1-3.893.75v0a3.535 3.535 0 0 1-1.857-1.857v0a3.535 3.535 0 0 1 .75-3.893L18 10"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-width="1.5" d="M4 14a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0ZM25.5 11.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5ZM23 7.5a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0ZM9 7.5a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0ZM16 25c-1.04 0-2.2.473-3.22 1.043-1.578.881-3.681.637-4.7-.854-1.104-1.617-.375-3.847 1.283-4.887.824-.516 1.614-1.128 2.137-1.802.63-.811 1.097-2.003 1.42-3.07C13.34 14.05 14.56 13 16 13s2.66 1.05 3.08 2.43c.324 1.067.79 2.259 1.42 3.07.523.674 1.314 1.286 2.137 1.802 1.658 1.04 2.387 3.27 1.283 4.887-1.019 1.491-3.122 1.735-4.7.854C18.2 25.473 17.04 25 16 25Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M27.5 27H4m10-4h13.5m0-4H20m1.132-8.596 2.121-2.121a1 1 0 0 0 0-1.415l-2.121-2.121a1 1 0 0 0-1.415 0l-2.12 2.121m3.535 3.536L8.607 22.929a1 1 0 0 1-.483.267c-1.102.255-3.107.621-3.843.754a.198.198 0 0 1-.23-.23c.132-.736.498-2.74.753-3.844a1 1 0 0 1 .267-.483L17.596 6.868m3.536 3.536-3.536-3.536"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-width="1.5" d="M12.601 19.5H8.386a2 2 0 0 0-1.873 1.298l-2.006 5.35a1 1 0 0 0 .936 1.352h21.114a1 1 0 0 0 .936-1.351l-2.006-5.351a2 2 0 0 0-1.873-1.298h-4.108m0 0C20.819 16.815 22 13.662 22 11a6 6 0 0 0-12 0c0 5.443 4.937 12.532 5.854 13.801a.19.19 0 0 0 .303.01c.482-.589 1.987-2.528 3.349-5.311ZM19 11a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-width="1.5" d="M20.634 7.189A5 5 0 0 1 27 12c0 5.383-4.024 10.766-4.852 11.816a.188.188 0 0 1-.298-.003 27.62 27.62 0 0 1-2.171-3.246m.955-13.378A5.988 5.988 0 0 0 16 5a5.988 5.988 0 0 0-4.634 2.189m9.268 0A5.975 5.975 0 0 1 22 11c0 3.392-1.079 6.784-2.321 9.567M11.366 7.189A5 5 0 0 0 5 12c0 5.383 4.024 10.766 4.852 11.816.077.098.221.095.298-.003a27.62 27.62 0 0 0 2.171-3.246m-.955-13.378A5.975 5.975 0 0 0 10 11c0 3.392 1.079 6.784 2.321 9.567m0 0c1.407 3.149 3.024 5.517 3.524 6.219a.189.189 0 0 0 .31 0c.5-.703 2.117-3.07 3.524-6.22M19 11a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M15.5 17h8a1 1 0 0 1 1 1v1.5a1 1 0 0 1-1 1h-.828a.2.2 0 0 0-.198.17l-.843 5.482a1 1 0 0 1-.989.848h-9.284a1 1 0 0 1-.989-.848l-.843-5.482a.2.2 0 0 0-.198-.17H8.5a1 1 0 0 1-1-1V18a1 1 0 0 1 1-1h7Zm0 0v-3m.5-1h3a6 6 0 0 0 6-6V4.5a.5.5 0 0 0-.5-.5H22a6 6 0 0 0-6 6v3Zm0 0-.5 1m.5-1 5-5m-5.5 6-2-2m0 0v-2a4 4 0 0 0-4-4H8a.5.5 0 0 0-.5.5V8a4 4 0 0 0 4 4h2Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.4" d="M16 4.667v22.666M4.667 16h22.666"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M16 9v14m-7-7h14m5 0c0 6.627-5.373 12-12 12S4 22.627 4 16 9.373 4 16 4s12 5.373 12 12Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-width="1.5" d="M23 23V10a1 1 0 0 0-1-1H8.5M23 23v3a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V10a1 1 0 0 1 1-1h2.5M23 23h3a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H9.5a1 1 0 0 0-1 1v3m6 5.5 1.793-1.793a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414L17.5 17.5m-3-3-5.264 5.264a1 1 0 0 0-.283.566l-.434 3.038a.1.1 0 0 0 .113.113l3.038-.434a1 1 0 0 0 .566-.283L17.5 17.5m-3-3 3 3"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M21 13V8.5c0-2.918-2.5-4-5-4s-5 1.082-5 4v1m5 13a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0 0v2M27 15v11a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V15a2 2 0 0 1 2-2h18a2 2 0 0 1 2 2Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M20 27h6a1 1 0 0 0 1-1v-8M5 12.5V14a1 1 0 0 0 1 1h9a2 2 0 0 1 2 2v2M11.5 7V6a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3m10 3V9.5M15 5v4.5M11 12H9a1 1 0 0 1-1-1V8m7 1.5h-3m5 13V27m7-3h-3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2m-3-9.5h3a.5.5 0 0 0 .5-.5V8a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5Zm-10 13H8a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5Zm3 1.5v-7a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1ZM27 6v7a1 1 0 0 1-1 1h-7a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="m17 20 2 2 4.586 4.586a2 2 0 0 0 2.828 0l.172-.172a2 2 0 0 0 0-2.828L22 19l-2-2m1-5a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-width="1.5" d="M26.572 10.318A.639.639 0 0 0 26 10a4 4 0 0 1-4-4 .639.639 0 0 0-.317-.572 11.93 11.93 0 0 0-1.858-.805c-.386-.13-.799.024-1.096.302A3.986 3.986 0 0 1 16 6a3.986 3.986 0 0 1-2.729-1.075c-.297-.278-.71-.432-1.096-.302a11.93 11.93 0 0 0-1.858.805A.638.638 0 0 0 10 6a4 4 0 0 1-4 4 .638.638 0 0 0-.572.317 11.935 11.935 0 0 0-.805 1.858c-.13.386.024.799.302 1.096A3.986 3.986 0 0 1 6 16a3.986 3.986 0 0 1-1.075 2.729c-.278.297-.432.71-.302 1.096.216.646.487 1.266.805 1.858A.638.638 0 0 0 6 22a4 4 0 0 1 4 4c0 .235.111.46.317.572.592.318 1.213.589 1.858.806.386.13.799-.025 1.096-.303A3.986 3.986 0 0 1 16 26c1.055 0 2.014.408 2.729 1.075.297.278.71.432 1.096.303a11.93 11.93 0 0 0 1.858-.806A.639.639 0 0 0 22 26a4 4 0 0 1 4-4c.234 0 .46-.111.572-.317.318-.592.589-1.212.806-1.858.13-.386-.025-.799-.303-1.096A3.986 3.986 0 0 1 26 16c0-1.055.408-2.014 1.075-2.729.278-.297.432-.71.302-1.096a11.93 11.93 0 0 0-.805-1.857Z"/><path stroke="#201649" stroke-width="1.5" d="M21 16a5 5 0 1 1-10 0 5 5 0 0 1 10 0Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M11 14.5V8s0 0 0 0 0-4 5-4 5 4 5 4 0 0 0 0v6.5M8 10h16a1 1 0 0 1 1 1v12a4 4 0 0 1-4 4H11a4 4 0 0 1-4-4V11a1 1 0 0 1 1-1Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M4 5h1.73a1 1 0 0 1 .967.744l4.205 15.884a.5.5 0 0 0 .483.372H12m11 0a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5Zm0 0H12M7.559 9h18.783a.5.5 0 0 1 .482.634l-1.714 6.169A3 3 0 0 1 22.22 18H9.94M12 22a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M21.5 20h2.823a1 1 0 0 1 .928.629l2.2 5.5a1 1 0 0 1-.928 1.371H5.477a1 1 0 0 1-.928-1.371l2.2-5.5A1 1 0 0 1 7.677 20H10.5M24 6c-2.465-1.48-5.902-.527-7.915 2.375a.104.104 0 0 1-.17 0C13.902 5.473 10.447 4.521 8 6c-2.5 1.5-3 4.5-1.5 8 1.985 4.632 8.444 9.692 9.385 10.413.07.054.16.054.23 0 .94-.72 7.4-5.781 9.385-10.413 1.5-3.5 1-6.5-1.5-8Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M11.5 10h9m-9 0V8a2 2 0 0 1 2-2h5a2 2 0 0 1 2 2v2m-9 0h-2m11 0h2m-13 0h-3a2 2 0 0 0-2 2v11.5a2 2 0 0 0 2 2h3m0-15.5v15.5m0 0h13m0 0h3a2 2 0 0 0 2-2V12a2 2 0 0 0-2-2h-3m0 15.5V10"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M18.5 13.062s-.5-1.5-2.5-1.5c-1.717 0-2.697 1.106-2.94 3m0 0a7.87 7.87 0 0 0-.06 1c0 .485.059 1 .176 1.5m-.116-2.5H11m2.06 0h2.44m-2.324 2.5c.368 1.565 1.309 3 2.824 3 2 0 2.5-1.5 2.5-1.5m-5.324-1.5H15.5m-2.324 0H11M6.5 6.923c4.185-3.591 8.803.672 9.429 1.286a.1.1 0 0 0 .142 0c.625-.614 5.243-4.877 9.43-1.286C30 10.784 27 17.063 24 20.563c-1.65 1.925-5.01 4.66-6.806 6.074a1.924 1.924 0 0 1-2.388 0C13.011 25.224 9.651 22.488 8 20.562c-3-3.5-6-9.778-1.5-13.639Z"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-width="1.5" d="M28 16c0 6.627-5.373 12-12 12m12-12c0-6.627-5.373-12-12-12m12 12s-5.53 1.53-8 4c-2.47 2.47-4 8-4 8m0 0C9.373 28 4 22.627 4 16m0 0C4 9.373 9.373 4 16 4M4 16s5.53-1.53 8-4c2.47-2.47 4-8 4-8"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-width="1.5" d="M11.47 13.706H6.295C5.58 13.706 5 14.286 5 15v9.706C5 25.42 5.58 26 6.294 26h5.177m0-12.294 3.388-8.911a.457.457 0 0 1 .427-.295 3.655 3.655 0 0 1 3.618 4.172l-.38 2.657a.15.15 0 0 0 .148.171h6.358a2.588 2.588 0 0 1 2.564 2.942l-1.286 9.323A2.588 2.588 0 0 1 23.744 26H11.471m0-12.294V26"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none"><path stroke="#201649" stroke-linecap="round" stroke-width="1.5" d="M24 9v15a3 3 0 0 1-3 3H11a3 3 0 0 1-3-3V9m19-.5h-7m-15 0h7m0 0V6a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2.5m-8 0h8m-.5 5-7 7m0-7 7 7"/></svg>