nzk-react-components 0.4.3 → 0.4.6-0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (485) hide show
  1. package/dist/assets/icons/bear.svg +177 -0
  2. package/dist/assets/icons/bear.svg.js +606 -0
  3. package/dist/assets/icons/bear.svg.js.map +1 -0
  4. package/dist/assets/icons/flamingo.svg +85 -0
  5. package/dist/assets/icons/flamingo.svg.js +287 -0
  6. package/dist/assets/icons/flamingo.svg.js.map +1 -0
  7. package/dist/assets/icons/giraffe.svg +259 -0
  8. package/dist/assets/icons/giraffe.svg.js +756 -0
  9. package/dist/assets/icons/giraffe.svg.js.map +1 -0
  10. package/dist/assets/icons/penguin.svg +231 -0
  11. package/dist/assets/icons/penguin.svg.js +718 -0
  12. package/dist/assets/icons/penguin.svg.js.map +1 -0
  13. package/dist/assets/icons/sealion.svg +156 -0
  14. package/dist/assets/icons/sealion.svg.js +649 -0
  15. package/dist/assets/icons/sealion.svg.js.map +1 -0
  16. package/dist/components/DrawingTool/DrawingTool.d.ts +29 -0
  17. package/dist/components/DrawingTool/DrawingTool.js +277 -0
  18. package/dist/components/DrawingTool/DrawingTool.js.map +1 -0
  19. package/dist/components/DrawingTool/DrawingTool.stories.d.ts +6 -0
  20. package/dist/components/DrawingTool/DrawingTool.styles.d.ts +41 -0
  21. package/dist/components/DrawingTool/DrawingTool.styles.js +54 -0
  22. package/dist/components/DrawingTool/DrawingTool.styles.js.map +1 -0
  23. package/dist/components/DrawingTool/DrawingToolProvider.d.ts +56 -0
  24. package/dist/components/DrawingTool/DrawingToolProvider.js +182 -0
  25. package/dist/components/DrawingTool/DrawingToolProvider.js.map +1 -0
  26. package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.d.ts +21 -0
  27. package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.js +89 -0
  28. package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.js.map +1 -0
  29. package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.styles.d.ts +9 -0
  30. package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.styles.js +18 -0
  31. package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.styles.js.map +1 -0
  32. package/dist/components/DrawingTool/components/ColourToolbar/index.d.ts +2 -0
  33. package/dist/components/DrawingTool/components/ColourToolbar/index.js +8 -0
  34. package/dist/components/DrawingTool/components/ColourToolbar/index.js.map +1 -0
  35. package/dist/components/DrawingTool/components/FileInput/FileInput.d.ts +9 -0
  36. package/dist/components/DrawingTool/components/FileInput/FileInput.js +88 -0
  37. package/dist/components/DrawingTool/components/FileInput/FileInput.js.map +1 -0
  38. package/dist/components/DrawingTool/components/FileInput/FileInput.styles.d.ts +4 -0
  39. package/dist/components/DrawingTool/components/FileInput/FileInput.styles.js +22 -0
  40. package/dist/components/DrawingTool/components/FileInput/FileInput.styles.js.map +1 -0
  41. package/dist/components/DrawingTool/components/FileInput/index.d.ts +2 -0
  42. package/dist/components/DrawingTool/components/FileInput/index.js +8 -0
  43. package/dist/components/DrawingTool/components/FileInput/index.js.map +1 -0
  44. package/dist/components/DrawingTool/components/Header/Header.d.ts +9 -0
  45. package/dist/components/DrawingTool/components/Header/Header.js +38 -0
  46. package/dist/components/DrawingTool/components/Header/Header.js.map +1 -0
  47. package/dist/components/DrawingTool/components/Header/index.d.ts +2 -0
  48. package/dist/components/DrawingTool/components/Header/index.js +8 -0
  49. package/dist/components/DrawingTool/components/Header/index.js.map +1 -0
  50. package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.d.ts +8 -0
  51. package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.js +31 -0
  52. package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.js.map +1 -0
  53. package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.styles.d.ts +9 -0
  54. package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.styles.js +18 -0
  55. package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.styles.js.map +1 -0
  56. package/dist/components/DrawingTool/components/OpacityToggle/index.d.ts +2 -0
  57. package/dist/components/DrawingTool/components/OpacityToggle/index.js +8 -0
  58. package/dist/components/DrawingTool/components/OpacityToggle/index.js.map +1 -0
  59. package/dist/components/DrawingTool/components/Placeable/index.d.ts +9 -0
  60. package/dist/components/DrawingTool/components/Placeable/index.js +22 -0
  61. package/dist/components/DrawingTool/components/Placeable/index.js.map +1 -0
  62. package/dist/components/DrawingTool/index.d.ts +2 -0
  63. package/dist/components/DrawingTool/lib/Sketch.d.ts +90 -0
  64. package/dist/components/DrawingTool/lib/Sketch.js +414 -0
  65. package/dist/components/DrawingTool/lib/Sketch.js.map +1 -0
  66. package/dist/components/DrawingTool/lib/SketchCut.d.ts +22 -0
  67. package/dist/components/DrawingTool/lib/SketchCut.js +98 -0
  68. package/dist/components/DrawingTool/lib/SketchCut.js.map +1 -0
  69. package/dist/components/DrawingTool/lib/SketchCutModel.d.ts +6 -0
  70. package/dist/components/DrawingTool/lib/SketchCutModel.js +20 -0
  71. package/dist/components/DrawingTool/lib/SketchCutModel.js.map +1 -0
  72. package/dist/components/DrawingTool/lib/SketchLayer.d.ts +27 -0
  73. package/dist/components/DrawingTool/lib/SketchLayer.js +59 -0
  74. package/dist/components/DrawingTool/lib/SketchLayer.js.map +1 -0
  75. package/dist/components/DrawingTool/lib/SketchModel.d.ts +65 -0
  76. package/dist/components/DrawingTool/lib/SketchModel.js +137 -0
  77. package/dist/components/DrawingTool/lib/SketchModel.js.map +1 -0
  78. package/dist/components/DrawingTool/lib/SketchStrokeModel.d.ts +33 -0
  79. package/dist/components/DrawingTool/lib/SketchStrokeModel.js +48 -0
  80. package/dist/components/DrawingTool/lib/SketchStrokeModel.js.map +1 -0
  81. package/dist/components/DrawingTool/lib/createInteractionSurface.d.ts +16 -0
  82. package/dist/components/DrawingTool/lib/createInteractionSurface.js +56 -0
  83. package/dist/components/DrawingTool/lib/createInteractionSurface.js.map +1 -0
  84. package/dist/components/DrawingTool/lib/trace.d.ts +3 -0
  85. package/dist/components/DrawingTool/lib/trace.js +24 -0
  86. package/dist/components/DrawingTool/lib/trace.js.map +1 -0
  87. package/dist/components/DrawingTool/lib/trimCanvas.d.ts +2 -0
  88. package/dist/components/DrawingTool/lib/trimCanvas.js +42 -0
  89. package/dist/components/DrawingTool/lib/trimCanvas.js.map +1 -0
  90. package/dist/components/Icon/Icon.js +1 -1
  91. package/dist/components/Icon/icons.d.ts +6 -1
  92. package/dist/components/Icon/icons.js +11 -4
  93. package/dist/components/Icon/icons.js.map +1 -1
  94. package/dist/icons/AboutUs.d.ts +3 -0
  95. package/dist/icons/AboutUs.js +44 -0
  96. package/dist/icons/AboutUs.js.map +1 -0
  97. package/dist/icons/Activities.d.ts +3 -0
  98. package/dist/icons/Activities.js +48 -0
  99. package/dist/icons/Activities.js.map +1 -0
  100. package/dist/icons/Archive.d.ts +3 -0
  101. package/dist/icons/Archive.js +43 -0
  102. package/dist/icons/Archive.js.map +1 -0
  103. package/dist/icons/ArrowLeft.d.ts +3 -0
  104. package/dist/icons/ArrowLeft.js +43 -0
  105. package/dist/icons/ArrowLeft.js.map +1 -0
  106. package/dist/icons/ArrowRight.d.ts +3 -0
  107. package/dist/icons/ArrowRight.js +43 -0
  108. package/dist/icons/ArrowRight.js.map +1 -0
  109. package/dist/icons/Bear.d.ts +3 -0
  110. package/dist/icons/Bear.js +177 -0
  111. package/dist/icons/Bear.js.map +1 -0
  112. package/dist/icons/CardSkills.d.ts +3 -0
  113. package/dist/icons/CardSkills.js +41 -0
  114. package/dist/icons/CardSkills.js.map +1 -0
  115. package/dist/icons/Challenges.d.ts +3 -0
  116. package/dist/icons/Challenges.js +43 -0
  117. package/dist/icons/Challenges.js.map +1 -0
  118. package/dist/icons/Chart.d.ts +3 -0
  119. package/dist/icons/Chart.js +35 -0
  120. package/dist/icons/Chart.js.map +1 -0
  121. package/dist/icons/Checkmark.d.ts +3 -0
  122. package/dist/icons/Checkmark.js +35 -0
  123. package/dist/icons/Checkmark.js.map +1 -0
  124. package/dist/icons/Close.d.ts +3 -0
  125. package/dist/icons/Close.js +43 -0
  126. package/dist/icons/Close.js.map +1 -0
  127. package/dist/icons/CloseCopy.d.ts +3 -0
  128. package/dist/icons/CloseCopy.js +35 -0
  129. package/dist/icons/CloseCopy.js.map +1 -0
  130. package/dist/icons/Collect.d.ts +3 -0
  131. package/dist/icons/Collect.js +94 -0
  132. package/dist/icons/Collect.js.map +1 -0
  133. package/dist/icons/Comment.d.ts +3 -0
  134. package/dist/icons/Comment.js +48 -0
  135. package/dist/icons/Comment.js.map +1 -0
  136. package/dist/icons/Compass.d.ts +3 -0
  137. package/dist/icons/Compass.js +39 -0
  138. package/dist/icons/Compass.js.map +1 -0
  139. package/dist/icons/Controller.d.ts +3 -0
  140. package/dist/icons/Controller.js +71 -0
  141. package/dist/icons/Controller.js.map +1 -0
  142. package/dist/icons/Create.d.ts +3 -0
  143. package/dist/icons/Create.js +137 -0
  144. package/dist/icons/Create.js.map +1 -0
  145. package/dist/icons/Customise.d.ts +3 -0
  146. package/dist/icons/Customise.js +60 -0
  147. package/dist/icons/Customise.js.map +1 -0
  148. package/dist/icons/Download.d.ts +3 -0
  149. package/dist/icons/Download.js +35 -0
  150. package/dist/icons/Download.js.map +1 -0
  151. package/dist/icons/Draft.d.ts +3 -0
  152. package/dist/icons/Draft.js +77 -0
  153. package/dist/icons/Draft.js.map +1 -0
  154. package/dist/icons/DrawingTask.d.ts +3 -0
  155. package/dist/icons/DrawingTask.js +156 -0
  156. package/dist/icons/DrawingTask.js.map +1 -0
  157. package/dist/icons/DrawingToolArrowDown.d.ts +3 -0
  158. package/dist/icons/DrawingToolArrowDown.js +35 -0
  159. package/dist/icons/DrawingToolArrowDown.js.map +1 -0
  160. package/dist/icons/DrawingToolArrowLeft.d.ts +3 -0
  161. package/dist/icons/DrawingToolArrowLeft.js +37 -0
  162. package/dist/icons/DrawingToolArrowLeft.js.map +1 -0
  163. package/dist/icons/DrawingToolArrowRight.d.ts +3 -0
  164. package/dist/icons/DrawingToolArrowRight.js +37 -0
  165. package/dist/icons/DrawingToolArrowRight.js.map +1 -0
  166. package/dist/icons/DrawingToolArrowUp.d.ts +3 -0
  167. package/dist/icons/DrawingToolArrowUp.js +35 -0
  168. package/dist/icons/DrawingToolArrowUp.js.map +1 -0
  169. package/dist/icons/DrawingToolCamera.d.ts +3 -0
  170. package/dist/icons/DrawingToolCamera.js +66 -0
  171. package/dist/icons/DrawingToolCamera.js.map +1 -0
  172. package/dist/icons/DrawingToolColorMixer.d.ts +3 -0
  173. package/dist/icons/DrawingToolColorMixer.js +37 -0
  174. package/dist/icons/DrawingToolColorMixer.js.map +1 -0
  175. package/dist/icons/DrawingToolEraser.d.ts +3 -0
  176. package/dist/icons/DrawingToolEraser.js +35 -0
  177. package/dist/icons/DrawingToolEraser.js.map +1 -0
  178. package/dist/icons/DrawingToolFillBrush.d.ts +3 -0
  179. package/dist/icons/DrawingToolFillBrush.js +45 -0
  180. package/dist/icons/DrawingToolFillBrush.js.map +1 -0
  181. package/dist/icons/DrawingToolLargeLine.d.ts +3 -0
  182. package/dist/icons/DrawingToolLargeLine.js +38 -0
  183. package/dist/icons/DrawingToolLargeLine.js.map +1 -0
  184. package/dist/icons/DrawingToolLineBrush.d.ts +3 -0
  185. package/dist/icons/DrawingToolLineBrush.js +39 -0
  186. package/dist/icons/DrawingToolLineBrush.js.map +1 -0
  187. package/dist/icons/DrawingToolMediumLine.d.ts +3 -0
  188. package/dist/icons/DrawingToolMediumLine.js +38 -0
  189. package/dist/icons/DrawingToolMediumLine.js.map +1 -0
  190. package/dist/icons/DrawingToolOpacityFull.d.ts +3 -0
  191. package/dist/icons/DrawingToolOpacityFull.js +35 -0
  192. package/dist/icons/DrawingToolOpacityFull.js.map +1 -0
  193. package/dist/icons/DrawingToolOpacityHalf.d.ts +3 -0
  194. package/dist/icons/DrawingToolOpacityHalf.js +35 -0
  195. package/dist/icons/DrawingToolOpacityHalf.js.map +1 -0
  196. package/dist/icons/DrawingToolRedo.d.ts +3 -0
  197. package/dist/icons/DrawingToolRedo.js +37 -0
  198. package/dist/icons/DrawingToolRedo.js.map +1 -0
  199. package/dist/icons/DrawingToolSmallLine.d.ts +3 -0
  200. package/dist/icons/DrawingToolSmallLine.js +38 -0
  201. package/dist/icons/DrawingToolSmallLine.js.map +1 -0
  202. package/dist/icons/DrawingToolStickers.d.ts +3 -0
  203. package/dist/icons/DrawingToolStickers.js +66 -0
  204. package/dist/icons/DrawingToolStickers.js.map +1 -0
  205. package/dist/icons/DrawingToolUndo.d.ts +3 -0
  206. package/dist/icons/DrawingToolUndo.js +37 -0
  207. package/dist/icons/DrawingToolUndo.js.map +1 -0
  208. package/dist/icons/Egg.d.ts +3 -0
  209. package/dist/icons/Egg.js +62 -0
  210. package/dist/icons/Egg.js.map +1 -0
  211. package/dist/icons/Enclosure.d.ts +3 -0
  212. package/dist/icons/Enclosure.js +76 -0
  213. package/dist/icons/Enclosure.js.map +1 -0
  214. package/dist/icons/Exclamation.d.ts +3 -0
  215. package/dist/icons/Exclamation.js +39 -0
  216. package/dist/icons/Exclamation.js.map +1 -0
  217. package/dist/icons/ExclamationGrey.d.ts +3 -0
  218. package/dist/icons/ExclamationGrey.js +37 -0
  219. package/dist/icons/ExclamationGrey.js.map +1 -0
  220. package/dist/icons/Eye.d.ts +3 -0
  221. package/dist/icons/Eye.js +42 -0
  222. package/dist/icons/Eye.js.map +1 -0
  223. package/dist/icons/Facebook.d.ts +3 -0
  224. package/dist/icons/Facebook.js +35 -0
  225. package/dist/icons/Facebook.js.map +1 -0
  226. package/dist/icons/Filter.d.ts +3 -0
  227. package/dist/icons/Filter.js +52 -0
  228. package/dist/icons/Filter.js.map +1 -0
  229. package/dist/icons/Flag.d.ts +3 -0
  230. package/dist/icons/Flag.js +47 -0
  231. package/dist/icons/Flag.js.map +1 -0
  232. package/dist/icons/Flamingo.d.ts +3 -0
  233. package/dist/icons/Flamingo.js +101 -0
  234. package/dist/icons/Flamingo.js.map +1 -0
  235. package/dist/icons/ForYou.d.ts +3 -0
  236. package/dist/icons/ForYou.js +61 -0
  237. package/dist/icons/ForYou.js.map +1 -0
  238. package/dist/icons/Games.d.ts +3 -0
  239. package/dist/icons/Games.js +73 -0
  240. package/dist/icons/Games.js.map +1 -0
  241. package/dist/icons/Gift.d.ts +3 -0
  242. package/dist/icons/Gift.js +54 -0
  243. package/dist/icons/Gift.js.map +1 -0
  244. package/dist/icons/Giraffe.d.ts +3 -0
  245. package/dist/icons/Giraffe.js +244 -0
  246. package/dist/icons/Giraffe.js.map +1 -0
  247. package/dist/icons/Goals.d.ts +3 -0
  248. package/dist/icons/Goals.js +46 -0
  249. package/dist/icons/Goals.js.map +1 -0
  250. package/dist/icons/Heart.d.ts +3 -0
  251. package/dist/icons/Heart.js +49 -0
  252. package/dist/icons/Heart.js.map +1 -0
  253. package/dist/icons/Help.d.ts +3 -0
  254. package/dist/icons/Help.js +43 -0
  255. package/dist/icons/Help.js.map +1 -0
  256. package/dist/icons/IdeaCreator.d.ts +3 -0
  257. package/dist/icons/IdeaCreator.js +46 -0
  258. package/dist/icons/IdeaCreator.js.map +1 -0
  259. package/dist/icons/Info.d.ts +3 -0
  260. package/dist/icons/Info.js +43 -0
  261. package/dist/icons/Info.js.map +1 -0
  262. package/dist/icons/Instagram.d.ts +3 -0
  263. package/dist/icons/Instagram.js +44 -0
  264. package/dist/icons/Instagram.js.map +1 -0
  265. package/dist/icons/Items.d.ts +3 -0
  266. package/dist/icons/Items.js +73 -0
  267. package/dist/icons/Items.js.map +1 -0
  268. package/dist/icons/Layers.d.ts +3 -0
  269. package/dist/icons/Layers.js +41 -0
  270. package/dist/icons/Layers.js.map +1 -0
  271. package/dist/icons/Lessons.d.ts +3 -0
  272. package/dist/icons/Lessons.js +38 -0
  273. package/dist/icons/Lessons.js.map +1 -0
  274. package/dist/icons/Link.d.ts +3 -0
  275. package/dist/icons/Link.js +44 -0
  276. package/dist/icons/Link.js.map +1 -0
  277. package/dist/icons/List.d.ts +3 -0
  278. package/dist/icons/List.js +53 -0
  279. package/dist/icons/List.js.map +1 -0
  280. package/dist/icons/Lock.d.ts +3 -0
  281. package/dist/icons/Lock.js +50 -0
  282. package/dist/icons/Lock.js.map +1 -0
  283. package/dist/icons/Logout.d.ts +3 -0
  284. package/dist/icons/Logout.js +43 -0
  285. package/dist/icons/Logout.js.map +1 -0
  286. package/dist/icons/Megaphone.d.ts +3 -0
  287. package/dist/icons/Megaphone.js +45 -0
  288. package/dist/icons/Megaphone.js.map +1 -0
  289. package/dist/icons/Menu.d.ts +3 -0
  290. package/dist/icons/Menu.js +48 -0
  291. package/dist/icons/Menu.js.map +1 -0
  292. package/dist/icons/Message.d.ts +3 -0
  293. package/dist/icons/Message.js +60 -0
  294. package/dist/icons/Message.js.map +1 -0
  295. package/dist/icons/Minus.d.ts +3 -0
  296. package/dist/icons/Minus.js +43 -0
  297. package/dist/icons/Minus.js.map +1 -0
  298. package/dist/icons/More.d.ts +3 -0
  299. package/dist/icons/More.js +48 -0
  300. package/dist/icons/More.js.map +1 -0
  301. package/dist/icons/MyHistory.d.ts +3 -0
  302. package/dist/icons/MyHistory.js +78 -0
  303. package/dist/icons/MyHistory.js.map +1 -0
  304. package/dist/icons/MyZoo.d.ts +3 -0
  305. package/dist/icons/MyZoo.js +81 -0
  306. package/dist/icons/MyZoo.js.map +1 -0
  307. package/dist/icons/New.d.ts +3 -0
  308. package/dist/icons/New.js +43 -0
  309. package/dist/icons/New.js.map +1 -0
  310. package/dist/icons/Notifications.d.ts +3 -0
  311. package/dist/icons/Notifications.js +39 -0
  312. package/dist/icons/Notifications.js.map +1 -0
  313. package/dist/icons/Nzk.d.ts +3 -0
  314. package/dist/icons/Nzk.js +42 -0
  315. package/dist/icons/Nzk.js.map +1 -0
  316. package/dist/icons/NzkPurple.d.ts +3 -0
  317. package/dist/icons/NzkPurple.js +49 -0
  318. package/dist/icons/NzkPurple.js.map +1 -0
  319. package/dist/icons/NzktvBlue.d.ts +3 -0
  320. package/dist/icons/NzktvBlue.js +36 -0
  321. package/dist/icons/NzktvBlue.js.map +1 -0
  322. package/dist/icons/NzktvGreen.d.ts +3 -0
  323. package/dist/icons/NzktvGreen.js +36 -0
  324. package/dist/icons/NzktvGreen.js.map +1 -0
  325. package/dist/icons/Orb.d.ts +3 -0
  326. package/dist/icons/Orb.js +46 -0
  327. package/dist/icons/Orb.js.map +1 -0
  328. package/dist/icons/OrbDisabled.d.ts +3 -0
  329. package/dist/icons/OrbDisabled.js +47 -0
  330. package/dist/icons/OrbDisabled.js.map +1 -0
  331. package/dist/icons/Padlock.d.ts +3 -0
  332. package/dist/icons/Padlock.js +43 -0
  333. package/dist/icons/Padlock.js.map +1 -0
  334. package/dist/icons/Pdf.d.ts +3 -0
  335. package/dist/icons/Pdf.js +46 -0
  336. package/dist/icons/Pdf.js.map +1 -0
  337. package/dist/icons/Pencil.d.ts +3 -0
  338. package/dist/icons/Pencil.js +77 -0
  339. package/dist/icons/Pencil.js.map +1 -0
  340. package/dist/icons/Pending.d.ts +3 -0
  341. package/dist/icons/Pending.js +74 -0
  342. package/dist/icons/Pending.js.map +1 -0
  343. package/dist/icons/Penguin.d.ts +3 -0
  344. package/dist/icons/Penguin.js +214 -0
  345. package/dist/icons/Penguin.js.map +1 -0
  346. package/dist/icons/Play.d.ts +3 -0
  347. package/dist/icons/Play.js +46 -0
  348. package/dist/icons/Play.js.map +1 -0
  349. package/dist/icons/PlayVideo.d.ts +3 -0
  350. package/dist/icons/PlayVideo.js +43 -0
  351. package/dist/icons/PlayVideo.js.map +1 -0
  352. package/dist/icons/Plus.d.ts +3 -0
  353. package/dist/icons/Plus.js +43 -0
  354. package/dist/icons/Plus.js.map +1 -0
  355. package/dist/icons/Private.d.ts +3 -0
  356. package/dist/icons/Private.js +63 -0
  357. package/dist/icons/Private.js.map +1 -0
  358. package/dist/icons/Progress.d.ts +3 -0
  359. package/dist/icons/Progress.js +43 -0
  360. package/dist/icons/Progress.js.map +1 -0
  361. package/dist/icons/Projects.d.ts +3 -0
  362. package/dist/icons/Projects.js +50 -0
  363. package/dist/icons/Projects.js.map +1 -0
  364. package/dist/icons/Refresh.d.ts +3 -0
  365. package/dist/icons/Refresh.js +39 -0
  366. package/dist/icons/Refresh.js.map +1 -0
  367. package/dist/icons/Rewards.d.ts +3 -0
  368. package/dist/icons/Rewards.js +69 -0
  369. package/dist/icons/Rewards.js.map +1 -0
  370. package/dist/icons/Sealion.d.ts +3 -0
  371. package/dist/icons/Sealion.js +184 -0
  372. package/dist/icons/Sealion.js.map +1 -0
  373. package/dist/icons/Search.d.ts +3 -0
  374. package/dist/icons/Search.js +49 -0
  375. package/dist/icons/Search.js.map +1 -0
  376. package/dist/icons/Send.d.ts +3 -0
  377. package/dist/icons/Send.js +59 -0
  378. package/dist/icons/Send.js.map +1 -0
  379. package/dist/icons/Settings.d.ts +3 -0
  380. package/dist/icons/Settings.js +43 -0
  381. package/dist/icons/Settings.js.map +1 -0
  382. package/dist/icons/Sharing.d.ts +3 -0
  383. package/dist/icons/Sharing.js +49 -0
  384. package/dist/icons/Sharing.js.map +1 -0
  385. package/dist/icons/Shop.d.ts +3 -0
  386. package/dist/icons/Shop.js +112 -0
  387. package/dist/icons/Shop.js.map +1 -0
  388. package/dist/icons/SoundOff.d.ts +3 -0
  389. package/dist/icons/SoundOff.js +39 -0
  390. package/dist/icons/SoundOff.js.map +1 -0
  391. package/dist/icons/SoundOn.d.ts +3 -0
  392. package/dist/icons/SoundOn.js +42 -0
  393. package/dist/icons/SoundOn.js.map +1 -0
  394. package/dist/icons/StarWriting.d.ts +3 -0
  395. package/dist/icons/StarWriting.js +49 -0
  396. package/dist/icons/StarWriting.js.map +1 -0
  397. package/dist/icons/Task.d.ts +3 -0
  398. package/dist/icons/Task.js +47 -0
  399. package/dist/icons/Task.js.map +1 -0
  400. package/dist/icons/TextToSpeech.d.ts +3 -0
  401. package/dist/icons/TextToSpeech.js +40 -0
  402. package/dist/icons/TextToSpeech.js.map +1 -0
  403. package/dist/icons/Tick.d.ts +3 -0
  404. package/dist/icons/Tick.js +43 -0
  405. package/dist/icons/Tick.js.map +1 -0
  406. package/dist/icons/Torch.d.ts +3 -0
  407. package/dist/icons/Torch.js +52 -0
  408. package/dist/icons/Torch.js.map +1 -0
  409. package/dist/icons/Transfer.d.ts +3 -0
  410. package/dist/icons/Transfer.js +40 -0
  411. package/dist/icons/Transfer.js.map +1 -0
  412. package/dist/icons/Trash.d.ts +3 -0
  413. package/dist/icons/Trash.js +50 -0
  414. package/dist/icons/Trash.js.map +1 -0
  415. package/dist/icons/TrashCopy.d.ts +3 -0
  416. package/dist/icons/TrashCopy.js +50 -0
  417. package/dist/icons/TrashCopy.js.map +1 -0
  418. package/dist/icons/TrashWhite.d.ts +3 -0
  419. package/dist/icons/TrashWhite.js +50 -0
  420. package/dist/icons/TrashWhite.js.map +1 -0
  421. package/dist/icons/Trophy.d.ts +3 -0
  422. package/dist/icons/Trophy.js +95 -0
  423. package/dist/icons/Trophy.js.map +1 -0
  424. package/dist/icons/Twitter.d.ts +3 -0
  425. package/dist/icons/Twitter.js +35 -0
  426. package/dist/icons/Twitter.js.map +1 -0
  427. package/dist/icons/Upload.d.ts +3 -0
  428. package/dist/icons/Upload.js +43 -0
  429. package/dist/icons/Upload.js.map +1 -0
  430. package/dist/icons/User.d.ts +3 -0
  431. package/dist/icons/User.js +37 -0
  432. package/dist/icons/User.js.map +1 -0
  433. package/dist/icons/Users.d.ts +3 -0
  434. package/dist/icons/Users.js +44 -0
  435. package/dist/icons/Users.js.map +1 -0
  436. package/dist/icons/Video.d.ts +3 -0
  437. package/dist/icons/Video.js +53 -0
  438. package/dist/icons/Video.js.map +1 -0
  439. package/dist/icons/Whatsapp.d.ts +3 -0
  440. package/dist/icons/Whatsapp.js +41 -0
  441. package/dist/icons/Whatsapp.js.map +1 -0
  442. package/dist/icons/Writing.d.ts +3 -0
  443. package/dist/icons/Writing.js +75 -0
  444. package/dist/icons/Writing.js.map +1 -0
  445. package/dist/icons/WritingTypeAdventureStory.d.ts +3 -0
  446. package/dist/icons/WritingTypeAdventureStory.js +43 -0
  447. package/dist/icons/WritingTypeAdventureStory.js.map +1 -0
  448. package/dist/icons/WritingTypeBiography.d.ts +3 -0
  449. package/dist/icons/WritingTypeBiography.js +43 -0
  450. package/dist/icons/WritingTypeBiography.js.map +1 -0
  451. package/dist/icons/WritingTypeDiaryEntry.d.ts +3 -0
  452. package/dist/icons/WritingTypeDiaryEntry.js +47 -0
  453. package/dist/icons/WritingTypeDiaryEntry.js.map +1 -0
  454. package/dist/icons/WritingTypeFreeWrite.d.ts +3 -0
  455. package/dist/icons/WritingTypeFreeWrite.js +46 -0
  456. package/dist/icons/WritingTypeFreeWrite.js.map +1 -0
  457. package/dist/icons/WritingTypeInstructions.d.ts +3 -0
  458. package/dist/icons/WritingTypeInstructions.js +43 -0
  459. package/dist/icons/WritingTypeInstructions.js.map +1 -0
  460. package/dist/icons/WritingTypeLetterWriting.d.ts +3 -0
  461. package/dist/icons/WritingTypeLetterWriting.js +43 -0
  462. package/dist/icons/WritingTypeLetterWriting.js.map +1 -0
  463. package/dist/icons/WritingTypeNewspaperArticle.d.ts +3 -0
  464. package/dist/icons/WritingTypeNewspaperArticle.js +44 -0
  465. package/dist/icons/WritingTypeNewspaperArticle.js.map +1 -0
  466. package/dist/icons/WritingTypePersuasiveWriting.d.ts +3 -0
  467. package/dist/icons/WritingTypePersuasiveWriting.js +43 -0
  468. package/dist/icons/WritingTypePersuasiveWriting.js.map +1 -0
  469. package/dist/icons/WritingTypePlayscript.d.ts +3 -0
  470. package/dist/icons/WritingTypePlayscript.js +44 -0
  471. package/dist/icons/WritingTypePlayscript.js.map +1 -0
  472. package/dist/icons/WritingTypePoem.d.ts +3 -0
  473. package/dist/icons/WritingTypePoem.js +42 -0
  474. package/dist/icons/WritingTypePoem.js.map +1 -0
  475. package/dist/icons/WritingTypeReport.d.ts +3 -0
  476. package/dist/icons/WritingTypeReport.js +50 -0
  477. package/dist/icons/WritingTypeReport.js.map +1 -0
  478. package/dist/icons/ZooPoint.d.ts +3 -0
  479. package/dist/icons/ZooPoint.js +75 -0
  480. package/dist/icons/ZooPoint.js.map +1 -0
  481. package/dist/icons/index.d.ts +129 -0
  482. package/dist/index.d.ts +1 -0
  483. package/dist/index.js +258 -0
  484. package/dist/index.js.map +1 -1
  485. package/package.json +3 -1
@@ -0,0 +1,43 @@
1
+ 'use strict';
2
+
3
+ var tslib = require('tslib');
4
+ var React = require('react');
5
+
6
+ function _interopNamespace(e) {
7
+ if (e && e.__esModule) return e;
8
+ var n = Object.create(null);
9
+ if (e) {
10
+ Object.keys(e).forEach(function (k) {
11
+ if (k !== 'default') {
12
+ var d = Object.getOwnPropertyDescriptor(e, k);
13
+ Object.defineProperty(n, k, d.get ? d : {
14
+ enumerable: true,
15
+ get: function () {
16
+ return e[k];
17
+ }
18
+ });
19
+ }
20
+ });
21
+ }
22
+ n['default'] = e;
23
+ return Object.freeze(n);
24
+ }
25
+
26
+ var React__namespace = /*#__PURE__*/_interopNamespace(React);
27
+
28
+ var SvgInfo = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 120" }, props),
29
+ React__namespace.createElement("defs", null,
30
+ React__namespace.createElement("style", null, ".info_svg__c{fill:#afafaf}.info_svg__d{fill:#fff}")),
31
+ React__namespace.createElement("path", { style: {
32
+ fill: "none",
33
+ }, d: "M0 0h120v120H0z" }),
34
+ React__namespace.createElement("g", { style: {
35
+ opacity: 0.3,
36
+ } },
37
+ React__namespace.createElement("path", { d: "M60.049 44.066A10.838 10.838 0 0 0 70.887 33.23v-5.4A10.838 10.838 0 0 0 60.05 16.993a10.836 10.836 0 0 0-10.837 10.836v5.4a10.837 10.837 0 0 0 10.836 10.837ZM77.244 94.776c-.381.03-.639.051-.785.051-2.674 0-4.483-.629-5.438-1.892q-1.274-1.681-1.414-6.4.078-9.285.465-27.434.107-5.468.162-8.388c-.035.009-.07.017-.1.027.043-2.235.078-4.051.1-5.431a134.011 134.011 0 0 1-13.645 2.951q-7.091 1.163-14.723 1.707s.1 5.4 0 5.4l.324 5.844c.324-.039.639-.063.948-.081s.731-.03 1.274-.03q3.734 0 5.031 1.818t1.3 9.711v10.353q0 8.013-1.409 9.934t-5.575 1.921c-.141 0-.4-.021-.757-.052a7.781 7.781 0 0 0-.917-.055v11.61q5.412-.347 9.742-.551t6.978-.205q3.085 0 7.2.163t12.13.593V94.716a8.234 8.234 0 0 0-.891.06Z" }),
38
+ React__namespace.createElement("path", { d: "M70.234 45.315q-.055 2.92-.162 8.388-.487 22.794-.485 31.605 0 5.737 1.435 7.632c.956 1.263 2.764 1.892 5.438 1.892.146 0 .4-.021.785-.051a7.993 7.993 0 0 1 .89-.056v6.22q-8.012-.43-12.13-.593t-7.2-.163q-2.648 0-6.978.2t-9.742.551v-6.207a7.781 7.781 0 0 1 .917.055c.358.03.615.052.757.052q4.17 0 5.575-1.921t1.409-9.934V67.228q0-7.894-1.3-9.711t-5.031-1.819c-.543 0-.965.013-1.274.031s-.624.042-.948.081l-.324-5.843q7.632-.544 14.723-1.707a134.011 134.011 0 0 0 13.645-2.945ZM70.887 27.827a10.837 10.837 0 0 1-10.838 10.835 10.837 10.837 0 0 1-10.836-10.838A10.836 10.836 0 0 1 60.05 16.988a10.838 10.838 0 0 1 10.837 10.837Z" })),
39
+ React__namespace.createElement("path", { className: "info_svg__c", d: "M60.049 40.728a10.837 10.837 0 0 0 10.838-10.835v-5.4A10.838 10.838 0 0 0 60.05 13.656a10.837 10.837 0 0 0-10.837 10.836v5.4a10.837 10.837 0 0 0 10.836 10.836ZM77.244 91.438c-.381.03-.639.051-.785.051-2.674 0-4.483-.629-5.438-1.892q-1.274-1.681-1.414-6.4.078-9.285.465-27.435.107-5.468.162-8.388c-.035.009-.07.017-.1.027.043-2.235.078-4.051.1-5.431a134.143 134.143 0 0 1-13.645 2.951q-7.091 1.163-14.723 1.707s.1 5.4 0 5.4l.324 5.843c.324-.039.639-.063.948-.081s.731-.031 1.274-.031q3.734 0 5.031 1.819t1.3 9.711v10.353q0 8.013-1.409 9.934t-5.575 1.921c-.141 0-.4-.021-.757-.051a7.679 7.679 0 0 0-.917-.056v11.611q5.412-.347 9.742-.551t6.978-.2q3.085 0 7.2.163t12.13.593V91.381a8.361 8.361 0 0 0-.891.057Z" }),
40
+ React__namespace.createElement("path", { className: "info_svg__d", d: "M70.234 41.977q-.055 2.919-.162 8.388-.487 22.794-.485 31.6 0 5.738 1.435 7.632c.956 1.263 2.764 1.892 5.438 1.892.146 0 .4-.021.785-.051a8.112 8.112 0 0 1 .89-.056v6.22q-8.012-.429-12.13-.593t-7.2-.163q-2.648 0-6.978.205t-9.742.551v-6.207a7.679 7.679 0 0 1 .917.056c.358.03.615.051.757.051q4.17 0 5.575-1.921t1.409-9.934V63.89q0-7.894-1.3-9.71t-5.031-1.819c-.543 0-.965.012-1.274.03s-.624.042-.948.081l-.324-5.844q7.632-.543 14.723-1.707a134.143 134.143 0 0 0 13.645-2.944ZM70.887 24.488a10.838 10.838 0 0 1-10.838 10.836 10.837 10.837 0 0 1-10.836-10.838A10.837 10.837 0 0 1 60.05 13.65a10.838 10.838 0 0 1 10.837 10.837Z" }))); };
41
+
42
+ module.exports = SvgInfo;
43
+ //# sourceMappingURL=Info.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Info.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgInstagram: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgInstagram;
@@ -0,0 +1,44 @@
1
+ 'use strict';
2
+
3
+ var tslib = require('tslib');
4
+ var React = require('react');
5
+
6
+ function _interopNamespace(e) {
7
+ if (e && e.__esModule) return e;
8
+ var n = Object.create(null);
9
+ if (e) {
10
+ Object.keys(e).forEach(function (k) {
11
+ if (k !== 'default') {
12
+ var d = Object.getOwnPropertyDescriptor(e, k);
13
+ Object.defineProperty(n, k, d.get ? d : {
14
+ enumerable: true,
15
+ get: function () {
16
+ return e[k];
17
+ }
18
+ });
19
+ }
20
+ });
21
+ }
22
+ n['default'] = e;
23
+ return Object.freeze(n);
24
+ }
25
+
26
+ var React__namespace = /*#__PURE__*/_interopNamespace(React);
27
+
28
+ var SvgInstagram = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ "data-name": "Icon - Instagram", xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 120" }, props),
29
+ React__namespace.createElement("path", { fill: "none", d: "M0 0h120v120H0z" }),
30
+ React__namespace.createElement("g", { transform: "translate(25.241 30.241)", fill: "rgba(0,0,0,0.3)" },
31
+ React__namespace.createElement("path", { "data-name": "Path 1408", d: "M57.932 0H11.586A11.621 11.621 0 0 0 0 11.586v46.346a11.621 11.621 0 0 0 11.586 11.587h46.346a11.621 11.621 0 0 0 11.587-11.587V11.586A11.621 11.621 0 0 0 57.932 0Zm5.793 57.932a5.81 5.81 0 0 1-5.793 5.793H11.586a5.81 5.81 0 0 1-5.793-5.793V11.586a5.81 5.81 0 0 1 5.793-5.793h46.346a5.81 5.81 0 0 1 5.793 5.793Z" }),
32
+ React__namespace.createElement("path", { "data-name": "Path 1409", d: "M34.76 17.38a17.38 17.38 0 1 0 17.38 17.38 17.431 17.431 0 0 0-17.38-17.38Zm0 28.966A11.586 11.586 0 1 1 46.346 34.76 11.621 11.621 0 0 1 34.76 46.346Z" }),
33
+ React__namespace.createElement("ellipse", { "data-name": "Ellipse 133", cx: 4.5, cy: 4, rx: 4.5, ry: 4, transform: "translate(49 12)" })),
34
+ React__namespace.createElement("g", { "data-name": "instagram", transform: "translate(25.241 26.241)", fill: "#afafaf" },
35
+ React__namespace.createElement("path", { "data-name": "Path 1408", d: "M57.932 0H11.586A11.621 11.621 0 0 0 0 11.586v46.346a11.621 11.621 0 0 0 11.586 11.587h46.346a11.621 11.621 0 0 0 11.587-11.587V11.586A11.621 11.621 0 0 0 57.932 0Zm5.793 57.932a5.81 5.81 0 0 1-5.793 5.793H11.586a5.81 5.81 0 0 1-5.793-5.793V11.586a5.81 5.81 0 0 1 5.793-5.793h46.346a5.81 5.81 0 0 1 5.793 5.793Z" }),
36
+ React__namespace.createElement("path", { "data-name": "Path 1409", d: "M34.76 17.38a17.38 17.38 0 1 0 17.38 17.38 17.431 17.431 0 0 0-17.38-17.38Zm0 28.966A11.586 11.586 0 1 1 46.346 34.76 11.621 11.621 0 0 1 34.76 46.346Z" }),
37
+ React__namespace.createElement("ellipse", { "data-name": "Ellipse 133", cx: 4.5, cy: 4, rx: 4.5, ry: 4, transform: "translate(49 12)" })),
38
+ React__namespace.createElement("g", { "data-name": "instagram", transform: "translate(25.241 21.241)", fill: "#fff" },
39
+ React__namespace.createElement("path", { "data-name": "Path 1408", d: "M57.932 0H11.586A11.621 11.621 0 0 0 0 11.586v46.346a11.621 11.621 0 0 0 11.586 11.587h46.346a11.621 11.621 0 0 0 11.587-11.587V11.586A11.621 11.621 0 0 0 57.932 0Zm5.793 57.932a5.81 5.81 0 0 1-5.793 5.793H11.586a5.81 5.81 0 0 1-5.793-5.793V11.586a5.81 5.81 0 0 1 5.793-5.793h46.346a5.81 5.81 0 0 1 5.793 5.793Z" }),
40
+ React__namespace.createElement("path", { "data-name": "Path 1409", d: "M34.76 17.38a17.38 17.38 0 1 0 17.38 17.38 17.431 17.431 0 0 0-17.38-17.38Zm0 28.966A11.586 11.586 0 1 1 46.346 34.76 11.621 11.621 0 0 1 34.76 46.346Z" }),
41
+ React__namespace.createElement("ellipse", { "data-name": "Ellipse 133", cx: 4.5, cy: 4, rx: 4.5, ry: 4, transform: "translate(49 12)" })))); };
42
+
43
+ module.exports = SvgInstagram;
44
+ //# sourceMappingURL=Instagram.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Instagram.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgItems: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgItems;
@@ -0,0 +1,73 @@
1
+ 'use strict';
2
+
3
+ var tslib = require('tslib');
4
+ var React = require('react');
5
+
6
+ function _interopNamespace(e) {
7
+ if (e && e.__esModule) return e;
8
+ var n = Object.create(null);
9
+ if (e) {
10
+ Object.keys(e).forEach(function (k) {
11
+ if (k !== 'default') {
12
+ var d = Object.getOwnPropertyDescriptor(e, k);
13
+ Object.defineProperty(n, k, d.get ? d : {
14
+ enumerable: true,
15
+ get: function () {
16
+ return e[k];
17
+ }
18
+ });
19
+ }
20
+ });
21
+ }
22
+ n['default'] = e;
23
+ return Object.freeze(n);
24
+ }
25
+
26
+ var React__namespace = /*#__PURE__*/_interopNamespace(React);
27
+
28
+ var SvgItems = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 120" }, props),
29
+ React__namespace.createElement("defs", null,
30
+ React__namespace.createElement("style", null, ".items_svg__d{fill:#24617d}.items_svg__e{fill:#397c9f}.items_svg__i{fill:#b24e2b}")),
31
+ React__namespace.createElement("path", { style: {
32
+ fill: "none",
33
+ }, d: "M0 0h120v120H0z" }),
34
+ React__namespace.createElement("g", { style: {
35
+ opacity: 0.4,
36
+ mixBlendMode: "multiply",
37
+ isolation: "isolate",
38
+ } },
39
+ React__namespace.createElement("path", { d: "m36.706 28.106 48.677 3.931s8.768-.152 11.64 4.686 3.477 14.21 3.477 15.57V89.33s-.3 6.047-5.9 7.861-17.082 5.9-17.082 5.9a39.8 39.8 0 0 1-9.826-.152c-5.442-.756-44.444-8.616-44.444-8.616s-3.628.907-3.628-6.047V62.728s-3.931-.6-4.082-3.779.151-11.489.151-11.489a17.573 17.573 0 0 1 7.71-14.059c8.016-5.597 13.307-5.295 13.307-5.295Z" }),
40
+ React__namespace.createElement("path", { d: "m41.113 30.745 5.744-1.231.293-6.682 18.814 1.055 1.172 4.982 1.817 4.22 6.039-1.892-.353-5.024s-.352-5.568-5.627-6.037-17.525-1.055-17.525-1.055-7.385-.7-10.726 1.231.352 10.433.352 10.433Z" }),
41
+ React__namespace.createElement("path", { d: "M37.244 30.276S35.31 19.667 43.223 19.96s19.635 1.055 19.635 1.055c3.2.012 5.728 1.194 5.92 5.862l.175 6.212-3.868-.175.041-5.135c-.085-2.152-1.139-3.207-3.714-3.376-3.516-.23-18.131-.691-18.131-.691s-2.168-.118-2.227 2.52.059 4.513.059 4.513ZM49.007 67.249s-.72 10.8-.792 15.982-.072 8.567-.072 8.567.432 6.552-2.736 10.583l-9.43-1.656-2.664-1.727s1.368-1.44 1.512-4.968.864-6.839-.36-8.279-2.016-5.543-2.016-5.543.072-6.839 1.224-8.063a4.607 4.607 0 0 0 1.08-3.024s.576-3.455.792-3.959 13.462 2.087 13.462 2.087Z" })),
42
+ React__namespace.createElement("path", { d: "M-891.176 2642.075-842.5 2646s8.768-.151 11.64 4.686 3.477 14.21 3.477 15.571v37.043s-.3 6.046-5.9 7.86-17.082 5.9-17.082 5.9a39.773 39.773 0 0 1-9.826-.151c-5.442-.756-44.444-8.617-44.444-8.617s-3.628.907-3.628-6.047v-25.547s-3.931-.605-4.082-3.78.151-11.489.151-11.489a17.572 17.572 0 0 1 7.71-14.058c8.017-5.599 13.308-5.296 13.308-5.296Z", style: {
43
+ fill: "#4a8abc",
44
+ }, transform: "translate(927.882 -2618.243)" }),
45
+ React__namespace.createElement("path", { className: "items_svg__d", d: "m69.056 60.264 3.749.558-.006-12.546-4.213-1.127s-2.316 12.135.47 13.115Z" }),
46
+ React__namespace.createElement("path", { className: "items_svg__d", d: "m72.799 48.276-5.639-.429 5.026-13.118 17.041-3.065 1.042 1.655-5.455 1.655-7.54 5-3.249 3.708s-1.348 3.061-1.226 4.594Z" }),
47
+ React__namespace.createElement("path", { className: "items_svg__e", d: "M54.982 72.335a5.766 5.766 0 0 0-5.111-5.9c-5.328-.792-11.591-1.368-11.591-1.368s-4.679.5-4.751 4.824 0 12.022 0 12.022.144 4.248 4.247 5.04 11.375 2.015 11.375 2.015 5.759-.288 5.831-4.607 0-12.026 0-12.026Zm-4.751 10.8c0 .72-1.3.864-1.3.864l-10.367-1.584c-3.528-1.008-1.08-12.526-1.08-12.526s7.991.72 10.151.864a2.747 2.747 0 0 1 2.592 1.943Z" }),
48
+ React__namespace.createElement("path", { d: "M-873.063 2689.564a5.875 5.875 0 0 0-5.209-6.016c-5.43-.807-11.813-1.394-11.813-1.394s-4.769.513-4.842 4.916 0 12.252 0 12.252.147 4.329 4.329 5.136 11.592 2.054 11.592 2.054 5.869-.293 5.943-4.7 0-12.248 0-12.248Zm-4.843 11.005c0 .734-1.32.881-1.32.881l-10.565-1.614c-3.595-1.027-1.1-12.766-1.1-12.766s8.144.733 10.345.88a2.8 2.8 0 0 1 2.641 1.981Z", style: {
49
+ fill: "#c1920e",
50
+ }, transform: "translate(927.882 -2618.243)" }),
51
+ React__namespace.createElement("path", { className: "items_svg__e", d: "M100.5 85.057V48.02c0-1.361-.6-10.733-3.477-15.571a6.526 6.526 0 0 0-.911-1.188l-11.031 1.491s-11.943 2.721-12.245 13.907 0 48.375 0 48.375-.3 4.081 4.686 3.779c0 0 11.489-4.082 17.082-5.9s5.896-7.856 5.896-7.856Z" }),
52
+ React__namespace.createElement("path", { className: "items_svg__e", d: "M96.112 31.257c-3.472-3.622-10.729-3.5-10.729-3.5l-10.391-.839-7.3 2.653L57.563 47.56s-1.965 16.327 4.082 16.629 7.407-3.93 7.407-3.93.3-7.408.3-9.373.3-8.012 4.535-12.547 11.187-5.593 11.187-5.593Z" }),
53
+ React__namespace.createElement("path", { d: "m-842.5 2646-48.677-3.93s-5.291-.3-13.3 5.291a17.572 17.572 0 0 0-7.71 14.058s-.3 8.315-.151 11.489 4.082 3.78 4.082 3.78 36.734 5.442 40.513 5.744a3.669 3.669 0 0 0 4.233-3.023s.454-11.338.454-12.85 1.36-6.8 5.291-12.7c3.609-5.414 14.731-7.512 16.526-7.819-.775-.04-1.261-.04-1.261-.04Z", style: {
54
+ fill: "#4f9dd3",
55
+ }, transform: "translate(927.882 -2618.243)" }),
56
+ React__namespace.createElement("path", { d: "m-842.5 2646-48.677-3.93s-5.291-.3-13.3 5.291a17.865 17.865 0 0 0-6.052 7.1l49.258 5.853a39.924 39.924 0 0 1 3.5-6.456c3.609-5.414 14.731-7.512 16.526-7.819-.769-.039-1.255-.039-1.255-.039Z", style: {
57
+ fill: "#58b4e6",
58
+ }, transform: "translate(927.882 -2618.243)" }),
59
+ React__namespace.createElement("path", { className: "items_svg__i", d: "m41.113 26.47 5.744-1.23.293-6.682 18.814 1.055 1.172 4.982 1.817 4.22 6.039-1.892-.353-5.024s-.352-5.568-5.627-6.037-17.525-1.055-17.525-1.055-7.385-.7-10.726 1.231.352 10.432.352 10.432Z" }),
60
+ React__namespace.createElement("path", { d: "M-890.638 2644.245s-1.934-10.609 5.979-10.316 19.635 1.055 19.635 1.055c3.2.012 5.728 1.194 5.92 5.861l.175 6.213-3.868-.176.041-5.134c-.085-2.153-1.139-3.207-3.714-3.376-3.516-.231-18.131-.692-18.131-.692s-2.168-.117-2.227 2.52.059 4.513.059 4.513Z", style: {
61
+ fill: "#933d21",
62
+ }, transform: "translate(927.882 -2618.243)" }),
63
+ React__namespace.createElement("path", { d: "M-878.875 2681.218s-.72 10.8-.792 15.982-.072 8.567-.072 8.567.432 6.551-2.736 10.583l-9.43-1.656-2.664-1.728s1.368-1.44 1.512-4.967.864-6.839-.36-8.279-2.016-5.544-2.016-5.544.072-6.839 1.224-8.063a4.6 4.6 0 0 0 1.08-3.023s.576-3.456.792-3.96 13.462 2.088 13.462 2.088Z", style: {
64
+ fill: "#993d20",
65
+ }, transform: "translate(927.882 -2618.243)" }),
66
+ React__namespace.createElement("path", { className: "items_svg__i", d: "m33.313 94.723 9.287 1.8c1.584-1.368 2.447-6.983 2.519-7.775s-.431-6.047-.431-6.047a62.058 62.058 0 0 1-.72-6.624 23.053 23.053 0 0 1 .792-6.479l.5-4.463.36-2.8c-3.941-.732-9.934-1.783-10.078-1.446-.216.5-.792 3.96-.792 3.96a4.6 4.6 0 0 1-1.08 3.023c-1.152 1.224-1.224 8.063-1.224 8.063s.792 4.1 2.016 5.544.5 4.751.36 8.279-1.509 4.965-1.509 4.965Z" }),
67
+ React__namespace.createElement("path", { d: "M-875.779 2689.425a5.765 5.765 0 0 0-5.112-5.9c-5.327-.792-11.59-1.368-11.59-1.368s-4.68.5-4.752 4.823 0 12.023 0 12.023.144 4.247 4.248 5.039 11.374 2.016 11.374 2.016 5.76-.288 5.832-4.608 0-12.025 0-12.025Zm-4.752 10.8c0 .72-1.3.864-1.3.864l-10.366-1.584c-3.528-1.008-1.08-12.527-1.08-12.527s7.991.72 10.151.864a2.747 2.747 0 0 1 2.591 1.944Z", style: {
68
+ fill: "#f7cc40",
69
+ }, transform: "translate(927.882 -2618.243)" }),
70
+ React__namespace.createElement("path", { className: "items_svg__d", d: "M81.89 37.474a7.626 7.626 0 0 1 1.732-.754 22.407 22.407 0 0 1 10.631-1.16 7.072 7.072 0 0 0-5.993-3.239l-3.179.43s-11.943 2.721-12.245 13.907c-.011.407-.021.852-.031 1.324a18.358 18.358 0 0 1 9.085-10.508Z" }))); };
71
+
72
+ module.exports = SvgItems;
73
+ //# sourceMappingURL=Items.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Items.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgLayers: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgLayers;
@@ -0,0 +1,41 @@
1
+ 'use strict';
2
+
3
+ var tslib = require('tslib');
4
+ var React = require('react');
5
+
6
+ function _interopNamespace(e) {
7
+ if (e && e.__esModule) return e;
8
+ var n = Object.create(null);
9
+ if (e) {
10
+ Object.keys(e).forEach(function (k) {
11
+ if (k !== 'default') {
12
+ var d = Object.getOwnPropertyDescriptor(e, k);
13
+ Object.defineProperty(n, k, d.get ? d : {
14
+ enumerable: true,
15
+ get: function () {
16
+ return e[k];
17
+ }
18
+ });
19
+ }
20
+ });
21
+ }
22
+ n['default'] = e;
23
+ return Object.freeze(n);
24
+ }
25
+
26
+ var React__namespace = /*#__PURE__*/_interopNamespace(React);
27
+
28
+ var SvgLayers = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ "data-name": "Icon - Manage", xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 120" }, props),
29
+ React__namespace.createElement("path", { fill: "none", d: "M0 0h120v120H0z" }),
30
+ React__namespace.createElement("path", { "data-name": "Path 1760", d: "m59.577 98.111-30.883-7.042a1.9 1.9 0 0 1 0-3.7l30.883-7.042a1.9 1.9 0 0 1 .843 0l30.883 7.042a1.9 1.9 0 0 1 0 3.7L60.42 98.111a1.9 1.9 0 0 1-.843 0Z", opacity: 0.3 }),
31
+ React__namespace.createElement("path", { "data-name": "Path 1761", d: "m60.19 65.262-34.032 7.76v6.5l34.032 7.76 34.032-7.76v-6.5Z", fill: "#afafaf" }),
32
+ React__namespace.createElement("path", { "data-name": "Path 1762", d: "m60.19 80.781-34.032-7.76 34.032-7.76 34.032 7.76Z", fill: "#fff" }),
33
+ React__namespace.createElement("path", { "data-name": "Path 1763", d: "m60 72.646 16.288-3.714-16.1-3.671L43.9 68.975Z", opacity: 0.1 }),
34
+ React__namespace.createElement("path", { "data-name": "Path 1764", d: "m60.19 46.464-34.032 7.76v6.5l34.032 7.76 34.032-7.76v-6.5Z", fill: "#afafaf" }),
35
+ React__namespace.createElement("path", { "data-name": "Path 1765", d: "m60.19 61.983-34.032-7.76 34.032-7.76 34.032 7.76Z", fill: "#fff" }),
36
+ React__namespace.createElement("path", { "data-name": "Path 1766", d: "m60 53.848 16.288-3.714-16.1-3.671L43.9 50.177Z", opacity: 0.1 }),
37
+ React__namespace.createElement("path", { "data-name": "Path 1767", d: "m60.19 27.666-34.032 7.76v6.5l34.032 7.76 34.032-7.76v-6.5Z", fill: "#afafaf" }),
38
+ React__namespace.createElement("path", { "data-name": "Path 1768", d: "m60.19 43.185-34.032-7.76 34.032-7.76 34.032 7.76Z", fill: "#fff" }))); };
39
+
40
+ module.exports = SvgLayers;
41
+ //# sourceMappingURL=Layers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Layers.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgLessons: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgLessons;
@@ -0,0 +1,38 @@
1
+ 'use strict';
2
+
3
+ var tslib = require('tslib');
4
+ var React = require('react');
5
+
6
+ function _interopNamespace(e) {
7
+ if (e && e.__esModule) return e;
8
+ var n = Object.create(null);
9
+ if (e) {
10
+ Object.keys(e).forEach(function (k) {
11
+ if (k !== 'default') {
12
+ var d = Object.getOwnPropertyDescriptor(e, k);
13
+ Object.defineProperty(n, k, d.get ? d : {
14
+ enumerable: true,
15
+ get: function () {
16
+ return e[k];
17
+ }
18
+ });
19
+ }
20
+ });
21
+ }
22
+ n['default'] = e;
23
+ return Object.freeze(n);
24
+ }
25
+
26
+ var React__namespace = /*#__PURE__*/_interopNamespace(React);
27
+
28
+ var SvgLessons = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 121.363 120" }, props),
29
+ React__namespace.createElement("defs", null,
30
+ React__namespace.createElement("style", null, ".lessons_svg__a,.lessons_svg__b{stroke:transparent}.lessons_svg__a{opacity:.3}.lessons_svg__b{fill:#5f89ff}")),
31
+ React__namespace.createElement("path", { className: "lessons_svg__a", d: "M17.309 88.726 15.591 63.07l-11.2.75-1.647-24.6 44.658-2.99 1.647 24.6-11.2.75 1.718 25.655ZM110.471 63.855l-3.756-9.552-3.756 9.552-8.542 3.357-4.954-1.959 8.783-3.451 9.232-21.029-21.944-1.9-6.208 6.546-4.991-7.518-21.944-1.9 12.593 51.148a128.434 128.434 0 0 0 21.326 1.847l9.056-20.63 7.594 3 3.756 9.529 3.756-9.529 9.529-3.768Z" }),
32
+ React__namespace.createElement("path", { className: "lessons_svg__b", d: "M17.309 79.726 15.591 54.07l-11.2.75-1.647-24.6 44.658-2.99 1.647 24.6-11.2.75 1.718 25.655ZM110.471 54.855l-3.756-9.552-3.756 9.552-8.542 3.357-4.954-1.959 8.783-3.451 9.232-21.029-21.944-1.9-6.208 6.546-4.991-7.518-21.944-1.9 12.593 51.148a128.434 128.434 0 0 0 21.326 1.847l9.056-20.63 7.594 3 3.756 9.529 3.756-9.529 9.529-3.768Z" }),
33
+ React__namespace.createElement("path", { style: {
34
+ fill: "none",
35
+ }, d: "M0 0h119.878v120H0z" }))); };
36
+
37
+ module.exports = SvgLessons;
38
+ //# sourceMappingURL=Lessons.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Lessons.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgLink: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgLink;
@@ -0,0 +1,44 @@
1
+ 'use strict';
2
+
3
+ var tslib = require('tslib');
4
+ var React = require('react');
5
+
6
+ function _interopNamespace(e) {
7
+ if (e && e.__esModule) return e;
8
+ var n = Object.create(null);
9
+ if (e) {
10
+ Object.keys(e).forEach(function (k) {
11
+ if (k !== 'default') {
12
+ var d = Object.getOwnPropertyDescriptor(e, k);
13
+ Object.defineProperty(n, k, d.get ? d : {
14
+ enumerable: true,
15
+ get: function () {
16
+ return e[k];
17
+ }
18
+ });
19
+ }
20
+ });
21
+ }
22
+ n['default'] = e;
23
+ return Object.freeze(n);
24
+ }
25
+
26
+ var React__namespace = /*#__PURE__*/_interopNamespace(React);
27
+
28
+ var SvgLink = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ "data-name": "Icon - Link", xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 120" }, props),
29
+ React__namespace.createElement("path", { fill: "none", d: "M0 0h120v120H0z" }),
30
+ React__namespace.createElement("path", { "data-name": "Path 1517", d: "M69.474 73.054a4.74 4.74 0 0 0-6.7 0l-8.549 8.549a10.717 10.717 0 0 1-15.157 0 10.65 10.65 0 0 1-2.833-5.079 10.655 10.655 0 0 1 2.833-5.079l8.548-8.548c1.59-1.589 1.59-10.115 0-11.7a4.74 4.74 0 0 0-6.7 0L21.437 70.676a4.741 4.741 0 0 0-1.389 3.352v5a4.741 4.741 0 0 0 1.389 3.352l21.862 21.862a4.723 4.723 0 0 0 3.351 1.388 4.725 4.725 0 0 0 3.352-1.388l19.48-19.48c1.584-1.594 1.584-10.119-.008-11.708Z", fill: "rgba(0,0,0,0.3)" }),
31
+ React__namespace.createElement("path", { "data-name": "Path 1518", d: "M98.652 43.875 76.791 22.014a4.739 4.739 0 0 0-6.7 0L50.612 41.493c-1.59 1.589-1.59 10.114 0 11.7a4.739 4.739 0 0 0 6.7 0l8.549-8.549a10.719 10.719 0 0 1 15.157 0 10.663 10.663 0 0 1 2.832 5.079 10.663 10.663 0 0 1-2.832 5.079l-8.549 8.549c-1.59 1.589-1.59 10.114 0 11.7a4.723 4.723 0 0 0 3.352 1.389 4.726 4.726 0 0 0 3.352-1.389l19.479-19.479c1.589-1.583 1.589-10.108 0-11.697Z", fill: "rgba(0,0,0,0.3)" }),
32
+ React__namespace.createElement("path", { "data-name": "Path 1519", d: "M76.048 44.618a4.74 4.74 0 0 0-6.7 0l-25.311 25.31c-1.589 1.59-1.589 10.115 0 11.7a4.725 4.725 0 0 0 3.352 1.389 4.724 4.724 0 0 0 3.352-1.389l25.311-25.31c1.585-1.585 1.585-10.111-.004-11.7Z", fill: "rgba(0,0,0,0.3)" }),
33
+ React__namespace.createElement("path", { "data-name": "Path 1520", d: "M46.642 100.625a4.725 4.725 0 0 1-3.351-1.388L21.429 77.375a4.741 4.741 0 0 1-1.389-3.352 4.741 4.741 0 0 1 1.389-3.352l19.479-19.479a4.741 4.741 0 0 1 6.7 0 4.739 4.739 0 0 1 0 6.7L39.06 66.44a10.718 10.718 0 0 0 0 15.158 10.717 10.717 0 0 0 15.157 0l8.549-8.549a4.74 4.74 0 0 1 6.7 0 4.74 4.74 0 0 1 0 6.7l-19.48 19.48a4.725 4.725 0 0 1-3.344 1.396Z" }),
34
+ React__namespace.createElement("path", { "data-name": "Path 1521", d: "M75.821 71.447a4.723 4.723 0 0 1-3.352-1.389 4.738 4.738 0 0 1 0-6.7l8.549-8.549a10.72 10.72 0 0 0 0-15.158 10.718 10.718 0 0 0-15.157 0L57.312 48.2a4.74 4.74 0 0 1-6.7 0 4.741 4.741 0 0 1 0-6.7l19.48-19.478a4.74 4.74 0 0 1 6.7 0l21.86 21.861a4.739 4.739 0 0 1 0 6.7L79.174 70.062a4.726 4.726 0 0 1-3.353 1.385Z" }),
35
+ React__namespace.createElement("path", { "data-name": "Path 1522", d: "M47.385 78.021a4.722 4.722 0 0 1-3.351-1.389 4.739 4.739 0 0 1 0-6.7l25.31-25.31a4.741 4.741 0 0 1 6.7 0 4.741 4.741 0 0 1 0 6.7l-25.311 25.31a4.722 4.722 0 0 1-3.348 1.389Z" }),
36
+ React__namespace.createElement("path", { "data-name": "Path 1523", d: "M69.474 68.054a4.74 4.74 0 0 0-6.7 0l-8.549 8.549a10.717 10.717 0 0 1-15.157 0 10.65 10.65 0 0 1-2.833-5.079 10.655 10.655 0 0 1 2.833-5.079l8.548-8.548c1.59-1.589 1.59-10.115 0-11.7a4.74 4.74 0 0 0-6.7 0L21.437 65.676a4.741 4.741 0 0 0-1.389 3.352v5a4.741 4.741 0 0 0 1.389 3.352l21.862 21.862a4.723 4.723 0 0 0 3.351 1.388 4.725 4.725 0 0 0 3.352-1.388l19.48-19.48c1.584-1.594 1.584-10.119-.008-11.708Z", fill: "#afafaf" }),
37
+ React__namespace.createElement("path", { "data-name": "Path 1524", d: "M98.652 38.875 76.791 17.014a4.739 4.739 0 0 0-6.7 0L50.612 36.493c-1.59 1.589-1.59 10.114 0 11.7a4.739 4.739 0 0 0 6.7 0l8.549-8.549a10.719 10.719 0 0 1 15.157 0 10.663 10.663 0 0 1 2.832 5.079 10.663 10.663 0 0 1-2.832 5.079l-8.549 8.549c-1.59 1.589-1.59 10.114 0 11.7a4.723 4.723 0 0 0 3.352 1.389 4.726 4.726 0 0 0 3.352-1.389l19.479-19.479c1.589-1.583 1.589-10.108 0-11.697Z", fill: "#afafaf" }),
38
+ React__namespace.createElement("path", { "data-name": "Path 1525", d: "M76.048 39.618a4.74 4.74 0 0 0-6.7 0l-25.311 25.31c-1.589 1.59-1.589 10.115 0 11.7a4.725 4.725 0 0 0 3.352 1.389 4.724 4.724 0 0 0 3.352-1.389l25.311-25.31c1.585-1.585 1.585-10.111-.004-11.7Z", fill: "#afafaf" }),
39
+ React__namespace.createElement("path", { "data-name": "Path 1526", d: "M46.642 95.625a4.725 4.725 0 0 1-3.351-1.388L21.429 72.375a4.741 4.741 0 0 1-1.389-3.352 4.741 4.741 0 0 1 1.389-3.352l19.479-19.479a4.741 4.741 0 0 1 6.7 0 4.739 4.739 0 0 1 0 6.7L39.06 61.44a10.718 10.718 0 0 0 0 15.158 10.717 10.717 0 0 0 15.157 0l8.549-8.549a4.74 4.74 0 0 1 6.7 0 4.74 4.74 0 0 1 0 6.7l-19.48 19.48a4.725 4.725 0 0 1-3.344 1.396Z", fill: "#fff" }),
40
+ React__namespace.createElement("path", { "data-name": "Path 1527", d: "M75.821 66.447a4.723 4.723 0 0 1-3.352-1.389 4.738 4.738 0 0 1 0-6.7l8.549-8.549a10.72 10.72 0 0 0 0-15.158 10.718 10.718 0 0 0-15.157 0L57.312 43.2a4.74 4.74 0 0 1-6.7 0 4.741 4.741 0 0 1 0-6.7l19.48-19.478a4.74 4.74 0 0 1 6.7 0l21.86 21.861a4.739 4.739 0 0 1 0 6.7L79.174 65.062a4.726 4.726 0 0 1-3.353 1.385Z", fill: "#fff" }),
41
+ React__namespace.createElement("path", { "data-name": "Path 1528", d: "M47.385 73.021a4.722 4.722 0 0 1-3.351-1.389 4.739 4.739 0 0 1 0-6.7l25.31-25.31a4.741 4.741 0 0 1 6.7 0 4.741 4.741 0 0 1 0 6.7l-25.311 25.31a4.722 4.722 0 0 1-3.348 1.389Z", fill: "#fff" }))); };
42
+
43
+ module.exports = SvgLink;
44
+ //# sourceMappingURL=Link.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Link.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgList: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgList;
@@ -0,0 +1,53 @@
1
+ 'use strict';
2
+
3
+ var tslib = require('tslib');
4
+ var React = require('react');
5
+
6
+ function _interopNamespace(e) {
7
+ if (e && e.__esModule) return e;
8
+ var n = Object.create(null);
9
+ if (e) {
10
+ Object.keys(e).forEach(function (k) {
11
+ if (k !== 'default') {
12
+ var d = Object.getOwnPropertyDescriptor(e, k);
13
+ Object.defineProperty(n, k, d.get ? d : {
14
+ enumerable: true,
15
+ get: function () {
16
+ return e[k];
17
+ }
18
+ });
19
+ }
20
+ });
21
+ }
22
+ n['default'] = e;
23
+ return Object.freeze(n);
24
+ }
25
+
26
+ var React__namespace = /*#__PURE__*/_interopNamespace(React);
27
+
28
+ var SvgList = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ "data-name": "Icon - Features", xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 120" }, props),
29
+ React__namespace.createElement("path", { fill: "none", d: "M0 0h120v120H0z" }),
30
+ React__namespace.createElement("g", { "data-name": "Group 1595" },
31
+ React__namespace.createElement("path", { "data-name": "Path 1727", d: "m44.079 33.422-4.838-.361a1.3 1.3 0 0 1-1.011-.722l-1.878-4.478a1.185 1.185 0 0 0-2.167 0l-1.877 4.478a1.087 1.087 0 0 1-1.011.722l-4.839.361a1.122 1.122 0 0 0-1.067 1.228h-.012v4.3h.012a1.267 1.267 0 0 0 .417.867l3.351 2.891-.462 1.906a1.185 1.185 0 0 0-.013.414l.016 3.889a1.223 1.223 0 0 0 1.8 1.3l4.189-2.528a1.24 1.24 0 0 1 1.228 0l4.188 2.528a1.219 1.219 0 0 0 1.806-1.3v-3.839a1.149 1.149 0 0 0 0-.464l-.462-1.906 3.351-2.891a1.411 1.411 0 0 0 .321-.867h.08v-4.3a1.18 1.18 0 0 0-1.122-1.228Z", opacity: 0.3 }),
32
+ React__namespace.createElement("path", { "data-name": "Path 1728", d: "m44.079 29.12-4.838-.362a1.3 1.3 0 0 1-1.011-.722l-1.878-4.477a1.185 1.185 0 0 0-2.167 0l-1.877 4.477a1.086 1.086 0 0 1-1.011.722l-4.839.362a1.121 1.121 0 0 0-1.067 1.227h-.012v4.3h.012a1.265 1.265 0 0 0 .417.866l3.351 2.891-.462 1.907a1.18 1.18 0 0 0-.013.413l.016 3.889a1.222 1.222 0 0 0 1.8 1.3l4.189-2.528a1.245 1.245 0 0 1 1.228 0l4.188 2.528a1.219 1.219 0 0 0 1.806-1.3v-3.839a1.143 1.143 0 0 0 0-.463l-.462-1.907 3.351-2.891a1.408 1.408 0 0 0 .321-.866h.08v-4.3a1.179 1.179 0 0 0-1.122-1.227Z", fill: "#c9b817" }),
33
+ React__namespace.createElement("path", { "data-name": "Path 1729", d: "m44.079 29.12-4.838-.362a1.3 1.3 0 0 1-1.011-.722l-1.878-4.477a1.185 1.185 0 0 0-2.167 0l-1.877 4.477a1.086 1.086 0 0 1-1.012.722l-4.838.362a1.179 1.179 0 0 0-.65 2.094l3.683 3.178a1.026 1.026 0 0 1 .361 1.155l-1.155 4.767a1.223 1.223 0 0 0 1.8 1.3l4.189-2.528a1.24 1.24 0 0 1 1.228 0l4.188 2.528a1.219 1.219 0 0 0 1.806-1.3l-1.156-4.767a1.331 1.331 0 0 1 .361-1.155l3.684-3.178a1.2 1.2 0 0 0-.718-2.094Z", fill: "#ffe600" }),
34
+ React__namespace.createElement("path", { "data-name": "Path 1730", d: "M93.956 38.074a3.688 3.688 0 0 0-3.656-3.419H54.046a3.689 3.689 0 0 0-3.657 3.419h-.026v5.014h.045a3.689 3.689 0 0 0 3.638 3.236H90.3a3.689 3.689 0 0 0 3.638-3.236h.045v-5.014Z", opacity: 0.3 }),
35
+ React__namespace.createElement("path", { "data-name": "Path 1731", d: "M93.956 33.766a3.688 3.688 0 0 0-3.656-3.419H54.046a3.69 3.69 0 0 0-3.657 3.419h-.026v5.015h.045a3.689 3.689 0 0 0 3.638 3.235H90.3a3.689 3.689 0 0 0 3.638-3.235h.045v-5.015Z", fill: "#afafaf" }),
36
+ React__namespace.createElement("path", { "data-name": "Path 1732", d: "M54.046 37.714H90.3a3.684 3.684 0 0 0 0-7.367H54.046a3.684 3.684 0 0 0 0 7.367Z", fill: "#fff" })),
37
+ React__namespace.createElement("g", { "data-name": "Group 1596" },
38
+ React__namespace.createElement("path", { "data-name": "Path 1733", d: "m44.079 56.789-4.838-.361a1.3 1.3 0 0 1-1.011-.723l-1.878-4.477a1.185 1.185 0 0 0-2.167 0l-1.877 4.477a1.087 1.087 0 0 1-1.011.723l-4.839.361a1.121 1.121 0 0 0-1.067 1.227h-.012v4.3h.012a1.269 1.269 0 0 0 .417.867l3.351 2.891-.462 1.906a1.18 1.18 0 0 0-.013.413l.016 3.889a1.222 1.222 0 0 0 1.8 1.3l4.189-2.527a1.24 1.24 0 0 1 1.228 0l4.188 2.527a1.219 1.219 0 0 0 1.806-1.3v-3.839a1.143 1.143 0 0 0 0-.463l-.462-1.906 3.351-2.891a1.413 1.413 0 0 0 .321-.867h.08v-4.3a1.179 1.179 0 0 0-1.122-1.227Z", opacity: 0.3 }),
39
+ React__namespace.createElement("path", { "data-name": "Path 1734", d: "m44.079 52.486-4.838-.361a1.3 1.3 0 0 1-1.011-.722l-1.878-4.478a1.185 1.185 0 0 0-2.167 0l-1.877 4.478a1.087 1.087 0 0 1-1.011.722l-4.839.361a1.122 1.122 0 0 0-1.067 1.228h-.012v4.3h.012a1.267 1.267 0 0 0 .417.867l3.351 2.891-.462 1.906a1.185 1.185 0 0 0-.013.414l.016 3.889a1.223 1.223 0 0 0 1.8 1.3l4.189-2.528a1.24 1.24 0 0 1 1.228 0l4.188 2.528a1.219 1.219 0 0 0 1.806-1.3v-3.837a1.149 1.149 0 0 0 0-.464l-.462-1.906 3.351-2.891a1.408 1.408 0 0 0 .321-.867h.08v-4.3a1.18 1.18 0 0 0-1.122-1.23Z", fill: "#a00054" }),
40
+ React__namespace.createElement("path", { "data-name": "Path 1735", d: "m44.079 52.486-4.838-.361a1.3 1.3 0 0 1-1.011-.722l-1.878-4.478a1.185 1.185 0 0 0-2.167 0l-1.877 4.478a1.088 1.088 0 0 1-1.012.722l-4.838.361a1.179 1.179 0 0 0-.65 2.1l3.683 3.177a1.028 1.028 0 0 1 .361 1.156l-1.155 4.766a1.222 1.222 0 0 0 1.8 1.3l4.189-2.527a1.24 1.24 0 0 1 1.228 0l4.188 2.527a1.219 1.219 0 0 0 1.806-1.3l-1.156-4.766a1.333 1.333 0 0 1 .361-1.156l3.684-3.177a1.2 1.2 0 0 0-.718-2.1Z", fill: "#ff007a" }),
41
+ React__namespace.createElement("path", { "data-name": "Path 1736", d: "M93.956 61.435a3.688 3.688 0 0 0-3.656-3.419H54.046a3.69 3.69 0 0 0-3.657 3.419h-.026v5.015h.045a3.689 3.689 0 0 0 3.638 3.235H90.3a3.689 3.689 0 0 0 3.638-3.235h.045v-5.015Z", opacity: 0.3 }),
42
+ React__namespace.createElement("path", { "data-name": "Path 1737", d: "M93.956 57.133a3.688 3.688 0 0 0-3.656-3.419H54.046a3.689 3.689 0 0 0-3.657 3.419h-.026v5.014h.045a3.689 3.689 0 0 0 3.638 3.236H90.3a3.689 3.689 0 0 0 3.638-3.236h.045v-5.014Z", fill: "#afafaf" }),
43
+ React__namespace.createElement("path", { "data-name": "Path 1738", d: "M54.046 61.08H90.3a3.683 3.683 0 0 0 0-7.366H54.046a3.683 3.683 0 1 0 0 7.366Z", fill: "#fff" })),
44
+ React__namespace.createElement("g", { "data-name": "Group 1597" },
45
+ React__namespace.createElement("path", { "data-name": "Path 1739", d: "m44.079 80.155-4.838-.361a1.3 1.3 0 0 1-1.011-.722l-1.878-4.478a1.186 1.186 0 0 0-2.167 0l-1.877 4.478a1.087 1.087 0 0 1-1.011.722l-4.839.361a1.122 1.122 0 0 0-1.067 1.228h-.012v4.3h.012a1.265 1.265 0 0 0 .417.866l3.351 2.891-.462 1.906a1.185 1.185 0 0 0-.013.414l.016 3.889a1.223 1.223 0 0 0 1.8 1.3l4.189-2.528a1.245 1.245 0 0 1 1.228 0l4.188 2.528a1.219 1.219 0 0 0 1.806-1.3V91.81a1.148 1.148 0 0 0 0-.464l-.462-1.906 3.351-2.891a1.408 1.408 0 0 0 .321-.866h.08v-4.3a1.18 1.18 0 0 0-1.122-1.228Z", opacity: 0.3 }),
46
+ React__namespace.createElement("path", { "data-name": "Path 1740", d: "m44.079 75.853-4.838-.361a1.3 1.3 0 0 1-1.011-.722l-1.878-4.478a1.185 1.185 0 0 0-2.167 0l-1.877 4.478a1.087 1.087 0 0 1-1.011.722l-4.839.361a1.122 1.122 0 0 0-1.067 1.228h-.012v4.3h.012a1.269 1.269 0 0 0 .417.867l3.351 2.891-.462 1.906a1.18 1.18 0 0 0-.013.413l.016 3.888a1.222 1.222 0 0 0 1.8 1.3l4.189-2.527a1.24 1.24 0 0 1 1.228 0l4.188 2.527a1.219 1.219 0 0 0 1.806-1.3v-3.838a1.149 1.149 0 0 0 0-.464l-.462-1.906 3.351-2.891a1.413 1.413 0 0 0 .321-.867h.08v-4.3a1.179 1.179 0 0 0-1.122-1.227Z", fill: "#789e00" }),
47
+ React__namespace.createElement("path", { "data-name": "Path 1741", d: "m44.079 75.853-4.838-.361a1.3 1.3 0 0 1-1.011-.722l-1.878-4.478a1.185 1.185 0 0 0-2.167 0l-1.877 4.478a1.088 1.088 0 0 1-1.012.722l-4.838.361a1.179 1.179 0 0 0-.65 2.094l3.683 3.178a1.027 1.027 0 0 1 .361 1.155l-1.155 4.767a1.223 1.223 0 0 0 1.8 1.3l4.189-2.528a1.245 1.245 0 0 1 1.228 0l4.188 2.528a1.219 1.219 0 0 0 1.806-1.3l-1.156-4.767a1.332 1.332 0 0 1 .361-1.155l3.684-3.178a1.2 1.2 0 0 0-.718-2.094Z", fill: "#c1ff00" }),
48
+ React__namespace.createElement("path", { "data-name": "Path 1742", d: "M93.956 84.802a3.688 3.688 0 0 0-3.656-3.419H54.046a3.69 3.69 0 0 0-3.657 3.419h-.026v5.014h.045a3.689 3.689 0 0 0 3.638 3.236H90.3a3.689 3.689 0 0 0 3.638-3.236h.045v-5.014Z", opacity: 0.3 }),
49
+ React__namespace.createElement("path", { "data-name": "Path 1743", d: "M93.956 80.5a3.688 3.688 0 0 0-3.656-3.419H54.046a3.689 3.689 0 0 0-3.657 3.419h-.026v5.014h.045a3.689 3.689 0 0 0 3.638 3.235H90.3a3.689 3.689 0 0 0 3.638-3.235h.045V80.5Z", fill: "#afafaf" }),
50
+ React__namespace.createElement("path", { "data-name": "Path 1744", d: "M54.046 84.447H90.3a3.683 3.683 0 0 0 0-7.366H54.046a3.683 3.683 0 1 0 0 7.366Z", fill: "#fff" })))); };
51
+
52
+ module.exports = SvgList;
53
+ //# sourceMappingURL=List.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"List.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgLock: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgLock;
@@ -0,0 +1,50 @@
1
+ 'use strict';
2
+
3
+ var tslib = require('tslib');
4
+ var React = require('react');
5
+
6
+ function _interopNamespace(e) {
7
+ if (e && e.__esModule) return e;
8
+ var n = Object.create(null);
9
+ if (e) {
10
+ Object.keys(e).forEach(function (k) {
11
+ if (k !== 'default') {
12
+ var d = Object.getOwnPropertyDescriptor(e, k);
13
+ Object.defineProperty(n, k, d.get ? d : {
14
+ enumerable: true,
15
+ get: function () {
16
+ return e[k];
17
+ }
18
+ });
19
+ }
20
+ });
21
+ }
22
+ n['default'] = e;
23
+ return Object.freeze(n);
24
+ }
25
+
26
+ var React__namespace = /*#__PURE__*/_interopNamespace(React);
27
+
28
+ var SvgLock = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 120" }, props),
29
+ React__namespace.createElement("defs", null,
30
+ React__namespace.createElement("filter", { id: "lock_svg__a", x: 33.519, y: 27.646, width: 52.577, height: 65.851, filterUnits: "userSpaceOnUse" },
31
+ React__namespace.createElement("feOffset", { dy: 2 }),
32
+ React__namespace.createElement("feGaussianBlur", { result: "b" }),
33
+ React__namespace.createElement("feFlood", { floodOpacity: 0.4 }),
34
+ React__namespace.createElement("feComposite", { operator: "in", in2: "b" }),
35
+ React__namespace.createElement("feComposite", { in: "SourceGraphic" }))),
36
+ React__namespace.createElement("path", { style: {
37
+ fill: "none",
38
+ }, d: "M0 0h120v120H0z" }),
39
+ React__namespace.createElement("g", { style: {
40
+ filter: "url(#lock_svg__a)",
41
+ } },
42
+ React__namespace.createElement("path", { d: "M56.781 24.343H50.6v-5.687a18.706 18.706 0 0 0-37.413.1v5.687H7.1a1.364 1.364 0 0 0-1.4 1.4v36.611a1.364 1.364 0 0 0 1.4 1.4h49.781a1.364 1.364 0 0 0 1.4-1.4V25.84a1.534 1.534 0 0 0-1.5-1.497ZM37.625 53.076a27.44 27.44 0 0 0-2.793-1.9c-1-.6-1.9-1.3-2.893-1.8l-2.993 1.8c-1 .6-1.9 1.3-2.793 1.9.2-2.494.4-4.988.7-7.483-.9-.8-1.8-1.6-2.694-2.494a32.455 32.455 0 0 0-2.895-2.299c2.394-.7 4.889-1.1 7.283-1.6 1-2.295 2.195-4.49 3.392-6.784a83.96 83.96 0 0 1 3.292 6.784c2.494.4 4.889 1 7.283 1.6-2 1.6-3.891 3.093-5.687 4.789.399 2.499.599 4.993.798 7.487Zm5.088-28.733H21.164v-5.687a10.775 10.775 0 1 1 21.55 0Z", transform: "translate(27.819 27.655)", style: {
43
+ fill: "#afafaf",
44
+ } })),
45
+ React__namespace.createElement("path", { d: "M56.781 24.343H50.6v-5.687a18.706 18.706 0 0 0-37.413.1v5.687H7.1a1.364 1.364 0 0 0-1.4 1.4v36.611a1.364 1.364 0 0 0 1.4 1.4h49.781a1.364 1.364 0 0 0 1.4-1.4V25.84a1.534 1.534 0 0 0-1.5-1.497ZM37.625 53.076a27.44 27.44 0 0 0-2.793-1.9c-1-.6-1.9-1.3-2.893-1.8l-2.993 1.8c-1 .6-1.9 1.3-2.793 1.9.2-2.494.4-4.988.7-7.483-.9-.8-1.8-1.6-2.694-2.494a32.455 32.455 0 0 0-2.895-2.299c2.394-.7 4.889-1.1 7.283-1.6 1-2.295 2.195-4.49 3.392-6.784a83.96 83.96 0 0 1 3.292 6.784c2.494.4 4.889 1 7.283 1.6-2 1.6-3.891 3.093-5.687 4.789.399 2.499.599 4.993.798 7.487Zm5.088-28.733H21.164v-5.687a10.775 10.775 0 1 1 21.55 0Z", transform: "translate(27.819 20.135)", style: {
46
+ fill: "#fff",
47
+ } }))); };
48
+
49
+ module.exports = SvgLock;
50
+ //# sourceMappingURL=Lock.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Lock.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgLogout: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgLogout;
@@ -0,0 +1,43 @@
1
+ 'use strict';
2
+
3
+ var tslib = require('tslib');
4
+ var React = require('react');
5
+
6
+ function _interopNamespace(e) {
7
+ if (e && e.__esModule) return e;
8
+ var n = Object.create(null);
9
+ if (e) {
10
+ Object.keys(e).forEach(function (k) {
11
+ if (k !== 'default') {
12
+ var d = Object.getOwnPropertyDescriptor(e, k);
13
+ Object.defineProperty(n, k, d.get ? d : {
14
+ enumerable: true,
15
+ get: function () {
16
+ return e[k];
17
+ }
18
+ });
19
+ }
20
+ });
21
+ }
22
+ n['default'] = e;
23
+ return Object.freeze(n);
24
+ }
25
+
26
+ var React__namespace = /*#__PURE__*/_interopNamespace(React);
27
+
28
+ var SvgLogout = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ "data-name": "Icon Logout", xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 120" }, props),
29
+ React__namespace.createElement("g", { transform: "translate(.41 .82)" },
30
+ React__namespace.createElement("g", { "data-name": "icon Bottom", fill: "rgba(0,0,0,0.3)" },
31
+ React__namespace.createElement("path", { "data-name": "Path 9", d: "M59.59 61.214a6.11 6.11 0 0 1-6.11-6.11v-27.6a6.11 6.11 0 1 1 12.22 0v27.6a6.111 6.111 0 0 1-6.11 6.11Z" }),
32
+ React__namespace.createElement("path", { "data-name": "Path 12", d: "M59.589 115.079a43.432 43.432 0 0 1-24.906-79.011 6.11 6.11 0 0 1 7.013 10.005 31.21 31.21 0 1 0 35.4-.267 6.11 6.11 0 1 1 6.864-10.11 43.432 43.432 0 0 1-24.366 79.383Z" })),
33
+ React__namespace.createElement("g", { "data-name": "icon Bottom", fill: "#960059" },
34
+ React__namespace.createElement("path", { "data-name": "Path 9", d: "M59.59 52.568a6.11 6.11 0 0 1-6.11-6.11v-27.6a6.11 6.11 0 1 1 12.22 0v27.6a6.111 6.111 0 0 1-6.11 6.11Z" }),
35
+ React__namespace.createElement("path", { "data-name": "Path 12", d: "M59.589 106.433a43.432 43.432 0 0 1-24.906-79.011 6.11 6.11 0 0 1 7.013 10.005 31.21 31.21 0 1 0 35.4-.267 6.11 6.11 0 1 1 6.864-10.11 43.432 43.432 0 0 1-24.366 79.383Z" })),
36
+ React__namespace.createElement("g", { "data-name": "Icon Top", fill: "#e5007e" },
37
+ React__namespace.createElement("path", { "data-name": "Path 14", d: "M59.589 98.01a43.432 43.432 0 0 1-24.906-79.011 6.11 6.11 0 0 1 7.013 10.005 31.209 31.209 0 1 0 35.4-.269 6.11 6.11 0 1 1 6.864-10.11A43.433 43.433 0 0 1 59.594 98.01Z" }),
38
+ React__namespace.createElement("path", { "data-name": "Path 13", d: "M59.59 44.145a6.111 6.111 0 0 1-6.11-6.11v-27.6a6.11 6.11 0 1 1 12.22 0v27.6a6.111 6.111 0 0 1-6.11 6.11Z" })),
39
+ React__namespace.createElement("circle", { "data-name": "Ellipse 13", cx: 59.59, cy: 59.59, fill: "none", r: 59.59 })),
40
+ React__namespace.createElement("path", { fill: "none", d: "M0 0h120v120H0z" }))); };
41
+
42
+ module.exports = SvgLogout;
43
+ //# sourceMappingURL=Logout.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Logout.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgMegaphone: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgMegaphone;
@@ -0,0 +1,45 @@
1
+ 'use strict';
2
+
3
+ var tslib = require('tslib');
4
+ var React = require('react');
5
+
6
+ function _interopNamespace(e) {
7
+ if (e && e.__esModule) return e;
8
+ var n = Object.create(null);
9
+ if (e) {
10
+ Object.keys(e).forEach(function (k) {
11
+ if (k !== 'default') {
12
+ var d = Object.getOwnPropertyDescriptor(e, k);
13
+ Object.defineProperty(n, k, d.get ? d : {
14
+ enumerable: true,
15
+ get: function () {
16
+ return e[k];
17
+ }
18
+ });
19
+ }
20
+ });
21
+ }
22
+ n['default'] = e;
23
+ return Object.freeze(n);
24
+ }
25
+
26
+ var React__namespace = /*#__PURE__*/_interopNamespace(React);
27
+
28
+ var SvgMegaphone = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ "data-name": "Icon - Blog", xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 120.001" }, props),
29
+ React__namespace.createElement("path", { fill: "none", d: "M0 0h120v120H0z" }),
30
+ React__namespace.createElement("path", { "data-name": "Path 1366", d: "M107.369 46.389c-10.637-32.994-31.364-38.8-41.668-35.192a19.454 19.454 0 0 0-10.929 9.688C40.016 46.647 11.437 62.098 11.437 62.098S5.048 64.971 8.88 77.507c.1.329.207.643.315.952l-.007-.012.022.057c.085.241.174.47.263.7.044.114.087.233.133.344.09.222.184.433.278.643.048.107.1.217.144.322.095.2.194.4.293.59.051.1.1.2.153.3.1.187.2.365.306.541.054.093.107.187.162.276.1.171.211.334.318.495.056.085.112.171.169.253.108.156.218.3.328.451a10.732 10.732 0 0 0 .511.64c.06.07.12.142.181.21.113.128.228.25.344.37.061.063.122.127.183.188.116.115.233.225.35.332l.186.169.354.3.188.149c.119.092.238.179.357.264l.188.131q.179.122.357.232a9.55 9.55 0 0 0 .545.315l.187.1c.119.061.237.12.355.175.061.029.122.056.184.084.117.052.234.1.351.149l.18.07c.116.044.231.086.345.125l.178.058c.113.036.225.071.336.1a11.164 11.164 0 0 0 .5.129l.167.036c.106.023.212.045.316.064l.159.027c.1.017.205.033.305.047l.151.019c.1.012.195.023.29.032l.145.012c.091.007.183.014.271.019.047 0 .092 0 .137.006.086 0 .171.007.252.008h.476l.211-.007.106-.007c.063 0 .127-.007.185-.012l.069-.006 14.434 32.059 15.817-4.835 3.539-4.271-.914-1.99-4.687-2.492-8.047-18.575a127.215 127.215 0 0 1 34 8.369c.279.11.557.218.837.331 0 0 9.048 4.318 17.583 2.445s24.088-19.605 13.45-52.599Z", opacity: 0.3 }),
31
+ React__namespace.createElement("g", { "data-name": "Group 564" },
32
+ React__namespace.createElement("path", { "data-name": "Path 1368", d: "m55.531 100.636-.915-1.99-4.687-2.492-12.083-27.891-12.841 4.539-3.539 4.271 14.708 32.67 15.817-4.835Z", fill: "#39a7df" }),
33
+ React__namespace.createElement("path", { "data-name": "Path 1369", d: "m36.174 109.742 15.817-4.835-.915-1.99-4.687-2.492-12.083-27.896-12.841 4.539Z", fill: "#73c9eb" }),
34
+ React__namespace.createElement("path", { "data-name": "Path 1370", d: "M76.716 86.279c-30.94-12.437-54.178-8.708-54.178-8.708s-9.443 2.213-13.275-10.322S11.82 51.84 11.82 51.84s28.579-15.452 43.335-41.213A19.456 19.456 0 0 1 66.085.938c10.3-3.609 31.03 2.2 41.667 35.193s-4.918 50.72-13.453 52.593-17.583-2.445-17.583-2.445Z", fill: "#ebebeb" }),
35
+ React__namespace.createElement("path", { "data-name": "Path 1371", d: "M68.773 6.929c-5.272 1.612-20.193 11.33-10.86 44.726 9.155 32.76 31.427 31.385 35.463 30.142 1.692-.521 23.162-8.621 9.694-46.934C90.843.074 68.773 6.929 68.773 6.929Z", fill: "#8f9299" }),
36
+ React__namespace.createElement("path", { "data-name": "Path 1372", d: "M70.193 11.236c-4.462 1.364-17.033 9.77-8.745 39.309 8.131 28.977 27.038 28.005 30.453 26.953 1.432-.441 19.584-7.35 7.73-41.268C88.867 5.436 70.193 11.236 70.193 11.236Z", fill: "#a0a4b0" }),
37
+ React__namespace.createElement("path", { "data-name": "Path 1373", d: "m82.765 51.789-4.761-14.44-19.128-.209a73.669 73.669 0 0 0 2.57 13.405 52.677 52.677 0 0 0 6.332 14.6Z", fill: "#b9bcc7" }),
38
+ React__namespace.createElement("path", { "data-name": "Path 1374", d: "M78.004 37.349c-1.065.326-4.092 2.246-2.3 8.691 1.759 6.323 6.244 6 7.059 5.749.342-.1 4.682-1.728 2.069-9.116-2.37-6.706-6.828-5.324-6.828-5.324Z", fill: "#e4e5ea" }),
39
+ React__namespace.createElement("path", { "data-name": "Path 1375", d: "M20.093 72.585s-7.611 1.475-10.522-4.4c4 11.481 12.966 9.383 12.966 9.383s22.822-3.659 53.343 8.378C65.663 80.603 59.8 68.663 59.8 68.663s-5.797-2.518-39.707 3.922Z", fill: "#cbcdd3" }),
40
+ React__namespace.createElement("g", { "data-name": "Group 563", fill: "#fff" },
41
+ React__namespace.createElement("path", { "data-name": "Path 1376", d: "M50.231 25.961s.634-7.2 3.358-12.722c-15.118 24.19-41.769 38.6-41.769 38.6s-3.818 1.723-3.777 8.3c.023-.333.34-2.738 4.662-5.215 4.656-2.667 29.309-19.217 37.526-28.963Z" }),
42
+ React__namespace.createElement("path", { "data-name": "Path 1377", d: "M55.629 9.704c-.323.572-.474.923-.474.923a2.764 2.764 0 0 0 .474-.923Z" }))))); };
43
+
44
+ module.exports = SvgMegaphone;
45
+ //# sourceMappingURL=Megaphone.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Megaphone.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgMenu: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgMenu;