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 SvgWritingTypeInstructions = 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("path", { style: {
30
+ fill: "none",
31
+ }, d: "M0 0h120v120H0z" }),
32
+ React__namespace.createElement("path", { d: "M4987.562 598.418s13.355-5.048 26.049-5.517c13.045-.481 26.022 3.832 26.022 3.832s2.606 1.069 2.171 2.606c-.568 2.009-2.346 1.561-3.4 1.531a109.348 109.348 0 0 0-12.025-.518 55.3 55.3 0 0 0-9.58.978s6.587 4.444 6.9 9.347a4.707 4.707 0 0 1-1.372 3.622 21.863 21.863 0 0 0-5.779-5.582 16.187 16.187 0 0 0-5.194-2.312 1.232 1.232 0 0 0-.434 2.425 14.484 14.484 0 0 1 4.323 1.977 20.441 20.441 0 0 1 5.784 5.953 6.639 6.639 0 0 1-.979 2.8 2.63 2.63 0 0 1-1.27 1.04 18.044 18.044 0 0 0-3.956-4.315 11.778 11.778 0 0 0-4.193-2.211 1.232 1.232 0 0 0-.518 2.409 10.18 10.18 0 0 1 3.238 1.778 15.037 15.037 0 0 1 3.156 3.388 4.324 4.324 0 0 1-1.231 2.509 4.835 4.835 0 0 1-5.671 0l-3.65-2.757a13.715 13.715 0 0 1-5.512 1.608c-6.12-.129-12.9-4.365-12.9-4.365Z", style: {
33
+ fill: "#ffef00",
34
+ }, transform: "translate(-4944.12 -549.271)" }),
35
+ React__namespace.createElement("path", { transform: "translate(26.267 45.775)", style: {
36
+ fill: "#3ba6dd",
37
+ }, d: "M0 0h14.089v30.635H0z" }),
38
+ React__namespace.createElement("path", { d: "m4977.431 614.44 1.364 2.764 3.05.443-2.208 2.151.521 3.037-2.728-1.433-2.728 1.433.521-3.037-2.207-2.151 3.049-.443Z", style: {
39
+ fill: "#fff",
40
+ }, transform: "translate(-4944.12 -549.271)" }))); };
41
+
42
+ module.exports = SvgWritingTypeInstructions;
43
+ //# sourceMappingURL=WritingTypeInstructions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WritingTypeInstructions.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgWritingTypeLetterWriting: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgWritingTypeLetterWriting;
@@ -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 SvgWritingTypeLetterWriting = 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, ".writing-type-letter-writing_svg__b{fill:#3ba6dd}")),
31
+ React__namespace.createElement("path", { style: {
32
+ fill: "none",
33
+ }, d: "M0 0h120v120H0z" }),
34
+ React__namespace.createElement("path", { className: "writing-type-letter-writing_svg__b", d: "m72.108 63.313 24.138-19.31v38.62ZM47.893 63.313l-24.138-19.31v38.62ZM26.614 84.853l33.237-26.59 33.237 26.59ZM88.075 40.288v5.7l7.13-5.7ZM31.627 40.288h-7.128l7.129 5.7Z" }),
35
+ React__namespace.createElement("path", { d: "M5169.6 579.306v19.012l15.969 12.774 9.285-7.426 9.285 7.426 15.969-12.774v-19.012Zm6.706 4.455h11.141v1.858h-11.141Zm29.689 15.6h-29.71v-2.228h29.71Zm0-4.457h-29.71v-2.228h29.71Zm0-4.456h-29.71v-2.229h29.71Z", style: {
36
+ fill: "#fff",
37
+ }, transform: "translate(-5135.001 -550.159)" }),
38
+ React__namespace.createElement("path", { d: "m5194.819 615.541 2.063 4.179 4.612.67-3.338 3.253.789 4.593-4.125-2.167-4.125 2.167.789-4.593-3.338-3.253 4.612-.67Z", style: {
39
+ fill: "#ffef00",
40
+ }, transform: "translate(-5135.001 -550.159)" }))); };
41
+
42
+ module.exports = SvgWritingTypeLetterWriting;
43
+ //# sourceMappingURL=WritingTypeLetterWriting.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WritingTypeLetterWriting.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgWritingTypeNewspaperArticle: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgWritingTypeNewspaperArticle;
@@ -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 SvgWritingTypeNewspaperArticle = 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, ".writing-type-newspaper-article_svg__c{fill:#ffef00}")),
31
+ React__namespace.createElement("path", { style: {
32
+ fill: "none",
33
+ }, d: "M0 0h120v120H0z" }),
34
+ React__namespace.createElement("path", { d: "M4413.089 577.827v60.449a4.649 4.649 0 0 0 4.656 4.659h41.882a4.659 4.659 0 0 0 4.656-4.659v-60.449a4.649 4.649 0 0 0-4.656-4.659h-41.882a4.658 4.658 0 0 0-4.656 4.659Zm46.538-1.558a1.545 1.545 0 0 1 1.553 1.558v60.449a1.556 1.556 0 0 1-1.553 1.558h-41.882a1.547 1.547 0 0 1-1.553-1.558v-60.449a1.556 1.556 0 0 1 1.553-1.558Z", style: {
35
+ fill: "#3ba6dd",
36
+ }, transform: "translate(-4378.686 -549.052)" }),
37
+ React__namespace.createElement("path", { className: "writing-type-newspaper-article_svg__c", d: "M42.16 81.48h35.681v3.101H42.16zM59.553 56.674H77.84v3.101H59.553zM42.16 75.279h35.681v3.101H42.16zM59.553 50.473H77.84v3.1H59.553zM42.16 69.077h35.681v3.101H42.16z" }),
38
+ React__namespace.createElement("path", { transform: "translate(42.16 44.271)", style: {
39
+ fill: "#fff",
40
+ }, d: "M0 0h13.962v15.504H0z" }),
41
+ React__namespace.createElement("path", { className: "writing-type-newspaper-article_svg__c", d: "M59.553 44.271H77.84v3.101H59.553zM42.16 62.876h35.681v3.1H42.16zM44.761 32.774l4.049 5.09v-3.528a1.678 1.678 0 0 0-.212-1 1.177 1.177 0 0 0-.974-.339v-.223h2.71v.223a2.118 2.118 0 0 0-.7.173.7.7 0 0 0-.278.345 2.346 2.346 0 0 0-.1.821v6.832h-.207L43.5 34.336v5.212a1.147 1.147 0 0 0 .325.956 1.177 1.177 0 0 0 .74.248h.194v.224h-2.911v-.224a1.314 1.314 0 0 0 .944-.278 1.3 1.3 0 0 0 .266-.926v-5.791l-.175-.218a1.6 1.6 0 0 0-.459-.43 1.414 1.414 0 0 0-.576-.116v-.223ZM54.002 33.248v3.34h.164a1.294 1.294 0 0 0 1.131-.49 3 3 0 0 0 .448-1.446h.23v4.296h-.23a3.23 3.23 0 0 0-.306-1.15 1.315 1.315 0 0 0-.541-.6 2.059 2.059 0 0 0-.9-.155v2.305a3.277 3.277 0 0 0 .058.829.5.5 0 0 0 .214.249 1.019 1.019 0 0 0 .509.1h.49a2.645 2.645 0 0 0 2.838-2.154h.224l-.369 2.608H50.87v-.224h.272a1.129 1.129 0 0 0 .574-.127.543.543 0 0 0 .242-.291 2.461 2.461 0 0 0 .067-.762v-5.4a4.154 4.154 0 0 0-.031-.683.575.575 0 0 0-.224-.328 1.035 1.035 0 0 0-.628-.17h-.272v-.223h6.868v2.427h-.23a2.972 2.972 0 0 0-.493-1.277 1.838 1.838 0 0 0-.9-.569 4.851 4.851 0 0 0-1.27-.109ZM71.178 32.774v.223a.78.78 0 0 0-.388.128.928.928 0 0 0-.278.333q-.038.072-.382.937l-2.572 6.773h-.235l-2.034-5.289-2.239 5.289h-.224l-2.7-6.7a7.153 7.153 0 0 0-.575-1.222.752.752 0 0 0-.551-.249v-.223h3.559v.223a1.018 1.018 0 0 0-.572.131.369.369 0 0 0-.143.294 3.607 3.607 0 0 0 .3.973l1.61 3.983 1.289-3.111-.339-.872a6.434 6.434 0 0 0-.43-.952.913.913 0 0 0-.348-.342 1.265 1.265 0 0 0-.577-.1v-.223h3.976v.223a2.248 2.248 0 0 0-.6.067.4.4 0 0 0-.2.143.381.381 0 0 0-.073.227 4.128 4.128 0 0 0 .272.853l1.5 3.885 1.337-3.516a7.235 7.235 0 0 0 .26-.744 1.572 1.572 0 0 0 .048-.369.48.48 0 0 0-.169-.39 1.1 1.1 0 0 0-.648-.156v-.223ZM77.108 32.587l.067 2.735h-.249a2.794 2.794 0 0 0-.861-1.655 2.167 2.167 0 0 0-1.487-.626 1.392 1.392 0 0 0-.976.329 1 1 0 0 0-.361.759.916.916 0 0 0 .128.485 2.063 2.063 0 0 0 .562.563 12.721 12.721 0 0 0 1.313.708 5.84 5.84 0 0 1 1.943 1.337 2.262 2.262 0 0 1 .5 1.44 2.329 2.329 0 0 1-.8 1.771 2.88 2.88 0 0 1-2.035.741 3.249 3.249 0 0 1-.733-.079 5.408 5.408 0 0 1-.866-.3 1.328 1.328 0 0 0-.477-.121.6.6 0 0 0-.334.121.863.863 0 0 0-.284.37h-.223v-3.1h.223a3.552 3.552 0 0 0 1.025 1.994 2.4 2.4 0 0 0 1.638.687 1.537 1.537 0 0 0 1.08-.369 1.135 1.135 0 0 0 .4-.859 1.117 1.117 0 0 0-.155-.563 1.793 1.793 0 0 0-.469-.518 7.143 7.143 0 0 0-1.113-.638 9.614 9.614 0 0 1-1.611-.938 2.885 2.885 0 0 1-.752-.865 2.146 2.146 0 0 1-.264-1.053 2.226 2.226 0 0 1 .721-1.671 2.518 2.518 0 0 1 1.815-.689 3.065 3.065 0 0 1 .774.1 3.905 3.905 0 0 1 .693.269 1.636 1.636 0 0 0 .572.2.323.323 0 0 0 .248-.1 1.1 1.1 0 0 0 .169-.465Z" }))); };
42
+
43
+ module.exports = SvgWritingTypeNewspaperArticle;
44
+ //# sourceMappingURL=WritingTypeNewspaperArticle.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WritingTypeNewspaperArticle.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgWritingTypePersuasiveWriting: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgWritingTypePersuasiveWriting;
@@ -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 SvgWritingTypePersuasiveWriting = 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, ".writing-type-persuasive-writing_svg__c{fill:#3ba6dd}.writing-type-persuasive-writing_svg__d{fill:#ffef00}")),
31
+ React__namespace.createElement("path", { style: {
32
+ fill: "none",
33
+ }, d: "M0 0h120v120H0z" }),
34
+ React__namespace.createElement("path", { d: "m5354.152 575.03 3.522 5.193 2.738-4.765Z", style: {
35
+ fill: "#fff",
36
+ }, transform: "translate(-5323.877 -550.134)" }),
37
+ React__namespace.createElement("path", { className: "writing-type-persuasive-writing_svg__c", d: "m30.274 24.896 1.493 2.2 1.16-2.019Z" }),
38
+ React__namespace.createElement("path", { className: "writing-type-persuasive-writing_svg__d", d: "m47.479 31.666-9.394-5.4-2.733 4.759 8.092 4.649ZM94.347 58.595l-8.294-4.765-3.179 4.5 8.74 5.021a2.744 2.744 0 1 0 2.733-4.759Z" }),
39
+ React__namespace.createElement("path", { className: "writing-type-persuasive-writing_svg__c", d: "m70.855 58.836-12.1-5.7 7.921 11.878-1.837 17.187-.926-.022-1.06-17.615-8.667-13.131-7.488-3.674 3.989-4.784 3.812 2.685 6.16-.613.915-4.223-14.227-6.083-9.357 14.387 13.67 20.368-4 25.606h23.012l-.089-24.21 4.564-5.092.855-4.644ZM82.271 42.115 73.26 54.433l4.824 2 7.626-9.719Z" }),
40
+ React__namespace.createElement("path", { className: "writing-type-persuasive-writing_svg__c", d: "m75.64 35.171-10.479 16.5 5.093 1.941 9.947-13.969ZM66.932 30.235l-4.568 7.895 2.427 1.039-1.832 8.458-6.2.646 5.667 2.48 10.987-17.5ZM64.049 29.316l-6.312-2.225-4.072 7.319 6.074 2.6 1.048-1.792Z" }))); };
41
+
42
+ module.exports = SvgWritingTypePersuasiveWriting;
43
+ //# sourceMappingURL=WritingTypePersuasiveWriting.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WritingTypePersuasiveWriting.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgWritingTypePlayscript: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgWritingTypePlayscript;
@@ -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 SvgWritingTypePlayscript = 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, ".writing-type-playscript_svg__c{fill:#231f20}.writing-type-playscript_svg__e{fill:#ffef00}")),
31
+ React__namespace.createElement("path", { style: {
32
+ fill: "none",
33
+ }, d: "M0 0h120v120H0z" }),
34
+ React__namespace.createElement("path", { d: "M5929.645 591.511c-13.442 2.033-19.638-.927-19.638-.927s3.114 17.367 3.251 18.273c1.969 13.015 11.622 22.347 22.149 20.755s16.99-13.361 15.02-26.376c-.116-.767-2.3-18.416-2.3-18.416s-5.04 4.659-18.482 6.691Z", style: {
35
+ fill: "#fff",
36
+ }, transform: "translate(-5891.91 -547.006)" }),
37
+ React__namespace.createElement("path", { className: "writing-type-playscript_svg__c", d: "M47.428 65.271a7.548 7.548 0 0 0 .356-2.495 8.231 8.231 0 1 1-14.675 2.18 7.474 7.474 0 0 0 14.319.315ZM33.347 53.415a3.762 3.762 0 0 0 .179-1.252 4.132 4.132 0 1 1-7.367 1.094 3.751 3.751 0 0 0 7.188.158ZM51.09 50.735a3.771 3.771 0 0 0 .179-1.253 4.132 4.132 0 1 1-7.368 1.094 3.752 3.752 0 0 0 7.189.159Z" }),
38
+ React__namespace.createElement("path", { d: "M5974.159 591.338c-13.391-2.341-18.327-7.115-18.327-7.115s-2.562 17.456-2.72 18.359c-2.266 12.966 3.925 24.881 14.412 26.714s20.354-7.274 22.619-20.241c.134-.765 3.67-18.193 3.67-18.193s-6.262 2.817-19.654.476Z", style: {
39
+ fill: "#3ba6dd",
40
+ }, transform: "translate(-5891.91 -547.006)" }),
41
+ React__namespace.createElement("path", { className: "writing-type-playscript_svg__e", d: "M70.455 71.605a7.515 7.515 0 0 0-1.129 2.252 8.231 8.231 0 1 1 14.606 2.593 7.472 7.472 0 0 0-13.477-4.845ZM68.035 53.649a3.763 3.763 0 0 0-.568 1.131 4.132 4.132 0 1 1 7.334 1.3 3.752 3.752 0 0 0-6.766-2.432ZM85.706 56.74a3.781 3.781 0 0 0-.567 1.13 4.132 4.132 0 1 1 7.334 1.3 3.752 3.752 0 0 0-6.767-2.432Z" }))); };
42
+
43
+ module.exports = SvgWritingTypePlayscript;
44
+ //# sourceMappingURL=WritingTypePlayscript.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WritingTypePlayscript.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgWritingTypePoem: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgWritingTypePoem;
@@ -0,0 +1,42 @@
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 SvgWritingTypePoem = 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, ".writing-type-poem_svg__b,.writing-type-poem_svg__d{fill:#fff;fill-rule:evenodd}.writing-type-poem_svg__d{fill:#3ba6dd}")),
31
+ React__namespace.createElement("path", { style: {
32
+ fill: "none",
33
+ }, d: "M0 0h120v120H0z" }),
34
+ React__namespace.createElement("path", { className: "writing-type-poem_svg__b", d: "M45.479 90.534q-1.429 2.713-2.867 5.421c-.491.926-1.213 1.5-2.238.918-.978-.552-.762-1.429-.316-2.268 1.222-2.3 2.377-4.633 3.706-6.866a1.65 1.65 0 0 1 2.06-.9 1.112 1.112 0 0 1 .844 1.1 7.122 7.122 0 0 1-1.189 2.595ZM45.618 85.043a1.366 1.366 0 0 1 .082-2.728c.514-.033 1.344.938 1.349 1.426a1.585 1.585 0 0 1-1.431 1.302Z" }),
35
+ React__namespace.createElement("path", { d: "M4840.589 563.123h-.654c-4.086 3.14-8.151 6.308-12.275 9.4a2.526 2.526 0 0 0-1 2.656c.309 2.883.487 5.779.718 8.671l-.286.1-4.773-6.43a67.861 67.861 0 0 0-12.379 15.883 5.748 5.748 0 0 0-.546 2.755c.041 1.873.281 3.742.473 6.02-.971-1.228-1.695-2.144-2.44-3.089a2.34 2.34 0 0 0-.34.471c-2.285 6.538-2.564 13.063.129 19.572.2.489.541 1.146.372 1.526a30.481 30.481 0 0 1-1.339 2.791h3.93a3.667 3.667 0 0 1 .241-.329 4.616 4.616 0 0 1 2.956-1.459 18.594 18.594 0 0 0 8.1-3.42l-4.637-1.645c2.64-.674 4.823-1.372 7.06-1.759a6.872 6.872 0 0 0 4.525-2.817 45.737 45.737 0 0 0 6.247-10.837l-5.474-.474c2.056-1.417 4.148-2.458 6.142-3.661a3.733 3.733 0 0 0 1.567-1.855 106.189 106.189 0 0 0 4.63-29.689 6.892 6.892 0 0 0-.947-2.381Z", style: {
36
+ fill: "#ffef00",
37
+ fillRule: "evenodd",
38
+ }, transform: "translate(-4756.737 -544.957)" }),
39
+ React__namespace.createElement("path", { className: "writing-type-poem_svg__d", d: "M54.863 87.667a3.726 3.726 0 0 1-.241-1.765c0-.706.071-1.409.142-2.111.1-1.009.547-2.91-.771-3.369-.321-.112-.731-.032-.975-.107h-8.555c-2.021.23-2.787 1.126-2.46 3.482.415 3-.739 5.272-2.18 7.61-.941 1.525-1.779 3.114-2.691 4.659a4.337 4.337 0 0 1-.889 1.13 2.931 2.931 0 0 0 .217 4.638h24.185a2.5 2.5 0 0 0 1.307-2.366c.135-1.477-.994-1.975-1.619-2.913-1.926-2.893-3.677-5.905-5.47-8.888Zm-9.386 2.867q-1.429 2.713-2.867 5.421c-.491.926-1.213 1.5-2.238.918-.978-.552-.762-1.429-.316-2.268 1.222-2.3 2.377-4.633 3.706-6.866a1.65 1.65 0 0 1 2.06-.9 1.112 1.112 0 0 1 .844 1.1 7.122 7.122 0 0 1-1.187 2.595Zm.139-5.488a1.366 1.366 0 0 1 .082-2.728c.514-.033 1.344.938 1.349 1.426a1.585 1.585 0 0 1-1.429 1.299ZM52.898 74.534s24.618-43.046 27.431-48.251-23.07 43.6-26.587 48.814-.844-.563-.844-.563Z" }))); };
40
+
41
+ module.exports = SvgWritingTypePoem;
42
+ //# sourceMappingURL=WritingTypePoem.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WritingTypePoem.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgWritingTypeReport: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgWritingTypeReport;
@@ -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 SvgWritingTypeReport = 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, ".writing-type-report_svg__c{fill:#fff}.writing-type-report_svg__d{fill:#ffef00}")),
31
+ React__namespace.createElement("path", { style: {
32
+ fill: "none",
33
+ }, d: "M0 0h120v120H0z" }),
34
+ React__namespace.createElement("path", { d: "M4601.735 579.93v60.45a4.648 4.648 0 0 0 4.656 4.658h41.882a4.659 4.659 0 0 0 4.656-4.658v-60.45a4.649 4.649 0 0 0-4.656-4.659h-41.882a4.659 4.659 0 0 0-4.656 4.659Zm46.538-1.558a1.546 1.546 0 0 1 1.553 1.558v60.45a1.556 1.556 0 0 1-1.553 1.558h-41.882a1.546 1.546 0 0 1-1.553-1.558v-60.45a1.557 1.557 0 0 1 1.553-1.558Z", style: {
35
+ fill: "#3ba6dd",
36
+ }, transform: "translate(-4567.316 -550.675)" }),
37
+ React__namespace.createElement("path", { className: "writing-type-report_svg__c", d: "M44.905 46.625a2.448 2.448 0 0 0 2.452-2.452 2.451 2.451 0 1 0-2.452 2.452Z" }),
38
+ React__namespace.createElement("path", { className: "writing-type-report_svg__d", d: "M50.684 44.084a1.738 1.738 0 0 1 1.663-1.751h15.586a1.8 1.8 0 0 1 1.664 1.751 1.738 1.738 0 0 1-1.664 1.751H52.347a1.738 1.738 0 0 1-1.663-1.751ZM50.684 51.964a1.738 1.738 0 0 1 1.663-1.751h15.586a1.8 1.8 0 0 1 1.664 1.751 1.738 1.738 0 0 1-1.664 1.751H52.347a1.738 1.738 0 0 1-1.663-1.751Z" }),
39
+ React__namespace.createElement("path", { className: "writing-type-report_svg__c", d: "M44.905 62.646a2.447 2.447 0 0 0 2.452-2.451 2.451 2.451 0 1 0-2.452 2.451Z" }),
40
+ React__namespace.createElement("path", { className: "writing-type-report_svg__d", d: "M50.684 59.845a1.739 1.739 0 0 1 1.663-1.752h10.682a1.8 1.8 0 0 1 1.664 1.752 1.737 1.737 0 0 1-1.664 1.75H52.347a1.737 1.737 0 0 1-1.663-1.75Z" }),
41
+ React__namespace.createElement("path", { className: "writing-type-report_svg__c", d: "M44.905 54.678a2.447 2.447 0 0 0 2.452-2.451 2.451 2.451 0 1 0-2.452 2.451ZM44.905 70.702a2.448 2.448 0 0 0 2.452-2.452 2.451 2.451 0 1 0-2.452 2.452Z" }),
42
+ React__namespace.createElement("path", { className: "writing-type-report_svg__d", d: "M50.684 68.6a1.738 1.738 0 0 1 1.663-1.751h18.037a1.8 1.8 0 0 1 1.664 1.751 1.737 1.737 0 0 1-1.664 1.751H52.347a1.738 1.738 0 0 1-1.663-1.751Z" }),
43
+ React__namespace.createElement("path", { className: "writing-type-report_svg__c", d: "M44.905 78.67a2.448 2.448 0 0 0 2.452-2.452 2.451 2.451 0 1 0-2.452 2.452Z" }),
44
+ React__namespace.createElement("path", { className: "writing-type-report_svg__d", d: "M50.684 76.48a1.739 1.739 0 0 1 1.663-1.752h14.8a1.805 1.805 0 0 1 1.664 1.752 1.74 1.74 0 0 1-1.664 1.752h-14.8a1.738 1.738 0 0 1-1.663-1.752Z" }),
45
+ React__namespace.createElement("path", { className: "writing-type-report_svg__c", d: "M44.905 86.725a2.446 2.446 0 0 0 2.452-2.451 2.451 2.451 0 1 0-2.452 2.451Z" }),
46
+ React__namespace.createElement("path", { className: "writing-type-report_svg__d", d: "M50.684 84.361a1.738 1.738 0 0 1 1.663-1.752h20.489a1.8 1.8 0 0 1 1.664 1.752 1.738 1.738 0 0 1-1.664 1.75H52.347a1.737 1.737 0 0 1-1.663-1.75Z" }),
47
+ React__namespace.createElement("path", { className: "writing-type-report_svg__c", d: "m45.484 39.039-1.165-2.108h-.925v2.108h-1.263v-5.931h2.774a1.847 1.847 0 0 1 1.992 1.912 1.7 1.7 0 0 1-1.3 1.76l1.334 2.259Zm.124-4.019a.805.805 0 0 0-.889-.8h-1.325v1.6h1.325a.8.8 0 0 0 .892-.795ZM47.852 39.039v-5.931h4.2v1.117h-2.933v1.254h2.87v1.111h-2.87v1.335h2.933v1.111ZM53.037 39.039v-5.931h2.774a1.913 1.913 0 1 1 0 3.823H54.3v2.108Zm3.477-4.019a.8.8 0 0 0-.871-.8H54.3v1.6h1.343a.8.8 0 0 0 .871-.795ZM58.302 36.078a3.1 3.1 0 1 1 3.095 3.068 2.978 2.978 0 0 1-3.095-3.068Zm4.9 0a1.806 1.806 0 1 0-1.8 1.947 1.8 1.8 0 0 0 1.799-1.947ZM68.742 39.039l-1.165-2.108h-.924v2.108h-1.264v-5.931h2.774a1.848 1.848 0 0 1 1.992 1.912 1.7 1.7 0 0 1-1.3 1.76l1.334 2.259Zm.124-4.019a.806.806 0 0 0-.889-.8h-1.324v1.6h1.324a.805.805 0 0 0 .889-.795ZM72.384 39.039v-4.814H70.65v-1.112h4.731v1.112h-1.725v4.819Z" }))); };
48
+
49
+ module.exports = SvgWritingTypeReport;
50
+ //# sourceMappingURL=WritingTypeReport.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WritingTypeReport.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgZooPoint: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgZooPoint;
@@ -0,0 +1,75 @@
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 SvgZooPoint = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ "data-name": "Icon - Enclosure", 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", { d: "M60 68.385c-10.764 0-21.526 1.536-29.725 4.607-16.4 6.141-16.4 16.125 0 22.266l.078.029 27.46 10.283a5.359 5.359 0 0 0 3.247 0c9.847-3.6 19.894-7.052 28.664-10.313 16.4-6.141 16.4-16.125 0-22.266-8.199-3.073-18.962-4.606-29.724-4.606Z", fill: "rgba(0,0,0,0.3)" }),
31
+ React__namespace.createElement("g", { "data-name": "Group 87" },
32
+ React__namespace.createElement("path", { "data-name": "Path 156", d: "M60 5.862a42.025 42.025 0 0 0-29.725 71.751l.078.076 27.46 27.458a2.3 2.3 0 0 0 3.247 0c9.847-9.61 19.894-18.83 28.664-27.534A42.025 42.025 0 0 0 60 5.862Z", fill: "#0071bc" }),
33
+ React__namespace.createElement("path", { "data-name": "Path 157", d: "M60 .49a42.024 42.024 0 0 0-29.725 71.75l.078.076 27.46 27.458a2.3 2.3 0 0 0 3.247 0c9.847-9.609 19.894-18.829 28.664-27.534A42.024 42.024 0 0 0 60 .49Z", fill: "#29abe2" })),
34
+ React__namespace.createElement("g", { transform: "translate(26.798 7.941)" },
35
+ React__namespace.createElement("circle", { "data-name": "Ellipse 30", cx: 33.569, cy: 33.569, r: 33.569, transform: "translate(0 8.336)", fill: "#0071bc" }),
36
+ React__namespace.createElement("circle", { "data-name": "Ellipse 31", cx: 33.569, cy: 33.569, r: 33.569, transform: "translate(0 4.719)", fill: "#cc6100" }),
37
+ React__namespace.createElement("circle", { "data-name": "Ellipse 32", cx: 33.569, cy: 33.569, r: 33.569, fill: "#f7931e" }),
38
+ React__namespace.createElement("g", { "data-name": "Ellipse 33", fill: "none", stroke: "#fff", strokeMiterlimit: 10, strokeWidth: 2.885, opacity: 0.4, style: {
39
+ mixBlendMode: "overlay",
40
+ isolation: "isolate",
41
+ } },
42
+ React__namespace.createElement("circle", { cx: 33.569, cy: 33.569, r: 33.569, stroke: "none" }),
43
+ React__namespace.createElement("circle", { cx: 33.569, cy: 33.569, r: 32.126 })),
44
+ React__namespace.createElement("g", { "data-name": "Group 92" },
45
+ React__namespace.createElement("g", { "data-name": "Group 89", style: {
46
+ mixBlendMode: "multiply",
47
+ isolation: "isolate",
48
+ }, fill: "#aaa" },
49
+ React__namespace.createElement("path", { "data-name": "Path 158", d: "M32.066 8.834c4.077 0 1.359 10.484.582 13.008a5.731 5.731 0 0 1-5.242 4.271c-8.348-.389-5.63-17.668 4.66-17.279ZM8.574 32.52c-.776-4.078.194-9.319 3.106-11.067 1.36-.777 5.437 4.077 6.407 6.406a6.657 6.657 0 0 1 .776 4.466c-.582 3.3-3.3 5.436-6.212 4.853a5.9 5.9 0 0 1-4.077-4.658Zm37.873 18.025a15.754 15.754 0 0 1-8.154 10.29c-3.106 1.553-5.631-1.165-9.319-2.135-2.912-.777-6.6.971-8.542-1.165a16.047 16.047 0 0 1-3.5-14.561c.777-3.3 4.078-4.854 6.6-6.8 3.688-3.106 7.183-5.824 12.037-4.659 4.659 1.165 6.6 4.853 8.542 8.931 1.171 3.304 3.111 6.411 2.336 10.099Zm-2.925-21.326a5.707 5.707 0 0 1-3.3-5.825c.194-2.524 1.553-12.814 5.242-11.455 9.511 3.496 5.628 20.192-1.942 17.28Zm14.949 12.619a5.363 5.363 0 0 1-5.437 2.719c-2.718-.582-4.465-3.5-3.883-6.8a7.257 7.257 0 0 1 2.33-3.883c1.941-1.747 7.378-4.659 8.349-3.494 1.94 2.718.97 7.964-1.36 11.458Z" }),
50
+ React__namespace.createElement("path", { "data-name": "Path 159", d: "M9.844 26.264c.129-1.344.912-2.893 1.981-3.173.5-.119 1.325 1.77 1.416 2.587a2.167 2.167 0 0 1-.165 1.466 1.772 1.772 0 0 1-2.384.948 1.919 1.919 0 0 1-.848-1.828Z" }),
51
+ React__namespace.createElement("path", { "data-name": "Path 160", d: "M46.447 50.545c.777-3.689-1.165-6.795-2.33-10.095-1.748-3.672-3.5-7.023-7.237-8.5 2.546 2.482 3.524 6.413 3.866 10.056.326 3.48.234 7.171-1.486 10.213-.93 1.648-2.723 3.156-4.546 2.645a7.281 7.281 0 0 1-2.569-1.831 4.221 4.221 0 0 0-1.722-.977c-1.407-.34-2.423.911-3.683 1.333-2.672.9-5.682-.649-7.324-2.94a17.008 17.008 0 0 1-2.528-7.25 16.04 16.04 0 0 0 3.543 14.34c1.941 2.135 5.63.388 8.542 1.165 3.689.971 6.213 3.689 9.319 2.135a15.753 15.753 0 0 0 8.155-10.294Z" }),
52
+ React__namespace.createElement("path", { "data-name": "Path 161", d: "M27.406 26.112a5.731 5.731 0 0 0 5.242-4.271c.777-2.524 3.494-13.008-.582-13.008a8.628 8.628 0 0 0-1.141.039 4.355 4.355 0 0 0 .437.368c1.345 1.111 1.143 3.206.7 4.893a14.733 14.733 0 0 1-3.564 6.918 7.81 7.81 0 0 1-3.818 2.06 5.959 5.959 0 0 1-1.506.091 4.694 4.694 0 0 0 4.232 2.91Z" }),
53
+ React__namespace.createElement("path", { "data-name": "Path 162", d: "M18.864 32.326a6.658 6.658 0 0 0-.776-4.466 18.131 18.131 0 0 0-4.578-5.781l1.6 2.848a11.19 11.19 0 0 1 1.742 4.6 5.7 5.7 0 0 1-3.234 5.407 5.453 5.453 0 0 1-3.884.218 5.5 5.5 0 0 0 2.92 2.031c2.909.579 5.627-1.557 6.21-4.857Z" }),
54
+ React__namespace.createElement("path", { "data-name": "Path 163", d: "M48.132 13.533a14.22 14.22 0 0 1 .466 7.121 8.647 8.647 0 0 1-1.892 4.166 4.924 4.924 0 0 1-4.11 1.724 4.083 4.083 0 0 1-2.186-1.063 5.281 5.281 0 0 0 3.11 3.738c6.737 2.591 10.554-10.341 4.612-15.686Z" }),
55
+ React__namespace.createElement("path", { "data-name": "Path 164", d: "M59.829 30.386a1.037 1.037 0 0 0-.862-.259l.032.078c.953 2.4-.054 5.176-1.631 7.222-1.228 1.594-3.127 3.174-5.273 2.993a5.52 5.52 0 0 1-3.047-1.647c-.1 2.868 1.548 5.263 3.985 5.786a5.363 5.363 0 0 0 5.437-2.719c2.33-3.497 3.301-8.738 1.359-11.454Z" }),
56
+ React__namespace.createElement("path", { "data-name": "Path 165", d: "M27.732 35.369a6.612 6.612 0 0 0-1.112 1.023c-.357.408-.641.943-1.032 1.311-.177.167-.392.313-.584.47q-.651.532-1.29 1.08-.732.63-1.445 1.281a2.258 2.258 0 0 0-.476.47 4.385 4.385 0 0 0-.181.5 5.593 5.593 0 0 0-.45 1.563 2.776 2.776 0 0 0 .256 1.428 2.2 2.2 0 0 0 .432.787 3.953 3.953 0 0 0 2.786.849 4.325 4.325 0 0 0 3.405-2.09c.646-1.1.788-2.436 1.494-3.507a2.85 2.85 0 0 1 .9-.927 3.96 3.96 0 0 0 .654-.612 10.558 10.558 0 0 0 1.182-1.48 3.277 3.277 0 0 0 .692-2.25c-.177-1.094-1.236-1.4-2.188-1.244a7.438 7.438 0 0 0-3.043 1.348Z" }),
57
+ React__namespace.createElement("path", { "data-name": "Path 166", d: "M29.52 11.122c1.324.332-.414 3.517-.871 4.274a1.922 1.922 0 0 1-2.052.96c-2.68-.803-.388-6.203 2.923-5.234Z" }),
58
+ React__namespace.createElement("path", { "data-name": "Path 167", d: "M43.099 18.271a1.854 1.854 0 0 1-.625-2.083c.244-.786 1.417-3.947 2.487-3.251 2.762 1.795.326 6.804-1.862 5.334Z" }),
59
+ React__namespace.createElement("path", { "data-name": "Path 168", d: "M57.247 35.648a1.916 1.916 0 0 1-1.942.971 2.007 2.007 0 0 1-1.387-2.428 2.593 2.593 0 0 1 .832-1.387c.694-.624 2.636-1.665 2.982-1.248.694.97.347 2.842-.485 4.092Z" })),
60
+ React__namespace.createElement("g", { "data-name": "Group 91" },
61
+ React__namespace.createElement("g", { "data-name": "Group 90" },
62
+ React__namespace.createElement("path", { "data-name": "Path 169", d: "M32.066 6.632c4.077 0 1.359 10.484.582 13.008a5.731 5.731 0 0 1-5.242 4.271c-8.348-.389-5.63-17.667 4.66-17.279ZM8.574 30.318c-.776-4.078.194-9.319 3.106-11.067 1.36-.777 5.437 4.077 6.407 6.406a6.655 6.655 0 0 1 .776 4.466c-.582 3.3-3.3 5.436-6.212 4.853a5.9 5.9 0 0 1-4.077-4.658Zm37.873 18.026a15.756 15.756 0 0 1-8.154 10.29c-3.106 1.553-5.631-1.165-9.319-2.135-2.912-.777-6.6.971-8.542-1.165a16.047 16.047 0 0 1-3.5-14.561c.777-3.3 4.078-4.854 6.6-6.8 3.688-3.106 7.183-5.824 12.037-4.659 4.659 1.165 6.6 4.853 8.542 8.93 1.171 3.3 3.111 6.411 2.336 10.1Zm-2.925-21.327a5.705 5.705 0 0 1-3.3-5.824c.194-2.524 1.553-12.814 5.242-11.455 9.511 3.494 5.628 20.191-1.942 17.279Zm14.949 12.62a5.362 5.362 0 0 1-5.437 2.718c-2.718-.582-4.465-3.494-3.883-6.795a7.258 7.258 0 0 1 2.33-3.883c1.941-1.747 7.378-4.66 8.349-3.5 1.94 2.723.97 7.967-1.36 11.459Z", fill: "#ededed" }),
63
+ React__namespace.createElement("path", { "data-name": "Path 170", d: "M9.844 24.062c.129-1.344.912-2.893 1.981-3.173.5-.119 1.325 1.77 1.416 2.586a2.167 2.167 0 0 1-.165 1.466 1.772 1.772 0 0 1-2.384.949 1.92 1.92 0 0 1-.848-1.828Z", fill: "#fff" }),
64
+ React__namespace.createElement("path", { "data-name": "Path 171", d: "M46.447 48.343c.777-3.689-1.165-6.795-2.33-10.1-1.748-3.672-3.5-7.022-7.237-8.5 2.546 2.482 3.524 6.412 3.866 10.056.326 3.48.234 7.17-1.486 10.213-.93 1.648-2.723 3.156-4.546 2.645a7.281 7.281 0 0 1-2.569-1.831 4.234 4.234 0 0 0-1.722-.978c-1.407-.339-2.423.911-3.683 1.334-2.672.9-5.682-.649-7.324-2.94a17.012 17.012 0 0 1-2.528-7.25 16.041 16.041 0 0 0 3.543 14.341c1.941 2.135 5.63.388 8.542 1.165 3.689.971 6.213 3.689 9.319 2.135a15.755 15.755 0 0 0 8.155-10.29Z", fill: "#c6c6c6" }),
65
+ React__namespace.createElement("path", { "data-name": "Path 172", d: "M27.406 23.91a5.731 5.731 0 0 0 5.242-4.271c.777-2.524 3.494-13.008-.582-13.008a8.623 8.623 0 0 0-1.141.039 4.486 4.486 0 0 0 .437.368c1.345 1.111 1.143 3.206.7 4.893a14.737 14.737 0 0 1-3.569 6.913 7.8 7.8 0 0 1-3.818 2.06 5.915 5.915 0 0 1-1.506.092 4.694 4.694 0 0 0 4.237 2.914Z", fill: "#c6c6c6" }),
66
+ React__namespace.createElement("path", { "data-name": "Path 173", d: "M18.864 30.124a6.655 6.655 0 0 0-.776-4.466 18.121 18.121 0 0 0-4.578-5.781l1.6 2.848a11.185 11.185 0 0 1 1.742 4.6 5.7 5.7 0 0 1-3.234 5.407 5.458 5.458 0 0 1-3.884.218 5.5 5.5 0 0 0 2.92 2.031c2.909.579 5.627-1.557 6.21-4.857Z", fill: "#c6c6c6" }),
67
+ React__namespace.createElement("path", { "data-name": "Path 174", d: "M48.132 11.332a14.217 14.217 0 0 1 .466 7.12 8.65 8.65 0 0 1-1.892 4.167 4.924 4.924 0 0 1-4.11 1.724 4.083 4.083 0 0 1-2.186-1.063 5.279 5.279 0 0 0 3.11 3.737c6.737 2.591 10.554-10.342 4.612-15.685Z", fill: "#c6c6c6" }),
68
+ React__namespace.createElement("path", { "data-name": "Path 175", d: "M59.829 28.181a1.044 1.044 0 0 0-.862-.259l.032.078c.953 2.4-.054 5.177-1.631 7.223-1.228 1.594-3.127 3.174-5.273 2.993a5.526 5.526 0 0 1-3.047-1.647c-.1 2.867 1.548 5.263 3.985 5.785a5.362 5.362 0 0 0 5.437-2.718c2.33-3.495 3.301-8.736 1.359-11.455Z", fill: "#c6c6c6" }),
69
+ React__namespace.createElement("path", { "data-name": "Path 176", d: "M27.732 33.167a6.611 6.611 0 0 0-1.112 1.023c-.357.407-.641.943-1.032 1.311-.177.167-.392.312-.584.47q-.651.532-1.29 1.08-.732.63-1.445 1.281a2.277 2.277 0 0 0-.476.469 4.4 4.4 0 0 0-.181.5 5.593 5.593 0 0 0-.45 1.563 2.778 2.778 0 0 0 .256 1.428 2.2 2.2 0 0 0 .432.787 3.953 3.953 0 0 0 2.786.849 4.326 4.326 0 0 0 3.405-2.091c.646-1.1.788-2.435 1.494-3.506a2.841 2.841 0 0 1 .9-.927 3.959 3.959 0 0 0 .654-.612 10.512 10.512 0 0 0 1.182-1.481 3.274 3.274 0 0 0 .692-2.249c-.177-1.094-1.236-1.4-2.188-1.244a7.437 7.437 0 0 0-3.043 1.349Z", fill: "#fff" }),
70
+ React__namespace.createElement("path", { "data-name": "Path 177", d: "M29.52 8.919c1.324.333-.414 3.518-.871 4.275a1.923 1.923 0 0 1-2.052.96c-2.68-.807-.388-6.2 2.923-5.235Z", fill: "#fff" }),
71
+ React__namespace.createElement("path", { "data-name": "Path 178", d: "M43.099 16.069a1.855 1.855 0 0 1-.625-2.084c.244-.785 1.417-3.946 2.487-3.25 2.762 1.794.326 6.803-1.862 5.334Z", fill: "#fff" }),
72
+ React__namespace.createElement("path", { "data-name": "Path 179", d: "M57.247 33.444a1.916 1.916 0 0 1-1.942.972 2.007 2.007 0 0 1-1.387-2.428 2.593 2.593 0 0 1 .832-1.387c.694-.625 2.636-1.665 2.982-1.248.694.971.347 2.844-.485 4.091Z", fill: "#fff" }))))))); };
73
+
74
+ module.exports = SvgZooPoint;
75
+ //# sourceMappingURL=ZooPoint.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ZooPoint.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,129 @@
1
+ export { default as NzkPurple } from "./NzkPurple";
2
+ export { default as Nzk } from "./Nzk";
3
+ export { default as AboutUs } from "./AboutUs";
4
+ export { default as Activities } from "./Activities";
5
+ export { default as Archive } from "./Archive";
6
+ export { default as ArrowLeft } from "./ArrowLeft";
7
+ export { default as ArrowRight } from "./ArrowRight";
8
+ export { default as Bear } from "./Bear";
9
+ export { default as CardSkills } from "./CardSkills";
10
+ export { default as Challenges } from "./Challenges";
11
+ export { default as Chart } from "./Chart";
12
+ export { default as Checkmark } from "./Checkmark";
13
+ export { default as CloseCopy } from "./CloseCopy";
14
+ export { default as Close } from "./Close";
15
+ export { default as Collect } from "./Collect";
16
+ export { default as Comment } from "./Comment";
17
+ export { default as Compass } from "./Compass";
18
+ export { default as Controller } from "./Controller";
19
+ export { default as Create } from "./Create";
20
+ export { default as Customise } from "./Customise";
21
+ export { default as Download } from "./Download";
22
+ export { default as Draft } from "./Draft";
23
+ export { default as DrawingTask } from "./DrawingTask";
24
+ export { default as DrawingToolArrowDown } from "./DrawingToolArrowDown";
25
+ export { default as DrawingToolArrowLeft } from "./DrawingToolArrowLeft";
26
+ export { default as DrawingToolArrowRight } from "./DrawingToolArrowRight";
27
+ export { default as DrawingToolArrowUp } from "./DrawingToolArrowUp";
28
+ export { default as DrawingToolCamera } from "./DrawingToolCamera";
29
+ export { default as DrawingToolColorMixer } from "./DrawingToolColorMixer";
30
+ export { default as DrawingToolEraser } from "./DrawingToolEraser";
31
+ export { default as DrawingToolFillBrush } from "./DrawingToolFillBrush";
32
+ export { default as DrawingToolLargeLine } from "./DrawingToolLargeLine";
33
+ export { default as DrawingToolLineBrush } from "./DrawingToolLineBrush";
34
+ export { default as DrawingToolMediumLine } from "./DrawingToolMediumLine";
35
+ export { default as DrawingToolOpacityFull } from "./DrawingToolOpacityFull";
36
+ export { default as DrawingToolOpacityHalf } from "./DrawingToolOpacityHalf";
37
+ export { default as DrawingToolRedo } from "./DrawingToolRedo";
38
+ export { default as DrawingToolSmallLine } from "./DrawingToolSmallLine";
39
+ export { default as DrawingToolStickers } from "./DrawingToolStickers";
40
+ export { default as DrawingToolUndo } from "./DrawingToolUndo";
41
+ export { default as Egg } from "./Egg";
42
+ export { default as Enclosure } from "./Enclosure";
43
+ export { default as ExclamationGrey } from "./ExclamationGrey";
44
+ export { default as Exclamation } from "./Exclamation";
45
+ export { default as Eye } from "./Eye";
46
+ export { default as Facebook } from "./Facebook";
47
+ export { default as Filter } from "./Filter";
48
+ export { default as Flag } from "./Flag";
49
+ export { default as Flamingo } from "./Flamingo";
50
+ export { default as ForYou } from "./ForYou";
51
+ export { default as Games } from "./Games";
52
+ export { default as Gift } from "./Gift";
53
+ export { default as Giraffe } from "./Giraffe";
54
+ export { default as Goals } from "./Goals";
55
+ export { default as Heart } from "./Heart";
56
+ export { default as Help } from "./Help";
57
+ export { default as IdeaCreator } from "./IdeaCreator";
58
+ export { default as Info } from "./Info";
59
+ export { default as Instagram } from "./Instagram";
60
+ export { default as Items } from "./Items";
61
+ export { default as Layers } from "./Layers";
62
+ export { default as Lessons } from "./Lessons";
63
+ export { default as Link } from "./Link";
64
+ export { default as List } from "./List";
65
+ export { default as Lock } from "./Lock";
66
+ export { default as Logout } from "./Logout";
67
+ export { default as Megaphone } from "./Megaphone";
68
+ export { default as Menu } from "./Menu";
69
+ export { default as Message } from "./Message";
70
+ export { default as Minus } from "./Minus";
71
+ export { default as More } from "./More";
72
+ export { default as MyHistory } from "./MyHistory";
73
+ export { default as MyZoo } from "./MyZoo";
74
+ export { default as New } from "./New";
75
+ export { default as Notifications } from "./Notifications";
76
+ export { default as NzktvBlue } from "./NzktvBlue";
77
+ export { default as NzktvGreen } from "./NzktvGreen";
78
+ export { default as OrbDisabled } from "./OrbDisabled";
79
+ export { default as Orb } from "./Orb";
80
+ export { default as Padlock } from "./Padlock";
81
+ export { default as Pdf } from "./Pdf";
82
+ export { default as Pencil } from "./Pencil";
83
+ export { default as Pending } from "./Pending";
84
+ export { default as Penguin } from "./Penguin";
85
+ export { default as PlayVideo } from "./PlayVideo";
86
+ export { default as Play } from "./Play";
87
+ export { default as Plus } from "./Plus";
88
+ export { default as Private } from "./Private";
89
+ export { default as Progress } from "./Progress";
90
+ export { default as Projects } from "./Projects";
91
+ export { default as Refresh } from "./Refresh";
92
+ export { default as Rewards } from "./Rewards";
93
+ export { default as Sealion } from "./Sealion";
94
+ export { default as Search } from "./Search";
95
+ export { default as Send } from "./Send";
96
+ export { default as Settings } from "./Settings";
97
+ export { default as Sharing } from "./Sharing";
98
+ export { default as Shop } from "./Shop";
99
+ export { default as SoundOff } from "./SoundOff";
100
+ export { default as SoundOn } from "./SoundOn";
101
+ export { default as StarWriting } from "./StarWriting";
102
+ export { default as Task } from "./Task";
103
+ export { default as TextToSpeech } from "./TextToSpeech";
104
+ export { default as Tick } from "./Tick";
105
+ export { default as Torch } from "./Torch";
106
+ export { default as Transfer } from "./Transfer";
107
+ export { default as TrashCopy } from "./TrashCopy";
108
+ export { default as TrashWhite } from "./TrashWhite";
109
+ export { default as Trash } from "./Trash";
110
+ export { default as Trophy } from "./Trophy";
111
+ export { default as Twitter } from "./Twitter";
112
+ export { default as Upload } from "./Upload";
113
+ export { default as User } from "./User";
114
+ export { default as Users } from "./Users";
115
+ export { default as Video } from "./Video";
116
+ export { default as Whatsapp } from "./Whatsapp";
117
+ export { default as WritingTypeAdventureStory } from "./WritingTypeAdventureStory";
118
+ export { default as WritingTypeBiography } from "./WritingTypeBiography";
119
+ export { default as WritingTypeDiaryEntry } from "./WritingTypeDiaryEntry";
120
+ export { default as WritingTypeFreeWrite } from "./WritingTypeFreeWrite";
121
+ export { default as WritingTypeInstructions } from "./WritingTypeInstructions";
122
+ export { default as WritingTypeLetterWriting } from "./WritingTypeLetterWriting";
123
+ export { default as WritingTypeNewspaperArticle } from "./WritingTypeNewspaperArticle";
124
+ export { default as WritingTypePersuasiveWriting } from "./WritingTypePersuasiveWriting";
125
+ export { default as WritingTypePlayscript } from "./WritingTypePlayscript";
126
+ export { default as WritingTypePoem } from "./WritingTypePoem";
127
+ export { default as WritingTypeReport } from "./WritingTypeReport";
128
+ export { default as Writing } from "./Writing";
129
+ export { default as ZooPoint } from "./ZooPoint";
package/dist/index.d.ts CHANGED
@@ -14,4 +14,5 @@ import useInterval from './hooks/useInterval';
14
14
  import useEventListener from './hooks/useEventListener';
15
15
  import useElementSize from './hooks/useElementSize';
16
16
  import useDebounce from './hooks/useDebounce';
17
+ export * from './icons';
17
18
  export { Avatar, IconButton, Button, DatePicker, Icon, Input, Modal, ModalProvider, useModalState, useAsync, useMountState, useConfettis, useCloudinary, useInterval, useElementSize, useEventListener, useDebounce };