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,101 @@
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 SvgFlamingo = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 119.929 119.929" }, props),
29
+ React__namespace.createElement("defs", null,
30
+ React__namespace.createElement("clipPath", { id: "flamingo_svg__a" },
31
+ React__namespace.createElement("path", { "data-name": "Rectangle 1727", fill: "none", d: "M0 0h119.929v119.929H0z" })),
32
+ React__namespace.createElement("clipPath", { id: "flamingo_svg__b" },
33
+ React__namespace.createElement("path", { "data-name": "Rectangle 1724", transform: "translate(17.957 11.125)", fill: "none", d: "M0 0h69.089v99.476H0z" })),
34
+ React__namespace.createElement("clipPath", { id: "flamingo_svg__c" },
35
+ React__namespace.createElement("path", { "data-name": "Rectangle 1725", transform: "translate(48.36 33.987)", fill: "none", d: "M0 0h45.686v23.51H0z" })),
36
+ React__namespace.createElement("clipPath", { id: "flamingo_svg__d" },
37
+ React__namespace.createElement("path", { "data-name": "Rectangle 1726", transform: "translate(48.36 43.617)", fill: "none", d: "M0 0h43.606v12.934H0z" }))),
38
+ React__namespace.createElement("g", { "data-name": "Group 1958" },
39
+ React__namespace.createElement("g", { "data-name": "Group 1967", clipPath: "url(#flamingo_svg__a)" },
40
+ React__namespace.createElement("g", { "data-name": "Group 1960", opacity: 0.3 },
41
+ React__namespace.createElement("g", { "data-name": "Group 1959" },
42
+ React__namespace.createElement("g", { "data-name": "Group 1958", clipPath: "url(#flamingo_svg__b)" },
43
+ React__namespace.createElement("path", { "data-name": "Path 2640", d: "M84.493 43.034a22.071 22.071 0 0 0-2.724-4.043 10.511 10.511 0 0 0-1.507-1.485 161.757 161.757 0 0 0-12.581-2.351q-.911-.133-1.759-.25l-.832-.111a160.201 160.201 0 0 0-3.611-.436l-.073-.008a3.07 3.07 0 0 0-.383-.856.437.437 0 0 1-.066-.129 3.047 3.047 0 0 0-.116-1.719 2.829 2.829 0 0 0-.455-.748 3.738 3.738 0 0 0-.311-1.223 1.087 1.087 0 0 0-.132-.334c.942-.824.046-1.941-.726-2.272a2.2 2.2 0 0 0-.384-.336 5.681 5.681 0 0 0-1.136-.722 2.267 2.267 0 0 0-.155-.412 2.483 2.483 0 0 0-.1-.344 5.3 5.3 0 0 0-1.912-2.518.994.994 0 0 0-.419-.195.562.562 0 0 0-.164.011c-.756-.475-3.246-1.809-7.959-2.269-.113-.011-.235-.018-.351-.028l2.45-.243 2.956-7.743a40.977 40.977 0 0 0-5.258-1.145 50.665 50.665 0 0 0-23.478 14.014c-.069.374-.136.752-.191 1.139 0 .029 0 .052-.006.08a65.168 65.168 0 0 0-3.281 2.84c-.648.841-1.277 1.7-1.872 2.58l2.709-1.264a21.293 21.293 0 0 0-1.938 10.634 19.364 19.364 0 0 0 .858 4.383s.146-.555.384-1.322l.127-.4a14.212 14.212 0 0 1 1.6-3.628s.649 4.848 1.215 9.87l.1.887c.1.887.192 1.772.278 2.627a54.1 54.1 0 0 1 .426 6.982 39.293 39.293 0 0 0 2.313-5.417 32.051 32.051 0 0 0 .953-3.333c.088-.388.167-.781.236-1.175a18.246 18.246 0 0 0 .3-3.543s1.544 2.525 3.221 6.053a51.294 51.294 0 0 1 3.489 9.339 32.568 32.568 0 0 0-2.111-13.8L35.31 52.4c.69.815 1.424 1.688 2.135 2.547.5.606.99 1.2 1.441 1.764.9 1.122 1.653 2.1 2.052 2.709 1 1.525 4.781 7.23 8.257 13.906.521 1 1.036 2.024 1.533 3.059s.977 2.079 1.429 3.125a56.675 56.675 0 0 1 2.3 6.189l1.783 5.725s-.305.837-.8 2.16c-.142.378-.3.8-.47 1.245-.341.9-.734 1.924-1.158 3.009a104.129 104.129 0 0 1-5.052 11.519 50.512 50.512 0 0 0 7.747 1.135c.171-.011.34-.022.514-.035a41.917 41.917 0 0 0 10.005-.341s.853-6.022.759-7.43c0 0 1.072 4.626.911 5.363l1.354-.47s.014-.167.033-.437c.073-1.024.24-3.607.166-5.016a33.793 33.793 0 0 0-.54-4.012s.294.75.671 1.832c.062.181.128.371.194.568a27.016 27.016 0 0 1 1.411 5.718s.03-.182.073-.48v-.009c.233-1.625.894-7.074-.074-11.008a91.779 91.779 0 0 0-4.669-12.295S66.2 79.775 64.4 76.171c-.112-.226-.228-.454-.346-.687-.59-1.161-1.246-2.4-1.954-3.675q-.213-.381-.432-.766a86.566 86.566 0 0 0-1.363-2.314 62.262 62.262 0 0 0-2.988-4.475q-.564-.763-1.129-1.494c-.126-.163-.25-.319-.376-.479-.25-.321-.5-.639-.749-.95l-.436-.536q-.344-.421-.681-.83a147.54 147.54 0 0 0-.437-.52q-.336-.4-.664-.779a73.261 73.261 0 0 0-1.085-1.241c-.115-.13-.231-.262-.345-.388a93.843 93.843 0 0 0-.767-.845l-.195-.213c-.655-.711-1.261-1.35-1.806-1.912a75.675 75.675 0 0 0-2.577-2.549l-.034-.033-.121-.112-1.445-1.76.066-.041c.1.09.193.18.3.271a15.583 15.583 0 0 0 1.8 1.3 19.5 19.5 0 0 0 3.687 1.757c.433.156.857.289 1.278.413.115.034.229.065.343.1q.507.141 1 .253c.082.019.165.04.246.058q.606.13 1.189.222c.071.012.141.02.212.031.325.048.645.088.958.12l.263.026c.739.066 1.44.091 2.1.085h.242c.262-.005.517-.016.765-.03l.195-.011c.289-.02.568-.045.835-.074.085-.009.165-.02.249-.031.177-.022.35-.045.517-.07.1-.016.207-.031.308-.048a16.55 16.55 0 0 0 1.018-.199l.12-.026.414-.1a11.767 11.767 0 0 0 1.357-.427c-2.112-3.848-7.086-6.007-7.086-6.007a27.6 27.6 0 0 1 14.792.516l.047.019c.421.15.841.32 1.26.5.092.039.184.082.276.122q.508.225 1.011.474c.088.043.177.086.265.131q.6.306 1.195.637l.008.005q.642.362 1.263.748c.021.012.041.026.062.039q.564.35 1.107.714l.175.118q.521.351 1.019.707l.093.066a51.19 51.19 0 0 1 2.073 1.573c.048.037.093.074.14.112q.388.312.75.613l.2.165c.229.192.447.379.657.56.046.04.1.083.142.123.234.2.452.4.658.581l.31.282.238.218.365.34q.242.228.428.407c.354.343.563.555.563.555a14.775 14.775 0 0 0 0-11.309 30.008 30.008 0 0 0-1.448-3.154" })))),
44
+ React__namespace.createElement("path", { "data-name": "Path 2641", d: "M42.714 10.7s-3.659-6.389-3.8-9.767c0 0-.882 5.776 0 7.979 0 0-3.2-5.612-3.5-8.521 0 0-1.46 7.083 0 11.838l.124 1.586s-2.675-4.577-2.675-6.407a21.325 21.325 0 0 0 0 10.63c1.549 5.279 9.853-7.338 9.853-7.338", fill: "#944787" }),
45
+ React__namespace.createElement("path", { "data-name": "Path 2642", d: "M35.412.4s-.253 1.239-.443 3.018c.438-.078.85-.137 1.227-.171A12.113 12.113 0 0 1 35.412.4", fill: "#571e61" }),
46
+ React__namespace.createElement("path", { "data-name": "Path 2643", d: "M36.1 15.086a10.545 10.545 0 0 1-3.92-2.576 18.44 18.44 0 0 0 .681 5.532c.8 2.716 3.381.695 5.7-1.908a14.4 14.4 0 0 0-2.461-1.048", fill: "#571e61" }),
47
+ React__namespace.createElement("path", { "data-name": "Path 2644", d: "M38.914.938s-.156 1.032-.272 2.385a5.26 5.26 0 0 1 .816.22 10.51 10.51 0 0 1-.544-2.6", fill: "#571e61" }),
48
+ React__namespace.createElement("path", { "data-name": "Path 2645", d: "M34.116 15.054a31.218 31.218 0 0 0-4 11.224C29.2 32.684 43 20.3 43 20.3Z", fill: "#6c6697" }),
49
+ React__namespace.createElement("path", { "data-name": "Path 2646", d: "m32.861 13.256 5.913 8.472 17.316-1.715 2.956-7.742s-14.359-4.505-26.185.985", fill: "#fff" }),
50
+ React__namespace.createElement("path", { "data-name": "Path 2647", d: "M47.194 12.51a2.683 2.683 0 0 0-2.534 3.1 3.278 3.278 0 0 0 3.59 2.886 2.473 2.473 0 0 0 2.464-2.988c-.423-2.928-2.089-2.998-3.52-2.998Z", fill: "none", stroke: "#ea7cd9", strokeMiterlimit: 10, strokeWidth: 2 }),
51
+ React__namespace.createElement("path", { "data-name": "Path 2648", d: "M62.2 22.725s-2.44-1.877-8.212-2.44-15.392.36-21.164 4.082a67.182 67.182 0 0 0-9.385 8.119l4.223-1.971a21.082 21.082 0 0 0-1.079 15.016s1.032-3.941 2.111-5.349c0 0 2.3 17.175 2.018 20.366 0 0 3.942-7.274 3.8-13.468 0 0 4.881 7.977 6.711 15.392a32.565 32.565 0 0 0-2.112-13.8s7.227 8.306 8.822 10.747S58.261 75 61.452 85.7l1.783 5.725s-6.385 17.491-8.26 18.975c0 0 9.934 1.15 19.046-1.827a41.731 41.731 0 0 0 .758-5.886s1.072 4.626.912 5.363l1.354-.471s.292-3.672.2-5.455a33.685 33.685 0 0 0-.54-4.012s2.089 5.326 2.276 8.118c0 0 1.15-6.828 0-11.5a91.633 91.633 0 0 0-4.671-12.291s-4.434-10.652-9.995-18.184a99.581 99.581 0 0 0-11.4-12.881l-1.446-1.76 12.5-7.673 4.505-7.39a4.1 4.1 0 0 0-.446-1.056c-.211-.235-.329-1.83-.634-2.558a10.439 10.439 0 0 0-.445-1.6 1.224 1.224 0 0 0 .234-1.033c-.141-.61-.774-.985-1.384-1.337a8.515 8.515 0 0 1-1.267-.962 5.2 5.2 0 0 0-2.332-3.28", fill: "#d56bc4" }),
52
+ React__namespace.createElement("path", { "data-name": "Path 2649", d: "m58.6 39.2 5.77-2.572.949-3.115-3.627-10.868-10.611-.108-5.6 2.587-.925 4.546S54.9 39.571 58.6 39.2", fill: "#f39de7" }),
53
+ React__namespace.createElement("path", { "data-name": "Path 2650", d: "M61.359 23.757a14.327 14.327 0 0 0 2.141.095 3.953 3.953 0 0 0-1.3-1.127s-2.441-1.877-8.212-2.441c-5.087-.5-13.159.165-18.956 2.876.041.974.659 1.941 2.531 2.544l4.759.681 4.767-.34a28.674 28.674 0 0 1 14.266-2.288", fill: "#ec84db" }),
54
+ React__namespace.createElement("path", { "data-name": "Path 2651", d: "M32.827 24.367a26.3 26.3 0 0 0-1.1.757l6.4.58c-.071-1.806.774-2.135.774-2.135l.552 2.135c1.653-3.166 12.557-5.462 12.881-5.53-5.826-.259-14.257.805-19.51 4.193", fill: "#734298" }),
55
+ React__namespace.createElement("path", { "data-name": "Path 2652", d: "M55.516 66.437c-1.478-2.323-9.01-13.093-10.066-14.5S42 46.235 40.03 39.689a54.228 54.228 0 0 1-1.9-13.989l-6.4-.581a73.634 73.634 0 0 0-8.285 7.362l4.223-1.971a21.082 21.082 0 0 0-1.079 15.016s1.032-3.942 2.111-5.349c0 0 2.3 17.175 2.018 20.366 0 0 3.942-7.274 3.8-13.468 0 0 4.881 7.977 6.711 15.392a32.565 32.565 0 0 0-2.112-13.8s7.227 8.306 8.822 10.746S58.261 75 61.452 85.7l1.783 5.725s-6.385 17.492-8.26 18.976a52.36 52.36 0 0 0 9.04.057c0-.009.013-.018.018-.027 1.2-2.042 3.168-16.823 3.449-18.865s-.844-3.308-1.689-5.349-8.8-17.457-10.277-19.78", fill: "#683288" }),
56
+ React__namespace.createElement("path", { "data-name": "Path 2653", d: "M59.74 58.547a94.274 94.274 0 0 0-6.828-7.173l-1.445-1.76 2.163-1.329c-1.807-1.223-3.483-2.018-4.683-1.9a18.491 18.491 0 0 0 .68 5.43c.751 1.971 5.121 5.947 10.113 6.728", fill: "#683288" }),
57
+ React__namespace.createElement("path", { "data-name": "Path 2654", d: "m42.326 52.42-3.21-3.745-1.689-1.384s-4.466-11.812-2.777-21.9l1.79.163a39.717 39.717 0 0 0 1.585 14c2.252 7.426 4.3 12.872 4.3 12.872", fill: "#7e85b0" }),
58
+ React__namespace.createElement("path", { "data-name": "Path 2655", d: "M74.78 102.688s1.072 4.626.911 5.363l1.354-.471s.014-.168.033-.439a57.7 57.7 0 0 0-2.486-8.536 37.125 37.125 0 0 1 .188 4.083", fill: "#734298" }),
59
+ React__namespace.createElement("path", { "data-name": "Path 2656", d: "M79.338 103.213C78.188 97.131 75.9 94.8 75.9 94.8c.148.528.8 3.308.8 3.308s2.088 5.326 2.276 8.118c0 0 .208-1.239.359-3.017", fill: "#734298" }),
60
+ React__namespace.createElement("path", { "data-name": "Path 2657", d: "M67.061 77.946c-.748-1.012-1.868-2.527-3.2-2.134-1.353.685-1.178 1.912-.067 2.794a5.068 5.068 0 0 0 2.673 1.029v.071a5.091 5.091 0 0 1-2.985-.654c-1.776-.891-2.138-3.606.148-4.1 1.824-.257 2.834 1.667 3.436 3", fill: "#de82d0" }),
61
+ React__namespace.createElement("path", { "data-name": "Path 2658", d: "M65.781 104.586c.49-1.376 1.341-3.377 3.18-3.269 2.319.31 2.18 3.045.482 4.078-.45.467-2.67 1.124-2.928.825a5.058 5.058 0 0 0 2.58-1.244c1.035-.97 1.109-2.207-.295-2.778-1.365-.283-2.354 1.317-3.019 2.388", fill: "#de82d0" }),
62
+ React__namespace.createElement("path", { "data-name": "Path 2659", d: "M64.509 68.787c-.325-1.186-.9-2.661-2.191-2.886-1.611-.124-1.623.849-.887 2.011a6.557 6.557 0 0 0 1.959 1.8 4.6 4.6 0 0 1-3.079-2.8c-.493-2.324 2.585-2.361 3.424-.809a5.439 5.439 0 0 1 .774 2.689", fill: "#de82d0" }),
63
+ React__namespace.createElement("path", { "data-name": "Path 2660", d: "M74.311 82.439s-4.436-10.652-10-18.184a101.993 101.993 0 0 0-8.671-10.188c.046.06 10.7 13.44 13.692 19.714 2.159 4.52 6.839 14.472 9.3 19.711a102.787 102.787 0 0 0-4.326-11.053", fill: "#efbbea" }),
64
+ React__namespace.createElement("path", { "data-name": "Path 2661", d: "M39.726 27.277c8.672-3.72 17.571-.61 20.207 8.852.156.518.321 1.033.525 1.535l-.8.243c-1.08-1.921-1.271-4.08-2.514-5.947-3.621-6.238-11.156-6.979-17.423-4.683", fill: "#ffc2f8" }),
65
+ React__namespace.createElement("path", { "data-name": "Path 2662", d: "m61.31 26.376 1.058 4.1c.3 1.2.66 2.734 1.868 3.2a.5.5 0 1 1-.406.914c-1.522-.784-1.8-2.514-1.99-3.974l-.621-4.217a.047.047 0 0 1 .091-.018", fill: "#ffc2f8" }),
66
+ React__namespace.createElement("path", { "data-name": "Path 2663", d: "M62.533 22.737a.994.994 0 0 0-.419-.195.872.872 0 0 0-.778.459 3.936 3.936 0 0 0-.2 2.885q.4 2.139.794 4.278a.37.37 0 0 0 .074.189.321.321 0 0 0 .234.076 1.667 1.667 0 0 0 1.285-.691 4.26 4.26 0 0 0 .639-1.363 4.885 4.885 0 0 0 .288-3.12 5.3 5.3 0 0 0-1.912-2.518", fill: "#662f71" }),
67
+ React__namespace.createElement("path", { "data-name": "Path 2664", d: "M64.137 24.913a1.254 1.254 0 0 0-1.194-.642c-.515.1-.809.644-.963 1.145a11.318 11.318 0 0 0 .241 5.764c.04.18.114.393.295.429.328-1.049-.024-2.287.56-3.217.38-.607 1.07-.91 1.49-1.473.463-.622-.043-1.415-.429-2.006", fill: "#8d4ba0" }),
68
+ React__namespace.createElement("path", { "data-name": "Path 2665", d: "M63.5 26.193a2.327 2.327 0 0 0-.539.806 7.306 7.306 0 0 0-.416 4.812c.1.378.312.818.7.835s.653-.427.814-.8a18.571 18.571 0 0 1 2.007-3.52 1.279 1.279 0 0 0 .346-.835 1.193 1.193 0 0 0-.583-.758c-.675-.486-1.53-1.245-2.332-.54", fill: "#ae5da9" }),
69
+ React__namespace.createElement("path", { "data-name": "Path 2666", d: "M63.5 33.377a4.31 4.31 0 0 1-.376-4.176c1.05-2.253 1.895-2.206 2.669-2.229s2.276 1.384 1.15 2.369a32.655 32.655 0 0 0-3.238 4.036", fill: "#361f56" }),
70
+ React__namespace.createElement("path", { "data-name": "Path 2667", d: "M67.841 31.646a2.826 2.826 0 0 1-.218 2.545 1.993 1.993 0 0 1-2.325.772.781.781 0 0 1-.358-.268.69.69 0 0 1-.016-.645 2.14 2.14 0 0 1 .393-.541 4.672 4.672 0 0 0 1.336-2.4c.149-1.193 1 .019 1.188.537", fill: "#662f71" }),
71
+ React__namespace.createElement("path", { "data-name": "Path 2668", d: "M65.113 34.363s1.333.235 2.028-1.6.037-4.082-1.606-4.5-3.135 3.566-2.035 5.115 1.613.985 1.613.985", fill: "#fff" }),
72
+ React__namespace.createElement("path", { "data-name": "Path 2669", d: "M64.476 33.78a1.464 1.464 0 0 1-.11-.991.859.859 0 0 1 .718-.631.445.445 0 0 1 .31.083.589.589 0 0 1 .144.2 4.512 4.512 0 0 1 .352.924.916.916 0 0 1-.059.785c-.463.607-1.128.14-1.355-.37", fill: "#1b0d29" }),
73
+ React__namespace.createElement("path", { "data-name": "Path 2670", d: "M65.1 32.483a.423.423 0 0 0-.042.419.264.264 0 0 0 .109.124.22.22 0 0 0 .268-.072.293.293 0 0 0 .019-.288.446.446 0 0 0-.213-.205", fill: "#fff" }),
74
+ React__namespace.createElement("path", { "data-name": "Path 2671", d: "M41.056 26.858s-.567 4.736 4.254 9.593 6.335 5.842 9.5 5.56 5.264-3.836 5.264-3.836a42.271 42.271 0 0 0-2.8-6.829c-1.3-2.11-6.96-7.64-16.221-4.488", fill: "#662f71" }),
75
+ React__namespace.createElement("path", { "data-name": "Path 2672", d: "M54.813 42.011c3.167-.282 5.263-3.836 5.263-3.836a42.273 42.273 0 0 0-2.8-6.828 11.7 11.7 0 0 0-3.693-3.442c-.065.015-.108.028-.108.028s-6.335-2.747-10.489 0c0 0 .74 6.195 2.323 8.518 4.822 4.857 6.335 5.843 9.5 5.56", fill: "#8d4ba0" }),
76
+ React__namespace.createElement("path", { "data-name": "Path 2673", d: "M48.055 37.882s-3.942-4.358-2.323-7.453 5.667-2.6 7.391-1.792a9.7 9.7 0 0 1 4.294 4.409c.845 1.821-9.362 4.836-9.362 4.836", fill: "#ae5da9" }),
77
+ React__namespace.createElement("path", { "data-name": "Path 2674", d: "M58.578 36.275s.387 3.1-2.323 4.118-7.637-1.4-8.2-2.511l.14-1.361Z", fill: "#662f71" }),
78
+ React__namespace.createElement("path", { "data-name": "Path 2675", d: "M48.055 37.882a8.267 8.267 0 0 1 .141-5.128 4.982 4.982 0 0 1 4.516-3.342c2.075-.3 3.524 1.794 4.22 2.745a2.256 2.256 0 0 1 .535 1.683Z", fill: "#361f56" }),
79
+ React__namespace.createElement("path", { "data-name": "Path 2676", d: "M48.2 36.521a7.071 7.071 0 0 0 4.787 2.921c3.413.6 5.6-3.167 5.6-3.167s-1.3-4.963-5.456-5.315-4.931 5.561-4.931 5.561", fill: "#fff" }),
80
+ React__namespace.createElement("path", { "data-name": "Path 2677", d: "M51.906 38.608a1.781 1.781 0 0 1-.134-1.211 1.049 1.049 0 0 1 .878-.771.545.545 0 0 1 .379.1.742.742 0 0 1 .175.245 5.519 5.519 0 0 1 .431 1.13 1.121 1.121 0 0 1-.073.96c-.565.74-1.378.169-1.656-.454", fill: "#1b0d29" }),
81
+ React__namespace.createElement("path", { "data-name": "Path 2678", d: "M52.663 37.023a.514.514 0 0 0-.051.512.32.32 0 0 0 .134.152.267.267 0 0 0 .326-.088.359.359 0 0 0 .024-.352.553.553 0 0 0-.261-.247", fill: "#fff" }),
82
+ React__namespace.createElement("path", { "data-name": "Path 2679", d: "M48.36 45.015a7.468 7.468 0 0 1 4.693-3.379 4 4 0 0 0 4.035-.375c1.924-1.455 1.987-3.191 2.988-4.317a10.532 10.532 0 0 1 4.433-2.957 161.977 161.977 0 0 1 22.753 3.52s3.191 2.346 5.678 8.681a14.775 14.775 0 0 1 0 11.309s-7.02-7.226-14.3-9.807a27.594 27.594 0 0 0-14.791-.516s4.974 2.158 7.086 6.006a20.059 20.059 0 0 1-13.612-.28c-7.7-2.769-8.963-7.884-8.963-7.884", fill: "#b53c24" }),
83
+ React__namespace.createElement("path", { "data-name": "Path 2680", d: "m51.223 45.531.892.469s3.754-.985 4.645-.7 4.693 2.347 4.693 2.347.188.328 2.393-.47a27.6 27.6 0 0 1 14.792.517c7.283 2.581 14.3 9.807 14.3 9.807a14.775 14.775 0 0 0 0-11.309c-2.487-6.335-5.678-8.681-5.678-8.681a161.977 161.977 0 0 0-22.753-3.52 10.533 10.533 0 0 0-4.433 2.956c-1 1.127-1.064 2.863-2.988 4.318a4 4 0 0 1-4.036.375 7.464 7.464 0 0 0-4.692 3.379 5.476 5.476 0 0 1 2.862.516", fill: "#f77148" }),
84
+ React__namespace.createElement("path", { "data-name": "Path 2681", d: "M79.05 43.7c-1.642 0-1.924.047-1.736 1.126a11.585 11.585 0 0 0 1.37 2.881C85.951 50.3 92.94 57.5 92.94 57.5a14.775 14.775 0 0 0 0-11.309c-2.487-6.335-5.678-8.681-5.678-8.681-2.12 7.5-6.57 6.194-8.212 6.194", fill: "#f4a26d" }),
85
+ React__namespace.createElement("g", { "data-name": "Group 1963", opacity: 0.5, style: {
86
+ mixBlendMode: "overlay",
87
+ isolation: "isolate",
88
+ } },
89
+ React__namespace.createElement("g", { "data-name": "Group 1962" },
90
+ React__namespace.createElement("g", { "data-name": "Group 1961", clipPath: "url(#flamingo_svg__c)" },
91
+ React__namespace.createElement("path", { "data-name": "Path 2682", d: "M60.6 37.647c1.029-1.642 4.884-3.144 4.884-3.144s5.256.845 7.884 1.361 13.762 2.085 13.762 2.085c2.543 1.71 4.637 7.253 5.763 11.1.887 3.032-.087 6.519-.541 7.867.372.359.588.58.588.58a14.775 14.775 0 0 0 0-11.309c-2.487-6.335-5.678-8.682-5.678-8.682a162.056 162.056 0 0 0-22.753-3.519 10.54 10.54 0 0 0-4.433 2.956c-1 1.126-1.064 2.863-2.988 4.317a4 4 0 0 1-4.035.376 7.464 7.464 0 0 0-4.693 3.378 17.6 17.6 0 0 1 5.068-2.862c5.866 1.032 6.147-2.863 7.176-4.505", fill: "#fff" })))),
92
+ React__namespace.createElement("g", { "data-name": "Group 1966", opacity: 0.3 },
93
+ React__namespace.createElement("g", { "data-name": "Group 1965" },
94
+ React__namespace.createElement("g", { "data-name": "Group 1964", clipPath: "url(#flamingo_svg__d)" },
95
+ React__namespace.createElement("path", { "data-name": "Path 2683", d: "M57.323 52.9a20.9 20.9 0 0 0 12.252.71c-.694.159-6.313 1.252-12.956-3.478l.329-.281s6.8 3.332 11.5 2.252a25.25 25.25 0 0 0-3.936-3.332 15.967 15.967 0 0 1 1.763-.248 18.965 18.965 0 0 0-2.426-1.347 27.6 27.6 0 0 1 14.791.515c5.668 2.009 11.16 6.822 13.326 8.859a14.513 14.513 0 0 0-6.956-9.564c-6.288-3.613-10.183-3.425-12.53-3.332s-10.371 2.674-10.371 2.674-5.114-2.392-5.678-2.487a13.66 13.66 0 0 0-5.208 1.691 6.74 6.74 0 0 0-2.863-.517s1.267 5.115 8.963 7.883", fill: "#1d1d1b" })))),
96
+ React__namespace.createElement("path", { "data-name": "Path 2684", d: "M51.624 45.742a10.607 10.607 0 0 0 5.324 4.106C60.6 51.275 64.6 52.9 68.445 52.1c0 0-4.033-3.787-5.888-4.522a43.094 43.094 0 0 1-5.609-3.315s-5.2.469-5.324 1.478", fill: "#5c1b17" }),
97
+ React__namespace.createElement("path", { "data-name": "Path 2685", d: "M60.034 48.91a15.577 15.577 0 0 0-3.744-3.989 8.3 8.3 0 0 0-2.113-.266c-1.264.244-2.5.6-2.553 1.087a10.606 10.606 0 0 0 5.323 4.107c1.3.508 2.65 1.038 4.017 1.478a12.132 12.132 0 0 0-.93-2.417", fill: "#420d13" }))),
98
+ React__namespace.createElement("path", { "data-name": "Rectangle 1724", fill: "none", d: "M0 0h119.929v119.929H0z" }))); };
99
+
100
+ module.exports = SvgFlamingo;
101
+ //# sourceMappingURL=Flamingo.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Flamingo.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgForYou: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgForYou;
@@ -0,0 +1,61 @@
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 SvgForYou = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120.049 120" }, props),
29
+ React__namespace.createElement("defs", null,
30
+ React__namespace.createElement("style", null, ".for-you_svg__b,.for-you_svg__j{opacity:.3}.for-you_svg__c{fill:#fe8f01}.for-you_svg__d{fill:#fb7d00}.for-you_svg__e,.for-you_svg__j{fill:#061b2b}.for-you_svg__e{opacity:.5}.for-you_svg__f{fill:#ff7701}.for-you_svg__g{fill:#ff8b00}.for-you_svg__h{fill:#ffd800}.for-you_svg__i{fill:#ffffc1}")),
31
+ React__namespace.createElement("path", { style: {
32
+ fill: "none",
33
+ }, d: "M0 0h120v120H0z" }),
34
+ React__namespace.createElement("path", { className: "for-you_svg__b", d: "m75.777 71.268 10.614-12.941-.368-9.5-17.5-3.642-9.354-16-9.855 16-17.5 3.5v9.936l10.855 12.316-1.215 10.668-.02 9.706 17.22-7.589 18.388 7.88-.1-10Z" }),
35
+ React__namespace.createElement("path", { className: "for-you_svg__b", d: "m35.946 68.879 5.781-10.444-1.481-6.619-12.742-.3-8.621-10.018-4.855 12.489-10.457 3.742-.089 7.934 9.2 7.243.52 7.64 1.235 6.812 11.1-7.539 13.914 3.163-1.355-7Z" }),
36
+ React__namespace.createElement("path", { className: "for-you_svg__c", d: "m-.004 49.402 1.356 7.391 9.947 7.832-.435-6.564Z" }),
37
+ React__namespace.createElement("path", { className: "for-you_svg__d", d: "m40.34 42.113 1.57 7.018-6.358 11.486-2.069-7.088Z" }),
38
+ React__namespace.createElement("path", { className: "for-you_svg__e", d: "m40.34 42.113 1.57 7.018-6.358 11.486-2.069-7.088Z" }),
39
+ React__namespace.createElement("path", { className: "for-you_svg__f", d: "m23.932 64.725.815 7.079 14.754 3.354-1.436-7.424Z" }),
40
+ React__namespace.createElement("path", { className: "for-you_svg__g", d: "m11.663 72.576 1.309 7.223 11.775-7.995-.815-7.079Z" }),
41
+ React__namespace.createElement("path", { className: "for-you_svg__h", d: "m17.687 31.168 9.141 10.623 13.512.322-6.435 11.919 4.16 13.7-14.133-3.009-12.269 7.851-.973-14.286L0 49.4l12.538-4.99Z" }),
42
+ React__namespace.createElement("path", { className: "for-you_svg__i", d: "m28.491 43.508 10.954.262.894-1.657-13.323-.318ZM12.347 59.685l-1.639-1.363.956 14.255 1.482-.948ZM13.668 45.63l5.128-13.171-1.109-1.293-5.149 13.244L0 49.4l1.4 1.112Z" }),
43
+ React__namespace.createElement("path", { className: "for-you_svg__j", d: "m34.949 50.684-3.912 1.691 3.534 3.836-.644-2.158 1.59-2.877Z" }),
44
+ React__namespace.createElement("path", { className: "for-you_svg__b", d: "m105.374 75.393 9.34-7.435-.083-7.4-10.406-4.44-4.128-12.555-9.268 9.678-12.724-.18-1.488 6.929 5.725 10.214-2.445 7.257-1.467 6.765 13.145-2.713 11.642 8.249 1.429-6.986Z" }),
45
+ React__namespace.createElement("path", { className: "for-you_svg__c", d: "m79.994 43.343-1.578 7.347 6.19 11.044 2.111-6.231Z" }),
46
+ React__namespace.createElement("path", { className: "for-you_svg__e", d: "m79.994 43.343-1.578 7.347 5.371 9.61 1.893-6.115Z" }),
47
+ React__namespace.createElement("path", { className: "for-you_svg__d", d: "m120.049 52.057-1.237 7.084-10.271 8.176.8-7.34Z" }),
48
+ React__namespace.createElement("path", { className: "for-you_svg__f", d: "m96.234 66.663-1.957 6.852 12.345 8.748 1.516-7.408Z" }),
49
+ React__namespace.createElement("path", { className: "for-you_svg__g", d: "m81.894 69.217-1.556 7.173 13.939-2.876 1.957-6.852Z" }),
50
+ React__namespace.createElement("path", { className: "for-you_svg__h", d: "m103.313 33.271 4.377 13.314 12.359 5.471-10.508 8.547-1.4 14.25-11.9-8.191-14.34 2.555 4.571-13.57L80 43.347l13.493.191Z" }),
51
+ React__namespace.createElement("path", { className: "for-you_svg__i", d: "m108.569 48.809 10.019 4.436 1.46-1.188-12.186-5.395ZM87.461 57.571l-.992-1.887-4.575 13.535 1.732-.309ZM94.062 45.096l9.78-10.2-.529-1.619-9.827 10.263-13.493-.191.869 1.564Z" }),
52
+ React__namespace.createElement("path", { className: "for-you_svg__j", d: "m84.392 49.322 3.862 1.666-2.575 3.19-2.448-4.629Z" }),
53
+ React__namespace.createElement("path", { className: "for-you_svg__c", d: "M30.175 36.752v10.536l11.737 13.316 1.06-9.162Z" }),
54
+ React__namespace.createElement("path", { className: "for-you_svg__d", d: "m87.648 36.902.39 10.075-11.673 14.231-1.06-10.3Z" }),
55
+ React__namespace.createElement("path", { className: "for-you_svg__f", d: "m59.303 63.935-.666 9.969 19.5 8.356-.1-10.6Z" }),
56
+ React__namespace.createElement("path", { className: "for-you_svg__g", d: "m40.398 71.659-.021 10.292 18.26-8.047.666-9.969Z" }),
57
+ React__namespace.createElement("path", { className: "for-you_svg__h", d: "m59.176 16.079 9.92 16.962 18.552 3.862-11.888 14.81 2.272 19.947-18.729-7.724-18.905 7.724 2.272-19.947-12.494-14.961 18.552-3.71Z" }),
58
+ React__namespace.createElement("path", { className: "for-you_svg__i", d: "m70.951 35.83 15.04 3.131 1.652-2.058-18.292-3.808ZM44.6 54.054l-1.916-2.294-2.287 19.9 2.283-.933ZM49.976 35.01l10.4-16.867-1.2-2.063-10.45 16.962-18.552 3.711 1.652 1.888Z" }))); };
59
+
60
+ module.exports = SvgForYou;
61
+ //# sourceMappingURL=ForYou.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ForYou.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgGames: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgGames;
@@ -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 SvgGames = 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, ".games_svg__c{fill:#222c3f}.games_svg__d{fill:#1d1e28}.games_svg__e{fill:#4c6284}.games_svg__f{fill:#364760}.games_svg__g{fill:#00c1bc}.games_svg__h{fill:#0ff}.games_svg__i{fill:#94333a}.games_svg__j{fill:#b24352}")),
31
+ React__namespace.createElement("path", { d: "M154.942-180.641s-11.546 2.309-23.349 18.73-19.628 37.076-11.931 42.593 21.168-3.592 25.273-11.033a9.87 9.87 0 0 0 7.954 6.414c6.158.77 12.572-2.95 12.572-2.95l5.389 2.18s-1.54 12.7 11.161 13.471l5.26.256s1.924-.256 1.539 3.977-.77 23.606 11.674 26.685 18.6-17.191 21.681-26.813 18.474-40.026-1.154-48.75c0 0-6.286-2.822-11.675-2.181s-7.569 3.079-10.648 2.053-17.19-6.8-17.19-6.8a4.408 4.408 0 0 1-2.823-3.592c-.385-2.822-1.026-5.131-4.618-7.44s-12.829-7.826-19.115-6.8Z", transform: "translate(-114.599 189.767)", style: {
32
+ opacity: 0.3,
33
+ } }),
34
+ React__namespace.createElement("path", { d: "M154.942-180.641s-11.546 2.309-23.349 18.73-19.628 37.076-11.931 42.593 21.168-3.592 25.273-11.033a9.87 9.87 0 0 0 7.954 6.414c6.158.77 12.572-2.95 12.572-2.95l5.389 2.18s-1.54 12.7 11.161 13.471l5.26.256s1.924-.256 1.539 3.977-.77 23.606 11.674 26.685 18.6-17.191 21.681-26.813 18.474-40.026-1.154-48.75c0 0-6.286-2.822-11.675-2.181s-7.569 3.079-10.648 2.053-17.19-6.8-17.19-6.8a4.408 4.408 0 0 1-2.823-3.592c-.385-2.822-1.026-5.131-4.618-7.44s-12.829-7.826-19.115-6.8Z", transform: "translate(-114.599 184.767)", style: {
35
+ fill: "#333e59",
36
+ } }),
37
+ React__namespace.createElement("path", { className: "games_svg__c", d: "M78.701 65.004a12.687 12.687 0 0 1-4.109 2.112c-6.158 1.925-12.444 0-15.266-2.822s-3.849-8.595-3.849-8.595-4.1-1.925-5.773-2.566-2.053-.128-2.053-.128a20.849 20.849 0 0 1-9.75 1.026c-5.9-.642-6.286-2.694-8.724-4.875s-2.565-.642-3.848 2.694-6.8 9.622-10.52 12.572a15.573 15.573 0 0 1-5.123 2.672c7.614.643 17.279-6.576 20.646-12.678a9.87 9.87 0 0 0 7.954 6.414c6.158.77 12.572-2.95 12.572-2.95l5.389 2.18s-1.54 12.7 11.161 13.471l5.26.256s1.924-.256 1.539 3.977a47.232 47.232 0 0 0 .559 11.556 1.708 1.708 0 0 0 .467-1.421c-.256-2.052 1.155-8.082.9-8.98a23.113 23.113 0 0 1 .129-7.826 48.835 48.835 0 0 1 2.954-5.835c.309-.548.047-.691-.515-.254ZM66.501 21.787a4.4 4.4 0 0 1-2.423-3.421c-.385-2.822-1.026-5.131-4.618-7.44a9.952 9.952 0 0 1 1.668 4.361c.123 2.13-.227 4.138 5.373 6.5Z" }),
38
+ React__namespace.createElement("path", { className: "games_svg__d", d: "M23.591 21.75s-.216 13.157 15.317 12.765c16.878-.425 15.034-13.9 15.034-13.9-.283-4.4-4.255-11.488-15.176-11.488-12.907.001-15.175 9.503-15.175 12.623Z" }),
39
+ React__namespace.createElement("path", { className: "games_svg__e", d: "M22.801 20.175s-.215 13.157 15.318 12.765c16.878-.425 15.034-13.9 15.034-13.9-.284-4.4-4.255-11.489-15.176-11.489-12.905.001-15.176 9.504-15.176 12.624Z" }),
40
+ React__namespace.createElement("path", { className: "games_svg__d", d: "M78.328 45.692s-.233 14.229 16.567 13.806c18.254-.461 16.26-15.034 16.26-15.034-.307-4.755-4.6-12.425-16.414-12.425-13.96 0-16.413 10.278-16.413 13.653Z" }),
41
+ React__namespace.createElement("path", { className: "games_svg__e", d: "M77.54 44.117s-.233 14.229 16.567 13.8c18.255-.46 16.26-15.033 16.26-15.033-.306-4.755-4.6-12.425-16.413-12.425-13.96.008-16.414 10.283-16.414 13.658Z" }),
42
+ React__namespace.createElement("path", { className: "games_svg__d", d: "M29.173 43.455s-.162 9.88 11.5 9.586c12.676-.32 11.291-10.438 11.291-10.438-.213-3.3-3.2-8.628-11.4-8.628-9.687 0-11.391 7.136-11.391 9.48Z" }),
43
+ React__namespace.createElement("path", { className: "games_svg__e", d: "M28.385 42.667s-.161 9.88 11.5 9.586c12.675-.319 11.29-10.438 11.29-10.438-.213-3.3-3.2-8.628-11.4-8.628-9.686 0-11.39 7.137-11.39 9.48Z" }),
44
+ React__namespace.createElement("path", { className: "games_svg__f", d: "M29.627 20.993s-.13 7.933 9.237 7.7c10.177-.256 9.066-8.381 9.066-8.381-.172-2.652-2.566-6.928-9.152-6.928-7.783-.003-9.151 5.727-9.151 7.609Z" }),
45
+ React__namespace.createElement("path", { className: "games_svg__g", d: "M28.839 20.205s-.13 7.934 9.237 7.7c10.178-.257 9.066-8.382 9.066-8.382-.171-2.651-2.566-6.928-9.151-6.928-7.784-.002-9.152 5.729-9.152 7.61Z" }),
46
+ React__namespace.createElement("path", { className: "games_svg__h", d: "M28.839 18.63s-.13 7.934 9.237 7.7c10.178-.256 9.066-8.381 9.066-8.381-.171-2.651-2.566-6.928-9.151-6.928-7.784-.003-9.152 5.727-9.152 7.609Z" }),
47
+ React__namespace.createElement("path", { className: "games_svg__f", d: "M83.851 41.717s-.053 3.234 3.766 3.138c4.149-.1 3.7-3.417 3.7-3.417-.07-1.081-1.046-2.824-3.731-2.824-3.178 0-3.735 2.336-3.735 3.103ZM95.401 39.237s-.053 3.234 3.766 3.138c4.149-.1 3.7-3.417 3.7-3.417-.07-1.081-1.046-2.825-3.731-2.825-3.182 0-3.735 2.334-3.735 3.104ZM86.16 51.039s-.053 3.235 3.766 3.139c4.149-.1 3.7-3.418 3.7-3.418-.07-1.081-1.046-2.824-3.731-2.824-3.177 0-3.735 2.336-3.735 3.103ZM97.701 48.559s-.053 3.235 3.766 3.138c4.149-.1 3.7-3.417 3.7-3.417-.07-1.081-1.046-2.824-3.731-2.824-3.172 0-3.735 2.336-3.735 3.103Z" }),
48
+ React__namespace.createElement("path", { className: "games_svg__g", d: "M83.063 40.929s-.053 3.235 3.766 3.139c4.149-.1 3.7-3.418 3.7-3.418-.07-1.08-1.046-2.824-3.731-2.824-3.177 0-3.735 2.341-3.735 3.103Z" }),
49
+ React__namespace.createElement("path", { className: "games_svg__i", d: "M94.609 38.449s-.053 3.235 3.766 3.138c4.149-.1 3.7-3.417 3.7-3.417-.07-1.081-1.046-2.824-3.731-2.824-3.177 0-3.735 2.336-3.735 3.103ZM85.372 50.252s-.053 3.234 3.766 3.138c4.15-.1 3.7-3.417 3.7-3.417-.069-1.081-1.046-2.825-3.731-2.825-3.177 0-3.735 2.337-3.735 3.104Z" }),
50
+ React__namespace.createElement("path", { className: "games_svg__g", d: "M96.918 47.772s-.053 3.234 3.766 3.138c4.15-.105 3.7-3.417 3.7-3.417-.069-1.081-1.046-2.825-3.731-2.825-3.177-.001-3.735 2.336-3.735 3.104Z" }),
51
+ React__namespace.createElement("path", { className: "games_svg__h", d: "M83.063 39.354s-.053 3.235 3.766 3.138c4.149-.1 3.7-3.417 3.7-3.417-.07-1.081-1.046-2.824-3.731-2.824-3.177 0-3.735 2.336-3.735 3.103Z" }),
52
+ React__namespace.createElement("path", { className: "games_svg__j", d: "M94.609 36.874s-.053 3.234 3.766 3.138c4.149-.1 3.7-3.417 3.7-3.417-.07-1.081-1.046-2.824-3.731-2.824-3.177-.004-3.735 2.336-3.735 3.103ZM85.372 48.677s-.053 3.234 3.766 3.138c4.15-.105 3.7-3.417 3.7-3.417-.069-1.081-1.046-2.825-3.731-2.825-3.177 0-3.735 2.337-3.735 3.104Z" }),
53
+ React__namespace.createElement("path", { className: "games_svg__h", d: "M96.918 46.196s-.053 3.235 3.766 3.139c4.15-.1 3.7-3.418 3.7-3.418-.069-1.08-1.046-2.824-3.731-2.824-3.177 0-3.735 2.336-3.735 3.103Z" }),
54
+ React__namespace.createElement("path", { className: "games_svg__f", d: "M33.561 45.013s-.1 5.317 6.764 5.159c7.452-.172 6.638-5.617 6.638-5.617-.126-1.777-1.879-4.643-6.7-4.643-5.7 0-6.702 3.84-6.702 5.101Z" }),
55
+ React__namespace.createElement("path", { className: "games_svg__i", d: "M32.774 43.438s-.1 5.317 6.763 5.158c7.452-.171 6.638-5.617 6.638-5.617-.125-1.776-1.879-4.642-6.7-4.642-5.7 0-6.701 3.84-6.701 5.101Z" }),
56
+ React__namespace.createElement("path", { className: "games_svg__i", d: "M32.774 37.653h3.164v6.158h-3.164zM43.037 37.653h3.164v6.158h-3.164z" }),
57
+ React__namespace.createElement("path", { className: "games_svg__j", d: "M32.774 38.05s-.1 5.317 6.763 5.158c7.452-.172 6.638-5.617 6.638-5.617-.125-1.777-1.879-4.642-6.7-4.642-5.7 0-6.701 3.84-6.701 5.101Z" }),
58
+ React__namespace.createElement("path", { className: "games_svg__d", d: "M58.321 56.441s-.162 10.23 11.507 9.925c12.68-.33 11.295-10.807 11.295-10.807-.213-3.419-3.2-8.933-11.4-8.933-9.698 0-11.402 7.389-11.402 9.815Z" }),
59
+ React__namespace.createElement("path", { className: "games_svg__e", d: "M57.534 55.654s-.162 10.229 11.507 9.925c12.679-.331 11.294-10.812 11.294-10.812-.213-3.418-3.2-8.932-11.4-8.932-9.697.004-11.401 7.393-11.401 9.819Z" }),
60
+ React__namespace.createElement("path", { className: "games_svg__f", d: "M62.711 57.999s-.1 5.5 6.765 5.341c7.455-.178 6.641-5.816 6.641-5.816-.126-1.839-1.88-4.806-6.7-4.806-5.704 0-6.706 3.976-6.706 5.281Z" }),
61
+ React__namespace.createElement("path", { className: "games_svg__i", d: "M61.923 56.424s-.1 5.505 6.766 5.341c7.455-.178 6.64-5.816 6.64-5.816-.125-1.839-1.879-4.807-6.7-4.807-5.704 0-6.706 3.976-6.706 5.282Z" }),
62
+ React__namespace.createElement("path", { className: "games_svg__i", d: "M61.923 50.434h3.166v6.376h-3.166zM72.19 50.434h3.166v6.376H72.19z" }),
63
+ React__namespace.createElement("path", { className: "games_svg__j", d: "M61.923 50.845s-.1 5.5 6.766 5.341c7.455-.178 6.64-5.815 6.64-5.815-.125-1.84-1.879-4.807-6.7-4.807-5.704.003-6.706 3.976-6.706 5.281Z" }),
64
+ React__namespace.createElement("path", { d: "M124.034-149.068a3.729 3.729 0 0 0-1.055 1.584q-1.251 2.565-2.357 5.2a61.534 61.534 0 0 0-2.4 6.644 19.817 19.817 0 0 0-1 6.1c.233 6.675 5.613 1.973 6.364-2.12a18.377 18.377 0 0 0 .152-4.026c-.085-2.187-.276-4.374-.181-6.564a15.968 15.968 0 0 1 .408-3.132 23.976 23.976 0 0 0 .93-3.1c.032-.31-.04-.715-.346-.771a.584.584 0 0 0-.4.108c-.032.02-.074.045-.115.077Z", transform: "translate(-114.599 184.767)", style: {
65
+ fill: "#3e4c66",
66
+ } }),
67
+ React__namespace.createElement("path", { className: "games_svg__c", d: "M107.566 77.636c1.41-4.4 5.4-13.161 7.427-22.2-.614 1.027-1.081 2.167-1.685 3.183a49.754 49.754 0 0 1-3.721 5.123 34.8 34.8 0 0 0-4.023 5.976c-2.031 4.124-2.432 8.832-2.8 13.415l-.748 9.337a112.545 112.545 0 0 0 5.55-14.834Z" }),
68
+ React__namespace.createElement("path", { style: {
69
+ fill: "none",
70
+ }, d: "M0 0h120v120H0z" }))); };
71
+
72
+ module.exports = SvgGames;
73
+ //# sourceMappingURL=Games.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Games.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgGift: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgGift;
@@ -0,0 +1,54 @@
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 SvgGift = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ "data-name": "Icon - Present", 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(-351.899 2664.476)" },
31
+ React__namespace.createElement("path", { "data-name": "Path 1349", d: "M459-2622.085a6.787 6.787 0 0 0-2.086-4.927l-.062-.052a4.196 4.196 0 0 0-.393-.3c-.068-.047-.143-.089-.214-.135-.107-.067-.21-.135-.325-.2a5.756 5.756 0 0 0-.636-.3c-.692-.272-1.9-.758-3.477-1.394l-1.1-.445-2.129-.864c2.358-1.726 2.913-3.782 2.589-6.754-.506-4.644-5.4-12.242-9.372-13.762s-10.384 2.7-12.79 4.813c-1.018.894-3.12 3.12-5.306 5.536l-4.549-1.866a13.633 13.633 0 0 0-4.5-.693 10.137 10.137 0 0 0-3.6.693c-.85.343-3.339 1.208-6.712 2.351l-.736.249-1.545.522-1.178.4c-2.665-3-5.539-6.092-6.787-7.188-2.407-2.111-8.822-6.332-12.79-4.812s-8.865 9.118-9.371 13.762c-.337 3.089.3 5.1 2.9 6.868-3.527 1.159-5.83 1.913-5.83 1.913h-.027l-.042.009h-.017l-.084.02h-.005l-.115.032-.03.009-.111.035-.042.014c-.045.015-.091.033-.141.052l-.025.009a5.7 5.7 0 0 0-.186.076l-.032.014c-.054.024-.11.05-.167.078l-.056.028c-.056.029-.114.059-.173.092l-.044.023a5.69 5.69 0 0 0-.228.136l-.024.017c-.068.043-.136.09-.2.139l-.062.044a5.714 5.714 0 0 0-.185.142l-.056.045a5.65 5.65 0 0 0-.239.211c-.076.072-.152.15-.227.23-.021.021-.04.045-.061.067l-.174.2-.06.073c-.074.094-.146.19-.217.293a7.491 7.491 0 0 0-1.163 4.309v2.25c.006 1.755.025 3.509.048 5.058v.023l.005.386v.041c.012.8.025 1.533.037 2.174v1.437l.014.644v.033c.006.289.011.451.011.451a4.745 4.745 0 0 0 .275 1.9 6.622 6.622 0 0 0 1.2 2.127 9.192 9.192 0 0 0 2.238 1.913l1.182 34.247s-.678 3.835 5.741 6.867c2.632 1.244 7.44 3.606 12.2 5.961l3.676 1.864v-.041c5.391 2.678 9.907 4.937 9.907 4.937s5.771 3.764 14.333.47q.276-.1.565-.223c2.216-.94 7.168-2.988 12.6-5.223v.08l12.327-5.128v-.014c4.874-2 8.471-3.469 8.471-3.469s4.053-.9 4.391-10.019c.261-7.055.724-23.271.921-30.251a5.553 5.553 0 0 0 2.3-2.158 5.106 5.106 0 0 0 1.557-3.839s.15-5.126.171-10.244v-1.45c-.01-.04-.023-.08-.036-.12Z", opacity: 0.3 }),
32
+ React__namespace.createElement("path", { "data-name": "Path 1350", d: "M401.358-2556.612s6.025 3.936 14.9.247-8.707-7.677-8.707-7.677Z", fill: "#d32424" }),
33
+ React__namespace.createElement("path", { "data-name": "Path 1351", d: "m408.15-2598.068.507 38.866s1.452 5.447 7.6 2.835 33.394-13.755 33.394-13.755 4.053-.9 4.391-10.019 1.013-33.546 1.013-33.546Z", fill: "#e82d2d" }),
34
+ React__namespace.createElement("path", { "data-name": "Path 1352", d: "m368.661-2610.446 1.182 34.247s-.678 3.834 5.741 6.867 25.779 12.72 25.779 12.72 7.273 1.711 7.295-3.873-.507-37.582-.507-37.582Z", fill: "#cc1b1b" }),
35
+ React__namespace.createElement("path", { "data-name": "Path 1353", d: "M364.946-2616.385s-.506 4.136 5.234 6.754c6.739 3.072 33.1 14.69 33.1 14.69s3.715 2.7 10.469 0 41.031-15.366 41.031-15.366 3.378-1.182 3.546-6.078.676-12.327.676-12.327.163-4.391-3.716-5.91c-4.924-1.93-36.135-14.735-36.135-14.735a12.563 12.563 0 0 0-8.1 0c-3.884 1.564-42.045 14.059-42.045 14.059s-4.177.676-4.2 6.417.14 12.496.14 12.496Z", fill: "#dc3131" }),
36
+ React__namespace.createElement("path", { "data-name": "Path 1354", d: "M457.306-2633.262a5.459 5.459 0 0 0-2.023-1.362c-4.924-1.93-36.134-14.735-36.134-14.735a12.567 12.567 0 0 0-8.105 0c-3.884 1.564-42.045 14.059-42.045 14.059a5 5 0 0 0-3.036 2.107c.345 1.414 1.467 3.611 5 5.222 6.613 3.015 32.476 14.415 32.476 14.415s3.645 2.651 10.273 0 40.264-15.078 40.264-15.078a5.833 5.833 0 0 0 3.33-4.628Z", fill: "#ff5962" }),
37
+ React__namespace.createElement("path", { "data-name": "Path 1355", d: "M408.116-2606.428a7.278 7.278 0 0 0-4.112-6.806s-28.694-12.781-34.458-15.49c-3.527-1.659-4.514-.5-4.749.643v1.449c.018 5.117.146 10.244.146 10.244s-.506 4.136 5.234 6.754c6.739 3.072 33.1 14.69 33.1 14.69a4.682 4.682 0 0 0 .729.4c.2.092.383.165.564.231l.139.048c2.905.974 3.409-1.41 3.409-1.41s.112-5.516-.002-10.753Z", fill: "#d82525" }),
38
+ React__namespace.createElement("path", { "data-name": "Path 1356", d: "M408.225-2606.428a7.452 7.452 0 0 1 4.819-6.806s33.633-12.781 40.388-15.49c4.133-1.659 5.289-.5 5.567.643v1.449c-.021 5.117-.171 10.244-.171 10.244s.594 4.136-6.136 6.754c-7.9 3.072-38.791 14.69-38.791 14.69a5.81 5.81 0 0 1-.854.4 9.102 9.102 0 0 1-.661.231l-.163.048c-3.4.975-4-1.41-4-1.41s-.13-5.516.002-10.753Z", fill: "#ed3a3a" }),
39
+ React__namespace.createElement("path", { "data-name": "Path 1357", d: "m441.185-2566.637 1.181-39.791.676-16.882s.675-2.027-5.4-3.884-20.432-7.429-20.432-7.429l-8.548 1.519v5.741l19.186 6.923s1.857.844 1.857 3.883-.844 55.047-.844 55.047Z", fill: "#ffdf57" }),
40
+ React__namespace.createElement("path", { "data-name": "Path 1358", d: "M437.638-2627.194c-6.079-1.857-20.432-7.429-20.432-7.429l-8.548 1.519v5.741l19.186 6.923a3.034 3.034 0 0 1 1.133 1.092c4.6-1.719 9.489-3.538 13.718-5.108-.547-.749-1.877-1.767-5.057-2.738Z", fill: "#ffe780" }),
41
+ React__namespace.createElement("path", { "data-name": "Path 1359", d: "m379.13-2567.76-1.182-38.671-.675-16.882s-.676-2.027 5.4-3.884 20.431-7.429 20.431-7.429l8.549 1.519v5.741l-19.187 6.923s-1.857.844-1.857 3.883.844 55.047.844 55.047Z", fill: "#ffdf57" }),
42
+ React__namespace.createElement("path", { "data-name": "Path 1360", d: "M382.676-2627.194a11.4 11.4 0 0 0-4.728 2.357c3.988 1.775 8.812 3.913 13.186 5.848a3.216 3.216 0 0 1 1.335-1.451l19.187-6.923v-5.741l-8.549-1.519s-14.353 5.571-20.431 7.429Z", fill: "#ffe780" }),
43
+ React__namespace.createElement("path", { "data-name": "Path 1361", d: "m396.159-2631.976 10.269 2.422h11.595l6.642-2.143-5.207-2.06h-16.549l-5.261 1.045Z", fill: "#ffdf57" }),
44
+ React__namespace.createElement("g", { "data-name": "Group 562", transform: "translate(371.841 -2658.164)" },
45
+ React__namespace.createElement("path", { "data-name": "Path 1362", d: "M31.068 25.314s-15.167.875-22.542-1.773c-7.25-2.6-8.95-4.812-8.442-9.456S5.484 1.843 9.455.324s10.384 2.7 12.79 4.813a165.04 165.04 0 0 1 12.2 13.593c1.35 1.941.169 5.571-3.377 6.584Z", fill: "#ffdf57" }),
46
+ React__namespace.createElement("path", { "data-name": "Path 1363", d: "M31.068 21.679s-19.011-10.136-28.2-5.995c-5.994 2.7 24.906 11.482 28.03 7.852Z", fill: "#ffb449" }),
47
+ React__namespace.createElement("path", { "data-name": "Path 1364", d: "M48.341 25.314s14.484.875 22.542-1.773c7.318-2.4 8.95-4.812 8.442-9.456S73.925 1.843 69.953.324s-10.384 2.7-12.79 4.813a165.041 165.041 0 0 0-12.2 13.593c-1.35 1.941-.168 5.571 3.378 6.584Z", fill: "#ffdf57" }),
48
+ React__namespace.createElement("path", { "data-name": "Path 1365", d: "M48.34 21.679s19.011-10.136 28.2-5.995c5.994 2.7-24.906 11.482-28.03 7.852Z", fill: "#ffb449" }),
49
+ React__namespace.createElement("ellipse", { "data-name": "Ellipse 130", cx: 9.245, cy: 5.756, rx: 9.245, ry: 5.756, transform: "translate(30.392 14.675)", fill: "#ffb449" })),
50
+ React__namespace.createElement("rect", { "data-name": "Rectangle 316", width: 19.207, height: 13.209, rx: 4.299, transform: "translate(402.233 -2643.489)", fill: "#fdb349" }),
51
+ React__namespace.createElement("rect", { "data-name": "Rectangle 317", width: 16.196, height: 3.488, rx: 1.744, transform: "translate(403.739 -2643.165)", fill: "#ffbc64" })))); };
52
+
53
+ module.exports = SvgGift;
54
+ //# sourceMappingURL=Gift.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Gift.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from "react";
2
+ declare const SvgGiraffe: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgGiraffe;