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.
- package/dist/assets/icons/bear.svg +177 -0
- package/dist/assets/icons/bear.svg.js +606 -0
- package/dist/assets/icons/bear.svg.js.map +1 -0
- package/dist/assets/icons/flamingo.svg +85 -0
- package/dist/assets/icons/flamingo.svg.js +287 -0
- package/dist/assets/icons/flamingo.svg.js.map +1 -0
- package/dist/assets/icons/giraffe.svg +259 -0
- package/dist/assets/icons/giraffe.svg.js +756 -0
- package/dist/assets/icons/giraffe.svg.js.map +1 -0
- package/dist/assets/icons/penguin.svg +231 -0
- package/dist/assets/icons/penguin.svg.js +718 -0
- package/dist/assets/icons/penguin.svg.js.map +1 -0
- package/dist/assets/icons/sealion.svg +156 -0
- package/dist/assets/icons/sealion.svg.js +649 -0
- package/dist/assets/icons/sealion.svg.js.map +1 -0
- package/dist/components/DrawingTool/DrawingTool.d.ts +29 -0
- package/dist/components/DrawingTool/DrawingTool.js +277 -0
- package/dist/components/DrawingTool/DrawingTool.js.map +1 -0
- package/dist/components/DrawingTool/DrawingTool.stories.d.ts +6 -0
- package/dist/components/DrawingTool/DrawingTool.styles.d.ts +41 -0
- package/dist/components/DrawingTool/DrawingTool.styles.js +54 -0
- package/dist/components/DrawingTool/DrawingTool.styles.js.map +1 -0
- package/dist/components/DrawingTool/DrawingToolProvider.d.ts +56 -0
- package/dist/components/DrawingTool/DrawingToolProvider.js +182 -0
- package/dist/components/DrawingTool/DrawingToolProvider.js.map +1 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.d.ts +21 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.js +89 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.js.map +1 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.styles.d.ts +9 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.styles.js +18 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.styles.js.map +1 -0
- package/dist/components/DrawingTool/components/ColourToolbar/index.d.ts +2 -0
- package/dist/components/DrawingTool/components/ColourToolbar/index.js +8 -0
- package/dist/components/DrawingTool/components/ColourToolbar/index.js.map +1 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.d.ts +9 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.js +88 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.js.map +1 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.styles.d.ts +4 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.styles.js +22 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.styles.js.map +1 -0
- package/dist/components/DrawingTool/components/FileInput/index.d.ts +2 -0
- package/dist/components/DrawingTool/components/FileInput/index.js +8 -0
- package/dist/components/DrawingTool/components/FileInput/index.js.map +1 -0
- package/dist/components/DrawingTool/components/Header/Header.d.ts +9 -0
- package/dist/components/DrawingTool/components/Header/Header.js +38 -0
- package/dist/components/DrawingTool/components/Header/Header.js.map +1 -0
- package/dist/components/DrawingTool/components/Header/index.d.ts +2 -0
- package/dist/components/DrawingTool/components/Header/index.js +8 -0
- package/dist/components/DrawingTool/components/Header/index.js.map +1 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.d.ts +8 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.js +31 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.js.map +1 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.styles.d.ts +9 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.styles.js +18 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.styles.js.map +1 -0
- package/dist/components/DrawingTool/components/OpacityToggle/index.d.ts +2 -0
- package/dist/components/DrawingTool/components/OpacityToggle/index.js +8 -0
- package/dist/components/DrawingTool/components/OpacityToggle/index.js.map +1 -0
- package/dist/components/DrawingTool/components/Placeable/index.d.ts +9 -0
- package/dist/components/DrawingTool/components/Placeable/index.js +22 -0
- package/dist/components/DrawingTool/components/Placeable/index.js.map +1 -0
- package/dist/components/DrawingTool/index.d.ts +2 -0
- package/dist/components/DrawingTool/lib/Sketch.d.ts +90 -0
- package/dist/components/DrawingTool/lib/Sketch.js +414 -0
- package/dist/components/DrawingTool/lib/Sketch.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchCut.d.ts +22 -0
- package/dist/components/DrawingTool/lib/SketchCut.js +98 -0
- package/dist/components/DrawingTool/lib/SketchCut.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchCutModel.d.ts +6 -0
- package/dist/components/DrawingTool/lib/SketchCutModel.js +20 -0
- package/dist/components/DrawingTool/lib/SketchCutModel.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchLayer.d.ts +27 -0
- package/dist/components/DrawingTool/lib/SketchLayer.js +59 -0
- package/dist/components/DrawingTool/lib/SketchLayer.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchModel.d.ts +65 -0
- package/dist/components/DrawingTool/lib/SketchModel.js +137 -0
- package/dist/components/DrawingTool/lib/SketchModel.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchStrokeModel.d.ts +33 -0
- package/dist/components/DrawingTool/lib/SketchStrokeModel.js +48 -0
- package/dist/components/DrawingTool/lib/SketchStrokeModel.js.map +1 -0
- package/dist/components/DrawingTool/lib/createInteractionSurface.d.ts +16 -0
- package/dist/components/DrawingTool/lib/createInteractionSurface.js +56 -0
- package/dist/components/DrawingTool/lib/createInteractionSurface.js.map +1 -0
- package/dist/components/DrawingTool/lib/trace.d.ts +3 -0
- package/dist/components/DrawingTool/lib/trace.js +24 -0
- package/dist/components/DrawingTool/lib/trace.js.map +1 -0
- package/dist/components/DrawingTool/lib/trimCanvas.d.ts +2 -0
- package/dist/components/DrawingTool/lib/trimCanvas.js +42 -0
- package/dist/components/DrawingTool/lib/trimCanvas.js.map +1 -0
- package/dist/components/Icon/Icon.js +1 -1
- package/dist/components/Icon/icons.d.ts +6 -1
- package/dist/components/Icon/icons.js +11 -4
- package/dist/components/Icon/icons.js.map +1 -1
- package/dist/icons/AboutUs.d.ts +3 -0
- package/dist/icons/AboutUs.js +44 -0
- package/dist/icons/AboutUs.js.map +1 -0
- package/dist/icons/Activities.d.ts +3 -0
- package/dist/icons/Activities.js +48 -0
- package/dist/icons/Activities.js.map +1 -0
- package/dist/icons/Archive.d.ts +3 -0
- package/dist/icons/Archive.js +43 -0
- package/dist/icons/Archive.js.map +1 -0
- package/dist/icons/ArrowLeft.d.ts +3 -0
- package/dist/icons/ArrowLeft.js +43 -0
- package/dist/icons/ArrowLeft.js.map +1 -0
- package/dist/icons/ArrowRight.d.ts +3 -0
- package/dist/icons/ArrowRight.js +43 -0
- package/dist/icons/ArrowRight.js.map +1 -0
- package/dist/icons/Bear.d.ts +3 -0
- package/dist/icons/Bear.js +177 -0
- package/dist/icons/Bear.js.map +1 -0
- package/dist/icons/CardSkills.d.ts +3 -0
- package/dist/icons/CardSkills.js +41 -0
- package/dist/icons/CardSkills.js.map +1 -0
- package/dist/icons/Challenges.d.ts +3 -0
- package/dist/icons/Challenges.js +43 -0
- package/dist/icons/Challenges.js.map +1 -0
- package/dist/icons/Chart.d.ts +3 -0
- package/dist/icons/Chart.js +35 -0
- package/dist/icons/Chart.js.map +1 -0
- package/dist/icons/Checkmark.d.ts +3 -0
- package/dist/icons/Checkmark.js +35 -0
- package/dist/icons/Checkmark.js.map +1 -0
- package/dist/icons/Close.d.ts +3 -0
- package/dist/icons/Close.js +43 -0
- package/dist/icons/Close.js.map +1 -0
- package/dist/icons/CloseCopy.d.ts +3 -0
- package/dist/icons/CloseCopy.js +35 -0
- package/dist/icons/CloseCopy.js.map +1 -0
- package/dist/icons/Collect.d.ts +3 -0
- package/dist/icons/Collect.js +94 -0
- package/dist/icons/Collect.js.map +1 -0
- package/dist/icons/Comment.d.ts +3 -0
- package/dist/icons/Comment.js +48 -0
- package/dist/icons/Comment.js.map +1 -0
- package/dist/icons/Compass.d.ts +3 -0
- package/dist/icons/Compass.js +39 -0
- package/dist/icons/Compass.js.map +1 -0
- package/dist/icons/Controller.d.ts +3 -0
- package/dist/icons/Controller.js +71 -0
- package/dist/icons/Controller.js.map +1 -0
- package/dist/icons/Create.d.ts +3 -0
- package/dist/icons/Create.js +137 -0
- package/dist/icons/Create.js.map +1 -0
- package/dist/icons/Customise.d.ts +3 -0
- package/dist/icons/Customise.js +60 -0
- package/dist/icons/Customise.js.map +1 -0
- package/dist/icons/Download.d.ts +3 -0
- package/dist/icons/Download.js +35 -0
- package/dist/icons/Download.js.map +1 -0
- package/dist/icons/Draft.d.ts +3 -0
- package/dist/icons/Draft.js +77 -0
- package/dist/icons/Draft.js.map +1 -0
- package/dist/icons/DrawingTask.d.ts +3 -0
- package/dist/icons/DrawingTask.js +156 -0
- package/dist/icons/DrawingTask.js.map +1 -0
- package/dist/icons/DrawingToolArrowDown.d.ts +3 -0
- package/dist/icons/DrawingToolArrowDown.js +35 -0
- package/dist/icons/DrawingToolArrowDown.js.map +1 -0
- package/dist/icons/DrawingToolArrowLeft.d.ts +3 -0
- package/dist/icons/DrawingToolArrowLeft.js +37 -0
- package/dist/icons/DrawingToolArrowLeft.js.map +1 -0
- package/dist/icons/DrawingToolArrowRight.d.ts +3 -0
- package/dist/icons/DrawingToolArrowRight.js +37 -0
- package/dist/icons/DrawingToolArrowRight.js.map +1 -0
- package/dist/icons/DrawingToolArrowUp.d.ts +3 -0
- package/dist/icons/DrawingToolArrowUp.js +35 -0
- package/dist/icons/DrawingToolArrowUp.js.map +1 -0
- package/dist/icons/DrawingToolCamera.d.ts +3 -0
- package/dist/icons/DrawingToolCamera.js +66 -0
- package/dist/icons/DrawingToolCamera.js.map +1 -0
- package/dist/icons/DrawingToolColorMixer.d.ts +3 -0
- package/dist/icons/DrawingToolColorMixer.js +37 -0
- package/dist/icons/DrawingToolColorMixer.js.map +1 -0
- package/dist/icons/DrawingToolEraser.d.ts +3 -0
- package/dist/icons/DrawingToolEraser.js +35 -0
- package/dist/icons/DrawingToolEraser.js.map +1 -0
- package/dist/icons/DrawingToolFillBrush.d.ts +3 -0
- package/dist/icons/DrawingToolFillBrush.js +45 -0
- package/dist/icons/DrawingToolFillBrush.js.map +1 -0
- package/dist/icons/DrawingToolLargeLine.d.ts +3 -0
- package/dist/icons/DrawingToolLargeLine.js +38 -0
- package/dist/icons/DrawingToolLargeLine.js.map +1 -0
- package/dist/icons/DrawingToolLineBrush.d.ts +3 -0
- package/dist/icons/DrawingToolLineBrush.js +39 -0
- package/dist/icons/DrawingToolLineBrush.js.map +1 -0
- package/dist/icons/DrawingToolMediumLine.d.ts +3 -0
- package/dist/icons/DrawingToolMediumLine.js +38 -0
- package/dist/icons/DrawingToolMediumLine.js.map +1 -0
- package/dist/icons/DrawingToolOpacityFull.d.ts +3 -0
- package/dist/icons/DrawingToolOpacityFull.js +35 -0
- package/dist/icons/DrawingToolOpacityFull.js.map +1 -0
- package/dist/icons/DrawingToolOpacityHalf.d.ts +3 -0
- package/dist/icons/DrawingToolOpacityHalf.js +35 -0
- package/dist/icons/DrawingToolOpacityHalf.js.map +1 -0
- package/dist/icons/DrawingToolRedo.d.ts +3 -0
- package/dist/icons/DrawingToolRedo.js +37 -0
- package/dist/icons/DrawingToolRedo.js.map +1 -0
- package/dist/icons/DrawingToolSmallLine.d.ts +3 -0
- package/dist/icons/DrawingToolSmallLine.js +38 -0
- package/dist/icons/DrawingToolSmallLine.js.map +1 -0
- package/dist/icons/DrawingToolStickers.d.ts +3 -0
- package/dist/icons/DrawingToolStickers.js +66 -0
- package/dist/icons/DrawingToolStickers.js.map +1 -0
- package/dist/icons/DrawingToolUndo.d.ts +3 -0
- package/dist/icons/DrawingToolUndo.js +37 -0
- package/dist/icons/DrawingToolUndo.js.map +1 -0
- package/dist/icons/Egg.d.ts +3 -0
- package/dist/icons/Egg.js +62 -0
- package/dist/icons/Egg.js.map +1 -0
- package/dist/icons/Enclosure.d.ts +3 -0
- package/dist/icons/Enclosure.js +76 -0
- package/dist/icons/Enclosure.js.map +1 -0
- package/dist/icons/Exclamation.d.ts +3 -0
- package/dist/icons/Exclamation.js +39 -0
- package/dist/icons/Exclamation.js.map +1 -0
- package/dist/icons/ExclamationGrey.d.ts +3 -0
- package/dist/icons/ExclamationGrey.js +37 -0
- package/dist/icons/ExclamationGrey.js.map +1 -0
- package/dist/icons/Eye.d.ts +3 -0
- package/dist/icons/Eye.js +42 -0
- package/dist/icons/Eye.js.map +1 -0
- package/dist/icons/Facebook.d.ts +3 -0
- package/dist/icons/Facebook.js +35 -0
- package/dist/icons/Facebook.js.map +1 -0
- package/dist/icons/Filter.d.ts +3 -0
- package/dist/icons/Filter.js +52 -0
- package/dist/icons/Filter.js.map +1 -0
- package/dist/icons/Flag.d.ts +3 -0
- package/dist/icons/Flag.js +47 -0
- package/dist/icons/Flag.js.map +1 -0
- package/dist/icons/Flamingo.d.ts +3 -0
- package/dist/icons/Flamingo.js +101 -0
- package/dist/icons/Flamingo.js.map +1 -0
- package/dist/icons/ForYou.d.ts +3 -0
- package/dist/icons/ForYou.js +61 -0
- package/dist/icons/ForYou.js.map +1 -0
- package/dist/icons/Games.d.ts +3 -0
- package/dist/icons/Games.js +73 -0
- package/dist/icons/Games.js.map +1 -0
- package/dist/icons/Gift.d.ts +3 -0
- package/dist/icons/Gift.js +54 -0
- package/dist/icons/Gift.js.map +1 -0
- package/dist/icons/Giraffe.d.ts +3 -0
- package/dist/icons/Giraffe.js +244 -0
- package/dist/icons/Giraffe.js.map +1 -0
- package/dist/icons/Goals.d.ts +3 -0
- package/dist/icons/Goals.js +46 -0
- package/dist/icons/Goals.js.map +1 -0
- package/dist/icons/Heart.d.ts +3 -0
- package/dist/icons/Heart.js +49 -0
- package/dist/icons/Heart.js.map +1 -0
- package/dist/icons/Help.d.ts +3 -0
- package/dist/icons/Help.js +43 -0
- package/dist/icons/Help.js.map +1 -0
- package/dist/icons/IdeaCreator.d.ts +3 -0
- package/dist/icons/IdeaCreator.js +46 -0
- package/dist/icons/IdeaCreator.js.map +1 -0
- package/dist/icons/Info.d.ts +3 -0
- package/dist/icons/Info.js +43 -0
- package/dist/icons/Info.js.map +1 -0
- package/dist/icons/Instagram.d.ts +3 -0
- package/dist/icons/Instagram.js +44 -0
- package/dist/icons/Instagram.js.map +1 -0
- package/dist/icons/Items.d.ts +3 -0
- package/dist/icons/Items.js +73 -0
- package/dist/icons/Items.js.map +1 -0
- package/dist/icons/Layers.d.ts +3 -0
- package/dist/icons/Layers.js +41 -0
- package/dist/icons/Layers.js.map +1 -0
- package/dist/icons/Lessons.d.ts +3 -0
- package/dist/icons/Lessons.js +38 -0
- package/dist/icons/Lessons.js.map +1 -0
- package/dist/icons/Link.d.ts +3 -0
- package/dist/icons/Link.js +44 -0
- package/dist/icons/Link.js.map +1 -0
- package/dist/icons/List.d.ts +3 -0
- package/dist/icons/List.js +53 -0
- package/dist/icons/List.js.map +1 -0
- package/dist/icons/Lock.d.ts +3 -0
- package/dist/icons/Lock.js +50 -0
- package/dist/icons/Lock.js.map +1 -0
- package/dist/icons/Logout.d.ts +3 -0
- package/dist/icons/Logout.js +43 -0
- package/dist/icons/Logout.js.map +1 -0
- package/dist/icons/Megaphone.d.ts +3 -0
- package/dist/icons/Megaphone.js +45 -0
- package/dist/icons/Megaphone.js.map +1 -0
- package/dist/icons/Menu.d.ts +3 -0
- package/dist/icons/Menu.js +48 -0
- package/dist/icons/Menu.js.map +1 -0
- package/dist/icons/Message.d.ts +3 -0
- package/dist/icons/Message.js +60 -0
- package/dist/icons/Message.js.map +1 -0
- package/dist/icons/Minus.d.ts +3 -0
- package/dist/icons/Minus.js +43 -0
- package/dist/icons/Minus.js.map +1 -0
- package/dist/icons/More.d.ts +3 -0
- package/dist/icons/More.js +48 -0
- package/dist/icons/More.js.map +1 -0
- package/dist/icons/MyHistory.d.ts +3 -0
- package/dist/icons/MyHistory.js +78 -0
- package/dist/icons/MyHistory.js.map +1 -0
- package/dist/icons/MyZoo.d.ts +3 -0
- package/dist/icons/MyZoo.js +81 -0
- package/dist/icons/MyZoo.js.map +1 -0
- package/dist/icons/New.d.ts +3 -0
- package/dist/icons/New.js +43 -0
- package/dist/icons/New.js.map +1 -0
- package/dist/icons/Notifications.d.ts +3 -0
- package/dist/icons/Notifications.js +39 -0
- package/dist/icons/Notifications.js.map +1 -0
- package/dist/icons/Nzk.d.ts +3 -0
- package/dist/icons/Nzk.js +42 -0
- package/dist/icons/Nzk.js.map +1 -0
- package/dist/icons/NzkPurple.d.ts +3 -0
- package/dist/icons/NzkPurple.js +49 -0
- package/dist/icons/NzkPurple.js.map +1 -0
- package/dist/icons/NzktvBlue.d.ts +3 -0
- package/dist/icons/NzktvBlue.js +36 -0
- package/dist/icons/NzktvBlue.js.map +1 -0
- package/dist/icons/NzktvGreen.d.ts +3 -0
- package/dist/icons/NzktvGreen.js +36 -0
- package/dist/icons/NzktvGreen.js.map +1 -0
- package/dist/icons/Orb.d.ts +3 -0
- package/dist/icons/Orb.js +46 -0
- package/dist/icons/Orb.js.map +1 -0
- package/dist/icons/OrbDisabled.d.ts +3 -0
- package/dist/icons/OrbDisabled.js +47 -0
- package/dist/icons/OrbDisabled.js.map +1 -0
- package/dist/icons/Padlock.d.ts +3 -0
- package/dist/icons/Padlock.js +43 -0
- package/dist/icons/Padlock.js.map +1 -0
- package/dist/icons/Pdf.d.ts +3 -0
- package/dist/icons/Pdf.js +46 -0
- package/dist/icons/Pdf.js.map +1 -0
- package/dist/icons/Pencil.d.ts +3 -0
- package/dist/icons/Pencil.js +77 -0
- package/dist/icons/Pencil.js.map +1 -0
- package/dist/icons/Pending.d.ts +3 -0
- package/dist/icons/Pending.js +74 -0
- package/dist/icons/Pending.js.map +1 -0
- package/dist/icons/Penguin.d.ts +3 -0
- package/dist/icons/Penguin.js +214 -0
- package/dist/icons/Penguin.js.map +1 -0
- package/dist/icons/Play.d.ts +3 -0
- package/dist/icons/Play.js +46 -0
- package/dist/icons/Play.js.map +1 -0
- package/dist/icons/PlayVideo.d.ts +3 -0
- package/dist/icons/PlayVideo.js +43 -0
- package/dist/icons/PlayVideo.js.map +1 -0
- package/dist/icons/Plus.d.ts +3 -0
- package/dist/icons/Plus.js +43 -0
- package/dist/icons/Plus.js.map +1 -0
- package/dist/icons/Private.d.ts +3 -0
- package/dist/icons/Private.js +63 -0
- package/dist/icons/Private.js.map +1 -0
- package/dist/icons/Progress.d.ts +3 -0
- package/dist/icons/Progress.js +43 -0
- package/dist/icons/Progress.js.map +1 -0
- package/dist/icons/Projects.d.ts +3 -0
- package/dist/icons/Projects.js +50 -0
- package/dist/icons/Projects.js.map +1 -0
- package/dist/icons/Refresh.d.ts +3 -0
- package/dist/icons/Refresh.js +39 -0
- package/dist/icons/Refresh.js.map +1 -0
- package/dist/icons/Rewards.d.ts +3 -0
- package/dist/icons/Rewards.js +69 -0
- package/dist/icons/Rewards.js.map +1 -0
- package/dist/icons/Sealion.d.ts +3 -0
- package/dist/icons/Sealion.js +184 -0
- package/dist/icons/Sealion.js.map +1 -0
- package/dist/icons/Search.d.ts +3 -0
- package/dist/icons/Search.js +49 -0
- package/dist/icons/Search.js.map +1 -0
- package/dist/icons/Send.d.ts +3 -0
- package/dist/icons/Send.js +59 -0
- package/dist/icons/Send.js.map +1 -0
- package/dist/icons/Settings.d.ts +3 -0
- package/dist/icons/Settings.js +43 -0
- package/dist/icons/Settings.js.map +1 -0
- package/dist/icons/Sharing.d.ts +3 -0
- package/dist/icons/Sharing.js +49 -0
- package/dist/icons/Sharing.js.map +1 -0
- package/dist/icons/Shop.d.ts +3 -0
- package/dist/icons/Shop.js +112 -0
- package/dist/icons/Shop.js.map +1 -0
- package/dist/icons/SoundOff.d.ts +3 -0
- package/dist/icons/SoundOff.js +39 -0
- package/dist/icons/SoundOff.js.map +1 -0
- package/dist/icons/SoundOn.d.ts +3 -0
- package/dist/icons/SoundOn.js +42 -0
- package/dist/icons/SoundOn.js.map +1 -0
- package/dist/icons/StarWriting.d.ts +3 -0
- package/dist/icons/StarWriting.js +49 -0
- package/dist/icons/StarWriting.js.map +1 -0
- package/dist/icons/Task.d.ts +3 -0
- package/dist/icons/Task.js +47 -0
- package/dist/icons/Task.js.map +1 -0
- package/dist/icons/TextToSpeech.d.ts +3 -0
- package/dist/icons/TextToSpeech.js +40 -0
- package/dist/icons/TextToSpeech.js.map +1 -0
- package/dist/icons/Tick.d.ts +3 -0
- package/dist/icons/Tick.js +43 -0
- package/dist/icons/Tick.js.map +1 -0
- package/dist/icons/Torch.d.ts +3 -0
- package/dist/icons/Torch.js +52 -0
- package/dist/icons/Torch.js.map +1 -0
- package/dist/icons/Transfer.d.ts +3 -0
- package/dist/icons/Transfer.js +40 -0
- package/dist/icons/Transfer.js.map +1 -0
- package/dist/icons/Trash.d.ts +3 -0
- package/dist/icons/Trash.js +50 -0
- package/dist/icons/Trash.js.map +1 -0
- package/dist/icons/TrashCopy.d.ts +3 -0
- package/dist/icons/TrashCopy.js +50 -0
- package/dist/icons/TrashCopy.js.map +1 -0
- package/dist/icons/TrashWhite.d.ts +3 -0
- package/dist/icons/TrashWhite.js +50 -0
- package/dist/icons/TrashWhite.js.map +1 -0
- package/dist/icons/Trophy.d.ts +3 -0
- package/dist/icons/Trophy.js +95 -0
- package/dist/icons/Trophy.js.map +1 -0
- package/dist/icons/Twitter.d.ts +3 -0
- package/dist/icons/Twitter.js +35 -0
- package/dist/icons/Twitter.js.map +1 -0
- package/dist/icons/Upload.d.ts +3 -0
- package/dist/icons/Upload.js +43 -0
- package/dist/icons/Upload.js.map +1 -0
- package/dist/icons/User.d.ts +3 -0
- package/dist/icons/User.js +37 -0
- package/dist/icons/User.js.map +1 -0
- package/dist/icons/Users.d.ts +3 -0
- package/dist/icons/Users.js +44 -0
- package/dist/icons/Users.js.map +1 -0
- package/dist/icons/Video.d.ts +3 -0
- package/dist/icons/Video.js +53 -0
- package/dist/icons/Video.js.map +1 -0
- package/dist/icons/Whatsapp.d.ts +3 -0
- package/dist/icons/Whatsapp.js +41 -0
- package/dist/icons/Whatsapp.js.map +1 -0
- package/dist/icons/Writing.d.ts +3 -0
- package/dist/icons/Writing.js +75 -0
- package/dist/icons/Writing.js.map +1 -0
- package/dist/icons/WritingTypeAdventureStory.d.ts +3 -0
- package/dist/icons/WritingTypeAdventureStory.js +43 -0
- package/dist/icons/WritingTypeAdventureStory.js.map +1 -0
- package/dist/icons/WritingTypeBiography.d.ts +3 -0
- package/dist/icons/WritingTypeBiography.js +43 -0
- package/dist/icons/WritingTypeBiography.js.map +1 -0
- package/dist/icons/WritingTypeDiaryEntry.d.ts +3 -0
- package/dist/icons/WritingTypeDiaryEntry.js +47 -0
- package/dist/icons/WritingTypeDiaryEntry.js.map +1 -0
- package/dist/icons/WritingTypeFreeWrite.d.ts +3 -0
- package/dist/icons/WritingTypeFreeWrite.js +46 -0
- package/dist/icons/WritingTypeFreeWrite.js.map +1 -0
- package/dist/icons/WritingTypeInstructions.d.ts +3 -0
- package/dist/icons/WritingTypeInstructions.js +43 -0
- package/dist/icons/WritingTypeInstructions.js.map +1 -0
- package/dist/icons/WritingTypeLetterWriting.d.ts +3 -0
- package/dist/icons/WritingTypeLetterWriting.js +43 -0
- package/dist/icons/WritingTypeLetterWriting.js.map +1 -0
- package/dist/icons/WritingTypeNewspaperArticle.d.ts +3 -0
- package/dist/icons/WritingTypeNewspaperArticle.js +44 -0
- package/dist/icons/WritingTypeNewspaperArticle.js.map +1 -0
- package/dist/icons/WritingTypePersuasiveWriting.d.ts +3 -0
- package/dist/icons/WritingTypePersuasiveWriting.js +43 -0
- package/dist/icons/WritingTypePersuasiveWriting.js.map +1 -0
- package/dist/icons/WritingTypePlayscript.d.ts +3 -0
- package/dist/icons/WritingTypePlayscript.js +44 -0
- package/dist/icons/WritingTypePlayscript.js.map +1 -0
- package/dist/icons/WritingTypePoem.d.ts +3 -0
- package/dist/icons/WritingTypePoem.js +42 -0
- package/dist/icons/WritingTypePoem.js.map +1 -0
- package/dist/icons/WritingTypeReport.d.ts +3 -0
- package/dist/icons/WritingTypeReport.js +50 -0
- package/dist/icons/WritingTypeReport.js.map +1 -0
- package/dist/icons/ZooPoint.d.ts +3 -0
- package/dist/icons/ZooPoint.js +75 -0
- package/dist/icons/ZooPoint.js.map +1 -0
- package/dist/icons/index.d.ts +129 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +258 -0
- package/dist/index.js.map +1 -1
- package/package.json +3 -1
|
@@ -0,0 +1,49 @@
|
|
|
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 SvgSearch = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ "data-name": "Icon - Search", xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 120.237" }, props),
|
|
29
|
+
React__namespace.createElement("path", { fill: "none", d: "M0 .237h120v120H0z" }),
|
|
30
|
+
React__namespace.createElement("g", { transform: "translate(4899.631 7684.959)" },
|
|
31
|
+
React__namespace.createElement("path", { "data-name": "Path 1565", d: "M-4779.67-7577.424v-.011a5.5 5.5 0 0 0-.119-.629c-.043-.185-.1-.377-.157-.574l-.035-.108a11.01 11.01 0 0 0-.221-.623l-.02-.049a14.278 14.278 0 0 0-.273-.641l-.041-.093a14.3 14.3 0 0 0-.335-.686l-.067-.131a25.743 25.743 0 0 0-.394-.724l-.048-.083c-.138-.24-.283-.483-.435-.732l-.056-.091q-.238-.384-.5-.782c-.034-.052-.069-.1-.1-.157a36.545 36.545 0 0 0-.551-.806l-.085-.119q-.283-.4-.588-.813l-.06-.081-.2-.265v-.008l-.041-.053a53.05 53.05 0 0 0-.416-.542l-.134-.172-.486-.613-.05-.063-.163-.2-.123-.149q-.363-.445-.746-.9l-.045-.054-.1-.116-.069-.08q-.315-.37-.645-.745l-.16-.183-.422-.475-.113-.125-.3-.333-.164-.18c-.3-.328-.6-.658-.919-.991-7.3-7.75-24.6-18.5-24.6-18.5l-.244-.124-.129-.066-.192-.1-.153-.08-.226-.116-.256-.132-.176-.092-.227-.118-.285-.148-.22-.114-.285-.149-.343-.179-.208-.108-.331-.173-.28-.147-.3-.159-.282-.147-.378-.2-.229-.12-.316-.166-.3-.159-.487-.255-.019-.01-.436-.229c-.092-.048-.184-.1-.274-.144l-.259-.135a69.483 69.483 0 0 1-.922-.539 78.944 78.944 0 0 1-2.972-1.876c-.7-.479-1.415-.974-2.029-1.4a39.157 39.157 0 0 0 4.145-17.576c0-.555-.018-1.1-.041-1.653.023-.548.041-1.1.041-1.652 0-.185-.011-.367-.014-.551s.014-.366.014-.551a38.853 38.853 0 0 0-38.672-39.031 38.853 38.853 0 0 0-38.673 39.031c0 .185.012.367.014.551s-.014.366-.014.551c0 .554.019 1.1.042 1.652-.023.549-.042 1.1-.042 1.653a38.853 38.853 0 0 0 38.673 39.031 38.4 38.4 0 0 0 28.331-12.476c1.643 1.281 3.829 3 4.462 3.59l.027-.036a71.5 71.5 0 0 1 6 5.787s14.317 14.492 24.787 19.813c13.05 6.649 18.204 6.208 17.659 1.932Zm-81.288-87.337a29.7 29.7 0 0 1 29.609 27.5 29.7 29.7 0 0 1-29.609 27.5 29.7 29.7 0 0 1-29.61-27.5 29.7 29.7 0 0 1 29.61-27.5Z", opacity: 0.3 }),
|
|
32
|
+
React__namespace.createElement("path", { "data-name": "Path 1566", d: "M-4860.958-7680.553a38.853 38.853 0 0 0-38.673 39.031 38.853 38.853 0 0 0 38.673 39.032 38.853 38.853 0 0 0 38.672-39.032 38.853 38.853 0 0 0-38.672-39.031Zm0 68.731a29.7 29.7 0 0 1-29.7-29.7 29.7 29.7 0 0 1 29.7-29.7 29.7 29.7 0 0 1 29.7 29.7 29.7 29.7 0 0 1-29.7 29.7Z", fill: "#ca6e14" }),
|
|
33
|
+
React__namespace.createElement("path", { "data-name": "Path 1567", d: "M-4855.664-7612.3a29.828 29.828 0 0 1-5.294.48 29.7 29.7 0 0 1-29.7-29.7 29.7 29.7 0 0 1 29.7-29.7 29.92 29.92 0 0 1 5.294.479v-9.438a38.72 38.72 0 0 0-5.294-.373 38.853 38.853 0 0 0-38.673 39.031 38.853 38.853 0 0 0 38.673 39.032 38.565 38.565 0 0 0 5.294-.374Z", fill: "#d9751a", fillRule: "evenodd" }),
|
|
34
|
+
React__namespace.createElement("g", { "data-name": "Group 1551" },
|
|
35
|
+
React__namespace.createElement("g", { "data-name": "Group 1550" },
|
|
36
|
+
React__namespace.createElement("g", { "data-name": "Group 1549" },
|
|
37
|
+
React__namespace.createElement("path", { "data-name": "Path 1568", d: "M-4789.061-7598.065c-7.3-7.75-24.6-18.5-24.6-18.5-.741-.373-4.458-2.129-7.765-4.106-3.573-2.136-6.724-4.49-6.724-4.49l-6.409 8.688s3.28 2.342 6.4 5.031a71.531 71.531 0 0 1 6.026 5.813s14.317 14.492 24.787 19.813c22.583 11.485 21.529 1.816 8.285-12.249Z", fill: "#642681" }),
|
|
38
|
+
React__namespace.createElement("path", { "data-name": "Path 1569", d: "M-4813.665-7616.561c-1.115-.56-5.792-3.014-8.3-4.332l-4.321 6.933s45.624 39.749 46.617 30.075c-.4-3.113-3.813-8.257-9.391-14.18-7.299-7.75-24.605-18.496-24.605-18.496Z", fill: "#931d80" }),
|
|
39
|
+
React__namespace.createElement("path", { "data-name": "Path 1570", d: "M-4813.665-7616.561c-1.079-.542-5.494-2.858-8.052-4.2l-1.2 2.246s48.241 42.35 39.831 27.906q-.441-.758-.88-1.481a72.813 72.813 0 0 0-5.1-5.974c-7.293-7.751-24.599-18.497-24.599-18.497Z", fill: "#e62074" }),
|
|
40
|
+
React__namespace.createElement("path", { "data-name": "Path 1571", d: "M-4834.563-7616.469s5.346 4.12 6.4 5.093l6.775-9.215c-1.273-.669-6.764-4.566-6.764-4.566Z", fill: "#f8af3c" }),
|
|
41
|
+
React__namespace.createElement("path", { "data-name": "Path 1572", d: "m-4829.427-7623.431 6.512 4.915 1.525-2.075c-1.273-.669-6.764-4.566-6.764-4.566Z", fill: "#f8e831" }),
|
|
42
|
+
React__namespace.createElement("path", { "data-name": "Path 1573", d: "M-4834.563-7616.469s5.346 4.12 6.4 5.093l1.962-2.668-6.668-4.613-.061-.023Z", fill: "#f29222" })))),
|
|
43
|
+
React__namespace.createElement("circle", { "data-name": "Ellipse 388", cx: 29.7, cy: 29.7, r: 29.7, transform: "translate(-4890.658 -7674.526)", fill: "#c7e7fa", opacity: 0.7 }),
|
|
44
|
+
React__namespace.createElement("path", { "data-name": "Path 1574", d: "M-4860.958-7684.959a38.852 38.852 0 0 0-38.673 39.031 38.853 38.853 0 0 0 38.673 39.031 38.853 38.853 0 0 0 38.672-39.031 38.852 38.852 0 0 0-38.672-39.031Zm0 68.73a29.7 29.7 0 0 1-29.7-29.7 29.7 29.7 0 0 1 29.7-29.7 29.7 29.7 0 0 1 29.7 29.7 29.7 29.7 0 0 1-29.7 29.7Z", fill: "#f8e831" }),
|
|
45
|
+
React__namespace.createElement("path", { "data-name": "Path 1575", d: "M-4860.958-7683.858a38.853 38.853 0 0 0-38.673 39.031 38.853 38.853 0 0 0 38.673 39.032 38.853 38.853 0 0 0 38.672-39.032 38.853 38.853 0 0 0-38.672-39.031Zm0 68.731a29.7 29.7 0 0 1-29.7-29.7 29.7 29.7 0 0 1 29.7-29.7 29.7 29.7 0 0 1 29.7 29.7 29.7 29.7 0 0 1-29.7 29.7Z", fill: "#f8af3c" }),
|
|
46
|
+
React__namespace.createElement("path", { "data-name": "Path 1576", d: "M-4864.712-7658.743a26.973 26.973 0 0 0 .14 38.155 26.837 26.837 0 0 0 7.44 5.2 29.587 29.587 0 0 1-24.663-8.36 29.715 29.715 0 0 1-.166-42.028 29.713 29.713 0 0 1 41.73-.414 26.957 26.957 0 0 0-24.481 7.447Z", fill: "#fff", fillRule: "evenodd", opacity: 0.4 })))); };
|
|
47
|
+
|
|
48
|
+
module.exports = SvgSearch;
|
|
49
|
+
//# sourceMappingURL=Search.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Search.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,59 @@
|
|
|
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 SvgSend = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120.556 120.234" }, props),
|
|
29
|
+
React__namespace.createElement("defs", null,
|
|
30
|
+
React__namespace.createElement("clipPath", { id: "send_svg__a" },
|
|
31
|
+
React__namespace.createElement("path", { "data-name": "Rectangle 1599", fill: "none", d: "M0 0h120.234v120.234H0z" })),
|
|
32
|
+
React__namespace.createElement("clipPath", { id: "send_svg__b" },
|
|
33
|
+
React__namespace.createElement("path", { "data-name": "Rectangle 1598", transform: "translate(38.428 6.104)", fill: "none", d: "M0 0h67.676v38.026H0z" })),
|
|
34
|
+
React__namespace.createElement("clipPath", { id: "send_svg__c" },
|
|
35
|
+
React__namespace.createElement("path", { "data-name": "Rectangle 1600", transform: "translate(62.419 71.104)", fill: "none", d: "M0 0h40.395v33.158H0z" }))),
|
|
36
|
+
React__namespace.createElement("path", { fill: "none", d: "M0 0h120v120H0z" }),
|
|
37
|
+
React__namespace.createElement("g", { "data-name": "Group 1625" },
|
|
38
|
+
React__namespace.createElement("path", { "data-name": "Path 1851", d: "m11.952 38.472 29.079 5.658L106.422 6.1Z", fill: "#fff" }),
|
|
39
|
+
React__namespace.createElement("path", { "data-name": "Path 1852", d: "m11.952 38.472 29.079 5.658L106.422 6.1Z", fill: "#fff" }),
|
|
40
|
+
React__namespace.createElement("path", { "data-name": "Path 1853", d: "m21.622 35.16-9.67 3.313 29.08 5.658 18.74-10.9Z", fill: "#53b4ed" }),
|
|
41
|
+
React__namespace.createElement("g", { "data-name": "Group 1617" },
|
|
42
|
+
React__namespace.createElement("g", { "data-name": "Group 1616", clipPath: "url(#send_svg__a)", transform: "translate(.322)" },
|
|
43
|
+
React__namespace.createElement("g", { "data-name": "Group 1615", opacity: 0.3 },
|
|
44
|
+
React__namespace.createElement("g", { "data-name": "Group 1614" },
|
|
45
|
+
React__namespace.createElement("g", { "data-name": "Group 1613", clipPath: "url(#send_svg__b)" },
|
|
46
|
+
React__namespace.createElement("path", { "data-name": "Path 1854", d: "M40.709 44.13 106.1 6.1l-.742.254-66.93 37.332Z", fill: "#c6cbd6" })))))),
|
|
47
|
+
React__namespace.createElement("path", { "data-name": "Path 1855", d: "m41.031 44.13 4.211 33.816L106.422 6.1Z", fill: "#fff" }),
|
|
48
|
+
React__namespace.createElement("path", { "data-name": "Path 1856", d: "m41.031 44.13 4.211 33.816L106.422 6.1Z", fill: "#c6cbd6" }),
|
|
49
|
+
React__namespace.createElement("path", { "data-name": "Path 1857", d: "m51.162 52.025 36.317 18.289L106.422 6.1Z", fill: "#ecf0f1" }),
|
|
50
|
+
React__namespace.createElement("path", { "data-name": "Path 1858", d: "m56.295 64.967 3.946-31.758-.47.024-18.74 10.9 4.21 33.816Z", fill: "#2a68a6" }),
|
|
51
|
+
React__namespace.createElement("path", { "data-name": "Path 1859", d: "m51.162 52.025-5.921 25.921 21.581-25.132Z", fill: "#22588f" }),
|
|
52
|
+
React__namespace.createElement("path", { "data-name": "Path 1860", d: "m51.162 52.025 36.317 18.289 1.413-4.79L70.322 36.1Z", fill: "#53b4ed" }),
|
|
53
|
+
React__namespace.createElement("g", { "data-name": "Group 1620", opacity: 0.3 },
|
|
54
|
+
React__namespace.createElement("g", { "data-name": "Group 1619" },
|
|
55
|
+
React__namespace.createElement("g", { "data-name": "Group 1618", clipPath: "url(#send_svg__c)", transform: "translate(.322)" },
|
|
56
|
+
React__namespace.createElement("path", { "data-name": "Path 1861", d: "M77.551 103.472 74 94.525 62.419 91.1l40.4-20-9.219 33.161-11.181-6.052Z" }))))))); };
|
|
57
|
+
|
|
58
|
+
module.exports = SvgSend;
|
|
59
|
+
//# sourceMappingURL=Send.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Send.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -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 SvgSettings = 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: "M75.706 33.581a3.156 3.156 0 0 0-2.967-2.611h-7.356a3.839 3.839 0 0 1-3.323-2.017c-.356-1.068-.949-4.628.119-5.7l5.221-5.216a2.891 2.891 0 0 0 .119-3.8l-6.052-5.931a2.767 2.767 0 0 0-3.8.237l-5.221 5.221a3.673 3.673 0 0 1-3.679.949c-1.068-.475-3.916-2.611-3.916-4.034V3.2A3.169 3.169 0 0 0 42.362.237c-.118 0-2.017-.237-4.39-.237A38.387 38.387 0 0 0 33.7.237 3.047 3.047 0 0 0 31.208 3.2v7.357a3.839 3.839 0 0 1-2.017 3.323c-1.068.356-4.628.949-5.7-.119l-5.217-5.217a2.893 2.893 0 0 0-3.8-.237l-6.17 6.17a2.773 2.773 0 0 0 .237 3.8l5.1 5.221c.949 1.068 1.424 2.729.949 3.679-.475 1.068-2.611 3.916-4.034 3.916H3.2A3.156 3.156 0 0 0 .237 33.7 35.783 35.783 0 0 0 0 37.972a38.387 38.387 0 0 0 .237 4.272A3.047 3.047 0 0 0 3.2 44.735h7.357a3.839 3.839 0 0 1 3.323 2.017c.356 1.068.949 4.628-.119 5.7l-5.1 5.221a2.893 2.893 0 0 0-.237 3.8l6.052 6.052a2.886 2.886 0 0 0 3.8-.119l5.221-5.221a3.733 3.733 0 0 1 3.679-.949c1.068.475 3.916 2.611 3.916 4.034v7.357a3.156 3.156 0 0 0 2.608 2.96 41.224 41.224 0 0 0 4.272.237 38.388 38.388 0 0 0 4.272-.237 3.047 3.047 0 0 0 2.492-2.967v-7.356a3.839 3.839 0 0 1 2.017-3.323c1.068-.356 4.628-.949 5.7.119l5.221 5.221a2.886 2.886 0 0 0 3.8.119l6.052-6.052a2.886 2.886 0 0 0-.119-3.8l-5.228-5.218a3.533 3.533 0 0 1-.949-3.679c.475-1.068 2.611-3.916 4.034-3.916h7.357a3.169 3.169 0 0 0 2.967-2.492 41.223 41.223 0 0 0 .237-4.272 29.477 29.477 0 0 0-.119-4.39ZM37.972 51.855a13.883 13.883 0 1 1 13.883-13.883 13.826 13.826 0 0 1-13.883 13.883Z", transform: "translate(22.071 30.925)", style: {
|
|
33
|
+
fill: "rgba(0,0,0,.3)",
|
|
34
|
+
} }),
|
|
35
|
+
React__namespace.createElement("path", { d: "M75.706 33.581a3.156 3.156 0 0 0-2.967-2.611h-7.356a3.839 3.839 0 0 1-3.323-2.017c-.356-1.068-.949-4.628.119-5.7l5.221-5.216a2.891 2.891 0 0 0 .119-3.8l-6.052-5.931a2.767 2.767 0 0 0-3.8.237l-5.221 5.221a3.673 3.673 0 0 1-3.679.949c-1.068-.475-3.916-2.611-3.916-4.034V3.2A3.169 3.169 0 0 0 42.362.237c-.118 0-2.017-.237-4.39-.237A38.387 38.387 0 0 0 33.7.237 3.047 3.047 0 0 0 31.208 3.2v7.357a3.839 3.839 0 0 1-2.017 3.323c-1.068.356-4.628.949-5.7-.119l-5.217-5.217a2.893 2.893 0 0 0-3.8-.237l-6.17 6.17a2.773 2.773 0 0 0 .237 3.8l5.1 5.221c.949 1.068 1.424 2.729.949 3.679-.475 1.068-2.611 3.916-4.034 3.916H3.2A3.156 3.156 0 0 0 .237 33.7 35.783 35.783 0 0 0 0 37.972a38.387 38.387 0 0 0 .237 4.272A3.047 3.047 0 0 0 3.2 44.735h7.357a3.839 3.839 0 0 1 3.323 2.017c.356 1.068.949 4.628-.119 5.7l-5.1 5.221a2.893 2.893 0 0 0-.237 3.8l6.052 6.052a2.886 2.886 0 0 0 3.8-.119l5.221-5.221a3.733 3.733 0 0 1 3.679-.949c1.068.475 3.916 2.611 3.916 4.034v7.357a3.156 3.156 0 0 0 2.608 2.96 41.224 41.224 0 0 0 4.272.237 38.388 38.388 0 0 0 4.272-.237 3.047 3.047 0 0 0 2.492-2.967v-7.356a3.839 3.839 0 0 1 2.017-3.323c1.068-.356 4.628-.949 5.7.119l5.221 5.221a2.886 2.886 0 0 0 3.8.119l6.052-6.052a2.886 2.886 0 0 0-.119-3.8l-5.228-5.218a3.533 3.533 0 0 1-.949-3.679c.475-1.068 2.611-3.916 4.034-3.916h7.357a3.169 3.169 0 0 0 2.967-2.492 41.223 41.223 0 0 0 .237-4.272 29.477 29.477 0 0 0-.119-4.39ZM37.972 51.855a13.883 13.883 0 1 1 13.883-13.883 13.826 13.826 0 0 1-13.883 13.883Z", transform: "translate(22.071 23.806)", style: {
|
|
36
|
+
fill: "#afafaf",
|
|
37
|
+
} }),
|
|
38
|
+
React__namespace.createElement("path", { d: "M75.706 33.581a3.156 3.156 0 0 0-2.967-2.611h-7.356a3.839 3.839 0 0 1-3.323-2.017c-.356-1.068-.949-4.628.119-5.7l5.221-5.216a2.891 2.891 0 0 0 .119-3.8l-6.052-5.931a2.767 2.767 0 0 0-3.8.237l-5.221 5.221a3.673 3.673 0 0 1-3.679.949c-1.068-.475-3.916-2.611-3.916-4.034V3.2A3.169 3.169 0 0 0 42.362.237c-.118 0-2.017-.237-4.39-.237A38.387 38.387 0 0 0 33.7.237 3.047 3.047 0 0 0 31.208 3.2v7.357a3.839 3.839 0 0 1-2.017 3.323c-1.068.356-4.628.949-5.7-.119l-5.217-5.217a2.893 2.893 0 0 0-3.8-.237l-6.17 6.17a2.773 2.773 0 0 0 .237 3.8l5.1 5.221c.949 1.068 1.424 2.729.949 3.679-.475 1.068-2.611 3.916-4.034 3.916H3.2A3.156 3.156 0 0 0 .237 33.7 35.783 35.783 0 0 0 0 37.972a38.387 38.387 0 0 0 .237 4.272A3.047 3.047 0 0 0 3.2 44.735h7.357a3.839 3.839 0 0 1 3.323 2.017c.356 1.068.949 4.628-.119 5.7l-5.1 5.221a2.893 2.893 0 0 0-.237 3.8l6.052 6.052a2.886 2.886 0 0 0 3.8-.119l5.221-5.221a3.733 3.733 0 0 1 3.679-.949c1.068.475 3.916 2.611 3.916 4.034v7.357a3.156 3.156 0 0 0 2.608 2.96 41.224 41.224 0 0 0 4.272.237 38.388 38.388 0 0 0 4.272-.237 3.047 3.047 0 0 0 2.492-2.967v-7.356a3.839 3.839 0 0 1 2.017-3.323c1.068-.356 4.628-.949 5.7.119l5.221 5.221a2.886 2.886 0 0 0 3.8.119l6.052-6.052a2.886 2.886 0 0 0-.119-3.8l-5.228-5.218a3.533 3.533 0 0 1-.949-3.679c.475-1.068 2.611-3.916 4.034-3.916h7.357a3.169 3.169 0 0 0 2.967-2.492 41.223 41.223 0 0 0 .237-4.272 29.477 29.477 0 0 0-.119-4.39ZM37.972 51.855a13.883 13.883 0 1 1 13.883-13.883 13.826 13.826 0 0 1-13.883 13.883Z", transform: "translate(22.071 17.873)", style: {
|
|
39
|
+
fill: "#fff",
|
|
40
|
+
} }))); };
|
|
41
|
+
|
|
42
|
+
module.exports = SvgSettings;
|
|
43
|
+
//# sourceMappingURL=Settings.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Settings.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,49 @@
|
|
|
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 SvgSharing = 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, ".sharing_svg__e{fill:#83c97d}")),
|
|
31
|
+
React__namespace.createElement("path", { style: {
|
|
32
|
+
fill: "none",
|
|
33
|
+
}, d: "M0 0h120v120H0z" }),
|
|
34
|
+
React__namespace.createElement("circle", { cx: 45.938, cy: 45.938, r: 45.938, transform: "translate(14.062 26.185)", style: {
|
|
35
|
+
opacity: 0.3,
|
|
36
|
+
mixBlendMode: "multiply",
|
|
37
|
+
isolation: "isolate",
|
|
38
|
+
} }),
|
|
39
|
+
React__namespace.createElement("circle", { cx: 50.5, cy: 50.5, r: 50.5, transform: "translate(9.5 9.5)", style: {
|
|
40
|
+
fill: "#61a2e1",
|
|
41
|
+
} }),
|
|
42
|
+
React__namespace.createElement("path", { d: "M550.192-364.808a45.442 45.442 0 0 1 24.9 40.539 45.454 45.454 0 0 1-45.455 45.454 45.442 45.442 0 0 1-40.538-24.9 50.512 50.512 0 0 0 49.042 38.45 50.5 50.5 0 0 0 50.5-50.5 50.512 50.512 0 0 0-38.449-49.043Z", transform: "translate(-478.143 375.766)", style: {
|
|
43
|
+
fill: "#3b6287",
|
|
44
|
+
opacity: 0.68,
|
|
45
|
+
} }),
|
|
46
|
+
React__namespace.createElement("path", { className: "sharing_svg__e", d: "M63.108 67.989q-1.63-.456-3.22-1.046a40.671 40.671 0 0 1-6.126-2.871 57.843 57.843 0 0 0-5.793-3.241 10 10 0 0 0-6.472-.766 2.35 2.35 0 0 1-1.325.136 1.991 1.991 0 0 1-.79-.61 22.4 22.4 0 0 1-4.023-5.354 7.567 7.567 0 0 1-.278-6.489c1.689-3.411 6.184-4.21 9.007-6.762a7.419 7.419 0 0 0 2.547-5.641c-.152-3.948-4.024-6.851-7.894-7.642-2.336-.477-4.773-.417-7.063-1.081a16.25 16.25 0 0 1-6.079-3.578 50.4 50.4 0 0 0-15.258 27.812 28.142 28.142 0 0 1 6.8 1.2c2.522.8 5.465 2.154 7.176 4.264a11.954 11.954 0 0 1 .721 1.31 25.083 25.083 0 0 0 2.331 3.313 13.291 13.291 0 0 0 8.553 4.537c-.116-.011-.644.91-.727 1.032-.283.419-.553.847-.793 1.292a6.717 6.717 0 0 0-.89 2.618c-.03.429-.018.873-.011 1.3a12.276 12.276 0 0 0 .33 2.774 6.76 6.76 0 0 0 2.015 3.489c1.093.948 2.5 1.406 3.67 2.242.283.2.527.462.823.644a3.916 3.916 0 0 1 .665.435 6.88 6.88 0 0 1 1.419 1.875c1.242 2.414.74 5.336 1.324 7.989a19.722 19.722 0 0 0 3.366 6.624 9.557 9.557 0 0 0 3.51 3.583c1.881.882 3.743.256 5.447-.669a2.267 2.267 0 0 0 .849-.859 7.21 7.21 0 0 0 .953-2.686c.342-1.987.209-4.026.59-6.008.568-2.963 2.352-5.525 4.061-8.012s3.431-5.111 3.842-8.1A7.706 7.706 0 0 0 64.63 68.9a2.532 2.532 0 0 0-1.522-.911ZM40.842 13.272a66.909 66.909 0 0 0 7.436 3.274q.526.178 1.057.339a20.353 20.353 0 0 0 12.573.14 8.237 8.237 0 0 0 3.346-2.029 6.388 6.388 0 0 0 1.503-5.03 50.741 50.741 0 0 0-6.759-.464 50.336 50.336 0 0 0-19.156 3.77ZM97.502 26.185a7.559 7.559 0 0 1-2.343 1.6 20.345 20.345 0 0 1-6.69 1.422l-5.67.549a32.741 32.741 0 0 0-7.554 1.333 11.027 11.027 0 0 0-6.023 4.52 6.716 6.716 0 0 0 .082 7.254c1.686 2.274 4.851 2.893 7.676 2.7s5.6-1.026 8.432-.926c1.715.06 3.834.973 3.738 2.686-.083 1.5-1.78 2.26-3.175 2.811a12.273 12.273 0 0 0-4.078 2.218c-.456.432-1.014.755-1.477 1.185a10.874 10.874 0 0 0-2.272 3.017 9.916 9.916 0 0 0-.031 9.013 6.42 6.42 0 0 0 4.854 3.9c1.179.12 2.2-.266 3.359-.043a8.226 8.226 0 0 1 2.133.728 8.177 8.177 0 0 1 3.3 3c1.369 2.239 2 5.449 4.536 6.127 1.9.508 3.912-.938 4.621-2.774a9.17 9.17 0 0 0-.141-5.8c-1.075-3.718-3.043-7.194-3.546-11.031s1.085-8.414 4.794-9.521c2.378-.709 5.073.161 7.413-.458a50.359 50.359 0 0 0-11.938-23.51Z" }))); };
|
|
47
|
+
|
|
48
|
+
module.exports = SvgSharing;
|
|
49
|
+
//# sourceMappingURL=Sharing.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Sharing.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,112 @@
|
|
|
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 SvgShop = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120.922 120" }, props),
|
|
29
|
+
React__namespace.createElement("defs", null,
|
|
30
|
+
React__namespace.createElement("style", null, ".shop_svg__c{fill:#5122a1}.shop_svg__d{fill:#38197c}.shop_svg__f{fill:#91d2fa}.shop_svg__g{fill:#b6e1fc}.shop_svg__q{fill:#1d1e1c;opacity:.3}.shop_svg__r{fill:#ec8e51}.shop_svg__s{fill:#f6bd84}.shop_svg__t{fill:#f2a367}.shop_svg__u{fill:#ed7f3f}")),
|
|
31
|
+
React__namespace.createElement("path", { transform: "translate(.397)", style: {
|
|
32
|
+
fill: "none",
|
|
33
|
+
}, d: "M0 0h120v120H0z" }),
|
|
34
|
+
React__namespace.createElement("path", { d: "M-1653.72 2630.877v-22.413c0-1.358-.812-1.218-.812-1.218h-.266a2.015 2.015 0 0 0-1.41-.7v-.011h-18.462a2.018 2.018 0 0 0-2.017 2.018 2 2 0 0 0 .105.615v21.709h-45.1v11.386h3.951l.225 1.336 5.722 34.044s.038.112.115.29l.05.112.057.124c.031.065.067.134.1.209l.056.105c.052.1.111.2.175.3l.041.07a8.136 8.136 0 0 0 1.536 1.831c.031.029.068.056.1.084.142.123.292.242.451.361.054.041.111.079.167.117q.22.156.462.3c.073.044.148.086.224.129.156.088.319.171.488.252.09.042.18.084.274.125.169.073.347.14.528.2a6.453 6.453 0 0 0 .902.266c.116.027.227.057.346.082.22.044.454.077.689.107.113.015.219.035.336.047.351.034.715.053 1.1.054h77.069a6.384 6.384 0 0 0 .639-.012l.1-.008a8.217 8.217 0 0 0 .685-.078l.1-.019a8.487 8.487 0 0 0 .549-.112q.2-.047.414-.109l.155-.047c.144-.045.29-.1.438-.153l.151-.059c.16-.066.321-.14.483-.219.037-.02.074-.035.111-.055a6.294 6.294 0 0 0 1.177-.789c.029-.025.056-.053.084-.079a5.98 5.98 0 0 0 .442-.434c.051-.056.1-.116.148-.175.117-.137.229-.281.336-.435.054-.076.1-.156.156-.236.1-.154.187-.316.275-.486.046-.091.093-.181.138-.277.084-.186.16-.387.231-.591.033-.094.07-.181.1-.279a8.27 8.27 0 0 0 .24-.984c.087-.486.186-1.049.295-1.677l.061-.355c.1-.556.2-1.15.309-1.791l.012-.071.185-1.077.077-.451.132-.78.091-.533.135-.791.105-.625.116-.683.142-.845.1-.6.112-.66.141-.845.078-.458.19-1.137.031-.179.2-1.209.109-.653.155-.928.07-.42.174-1.035c.048-.289.1-.575.144-.863l.1-.572.13-.776.133-.8.108-.649q.2-1.222.4-2.4c.032-.2.065-.39.1-.585l.11-.659.178-1.076.008-.049q.1-.573.187-1.125l.07-.42.087-.526.364-2.189.052-.317.445-2.683.017-.1.155-.933.055-.334.011-.07h2.806v-11.386Zm-5.279-20.307v20.307h-12.663v-20.307H-1659Z", transform: "rotate(-7 -21928.173 -12762.575)", style: {
|
|
35
|
+
fill: "rgba(0,0,0,.3)",
|
|
36
|
+
} }),
|
|
37
|
+
React__namespace.createElement("g", { transform: "rotate(-7 191.856 5.777)" },
|
|
38
|
+
React__namespace.createElement("path", { className: "shop_svg__c", d: "m3.806 34.868 6.091 36.239s1.674 5.177 8.222 5.177h77.046s6.09.355 7.156-5.634c1.408-7.911 6.091-36.238 6.091-36.238Z" }),
|
|
39
|
+
React__namespace.createElement("path", { className: "shop_svg__c", d: "m3.806 34.868 6.091 36.239s1.674 5.177 8.222 5.177h77.046s6.09.355 7.156-5.634c1.408-7.911 6.091-36.238 6.091-36.238Z" }),
|
|
40
|
+
React__namespace.createElement("path", { className: "shop_svg__d", d: "M18.12 76.287h14.464v-5.024H9.955c.325.824 2.261 5.024 8.165 5.024Z" }),
|
|
41
|
+
React__namespace.createElement("path", { d: "M-1617.9 2679.982c1.375-7.724 5.868-34.892 6.081-36.178l-90.436.395 6.09 36.24s1.675 5.176 8.222 5.176h63.256a6.707 6.707 0 0 0 6.787-5.633Z", transform: "translate(1720.224 -2609.33)", style: {
|
|
42
|
+
fill: "#883ac6",
|
|
43
|
+
} }),
|
|
44
|
+
React__namespace.createElement("path", { className: "shop_svg__f", d: "M45.1 1.599h4.111v23.982H45.1z" }),
|
|
45
|
+
React__namespace.createElement("path", { className: "shop_svg__g", d: "M45.908 1.599h4.111v23.982h-4.111z" }),
|
|
46
|
+
React__namespace.createElement("path", { className: "shop_svg__f", d: "M45.908 1.599h4.111v3.477h-4.111z" }),
|
|
47
|
+
React__namespace.createElement("path", { d: "m-1702.257 2644.2.369 2.2h89.637l.154-.933.075-.45.2-1.208Z", transform: "translate(1720.224 -2609.33)", style: {
|
|
48
|
+
fill: "#692ba5",
|
|
49
|
+
} }),
|
|
50
|
+
React__namespace.createElement("path", { className: "shop_svg__d", d: "m107.974 37.064.108-.65.046-.282c-.046.278-.1.595-.154.932ZM17.968 34.869l.369 2.2H4.173l-.369-2.2 14.152-.061Z" }),
|
|
51
|
+
React__namespace.createElement("path", { transform: "translate(0 24.341)", style: {
|
|
52
|
+
fill: "#7b2fd3",
|
|
53
|
+
}, d: "M0 0h111.001v9.517H0z" }),
|
|
54
|
+
React__namespace.createElement("path", { transform: "translate(15.282 24.341)", style: {
|
|
55
|
+
fill: "#9f49f2",
|
|
56
|
+
}, d: "M0 0h95.719v9.517H0z" }),
|
|
57
|
+
React__namespace.createElement("path", { transform: "translate(0 26.211)", style: {
|
|
58
|
+
fill: "#7137b5",
|
|
59
|
+
}, d: "M0 0h111.001v9.517H0z" }),
|
|
60
|
+
React__namespace.createElement("path", { transform: "translate(0 26.211)", style: {
|
|
61
|
+
fill: "#4a1f8c",
|
|
62
|
+
}, d: "M0 0h15.279v9.517H0z" }),
|
|
63
|
+
React__namespace.createElement("path", { transform: "translate(0 25.276)", style: {
|
|
64
|
+
fill: "#893ac9",
|
|
65
|
+
}, d: "M0 0h111.001v9.517H0z" }),
|
|
66
|
+
React__namespace.createElement("path", { transform: "translate(0 25.276)", style: {
|
|
67
|
+
fill: "#5e28ab",
|
|
68
|
+
}, d: "M0 0h15.279v9.517H0z" }),
|
|
69
|
+
React__namespace.createElement("path", { d: "M-1671.009 2606.536h-.013a2.018 2.018 0 0 0-2.017 2.018 2.018 2.018 0 0 0 2.017 2.017h12.524v-4.035Z", transform: "translate(1718.033 -2606.536)", style: {
|
|
70
|
+
fill: "#ec868f",
|
|
71
|
+
} }),
|
|
72
|
+
React__namespace.createElement("path", { d: "M-1649.637 2608.553a2.013 2.013 0 0 0-1.9-2.006v-.011h-5.939a2.015 2.015 0 0 0-1.979 2.014 2.016 2.016 0 0 0 1.979 2.014h5.939v-.011a2.013 2.013 0 0 0 1.9-2Z", transform: "translate(1717.015 -2606.536)", style: {
|
|
73
|
+
fill: "#9e4b52",
|
|
74
|
+
} }),
|
|
75
|
+
React__namespace.createElement("g", { transform: "translate(36.721 40.122)" },
|
|
76
|
+
React__namespace.createElement("rect", { className: "shop_svg__q", width: 8.679, height: 31.062, rx: 2.537, transform: "translate(0 .935)" }),
|
|
77
|
+
React__namespace.createElement("rect", { className: "shop_svg__r", width: 8.679, height: 31.062, rx: 2.537, transform: "translate(.355)" }),
|
|
78
|
+
React__namespace.createElement("rect", { className: "shop_svg__s", width: 8.679, height: 31.062, rx: 2.537, transform: "translate(.812)" }),
|
|
79
|
+
React__namespace.createElement("path", { className: "shop_svg__t", d: "M2.437 1.903h5.558v27.255H2.437z" }),
|
|
80
|
+
React__namespace.createElement("path", { className: "shop_svg__u", d: "M2.437 1.904v1.29H7.06v25.965h.935V1.904Z" })),
|
|
81
|
+
React__namespace.createElement("g", { transform: "translate(47.887 40.122)" },
|
|
82
|
+
React__namespace.createElement("rect", { className: "shop_svg__q", width: 8.679, height: 31.062, rx: 2.537, transform: "translate(0 .935)" }),
|
|
83
|
+
React__namespace.createElement("rect", { className: "shop_svg__r", width: 8.679, height: 31.062, rx: 2.537, transform: "translate(.355)" }),
|
|
84
|
+
React__namespace.createElement("rect", { className: "shop_svg__s", width: 8.679, height: 31.062, rx: 2.537, transform: "translate(.812)" }),
|
|
85
|
+
React__namespace.createElement("path", { className: "shop_svg__t", d: "M2.437 1.903h5.558v27.255H2.437z" }),
|
|
86
|
+
React__namespace.createElement("path", { className: "shop_svg__u", d: "M2.438 1.904v1.29h4.623v25.965h.935V1.904Z" })),
|
|
87
|
+
React__namespace.createElement("g", { transform: "translate(59.053 40.122)" },
|
|
88
|
+
React__namespace.createElement("rect", { className: "shop_svg__q", width: 8.679, height: 31.062, rx: 2.537, transform: "translate(0 .935)" }),
|
|
89
|
+
React__namespace.createElement("rect", { className: "shop_svg__r", width: 8.679, height: 31.062, rx: 2.537, transform: "translate(.355)" }),
|
|
90
|
+
React__namespace.createElement("rect", { className: "shop_svg__s", width: 8.679, height: 31.062, rx: 2.537, transform: "translate(.812)" }),
|
|
91
|
+
React__namespace.createElement("path", { className: "shop_svg__t", d: "M2.437 1.903h5.558v27.255H2.437z" }),
|
|
92
|
+
React__namespace.createElement("path", { className: "shop_svg__u", d: "M2.438 1.904v1.29h4.623v25.965h.935V1.904Z" })),
|
|
93
|
+
React__namespace.createElement("g", { transform: "translate(70.219 40.122)" },
|
|
94
|
+
React__namespace.createElement("rect", { className: "shop_svg__q", width: 8.679, height: 31.062, rx: 2.537, transform: "translate(0 .935)" }),
|
|
95
|
+
React__namespace.createElement("rect", { className: "shop_svg__r", width: 8.679, height: 31.062, rx: 2.537, transform: "translate(.355)" }),
|
|
96
|
+
React__namespace.createElement("rect", { className: "shop_svg__s", width: 8.679, height: 31.062, rx: 2.537, transform: "translate(.812)" }),
|
|
97
|
+
React__namespace.createElement("path", { className: "shop_svg__t", d: "M2.437 1.903h5.558v27.255H2.437z" }),
|
|
98
|
+
React__namespace.createElement("path", { className: "shop_svg__u", d: "M2.437 1.904v1.29H7.06v25.965h.935V1.904Z" })),
|
|
99
|
+
React__namespace.createElement("g", { transform: "translate(81.386 40.122)" },
|
|
100
|
+
React__namespace.createElement("rect", { className: "shop_svg__q", width: 8.679, height: 31.062, rx: 2.537, transform: "translate(0 .935)" }),
|
|
101
|
+
React__namespace.createElement("rect", { className: "shop_svg__r", width: 8.679, height: 31.062, rx: 2.537, transform: "translate(.355)" }),
|
|
102
|
+
React__namespace.createElement("rect", { className: "shop_svg__s", width: 8.679, height: 31.062, rx: 2.537, transform: "translate(.812)" }),
|
|
103
|
+
React__namespace.createElement("path", { className: "shop_svg__t", d: "M2.437 1.903h5.558v27.255H2.437z" }),
|
|
104
|
+
React__namespace.createElement("path", { className: "shop_svg__u", d: "M2.438 1.904v1.29h4.623v25.965h.935V1.904Z" })),
|
|
105
|
+
React__namespace.createElement("path", { className: "shop_svg__q", d: "M67.534 25.276h-5.279v2.09a2.994 2.994 0 0 0-1.472 2.506 3.349 3.349 0 0 0 3.549 3.1 4.041 4.041 0 0 0 .5-.044 4.043 4.043 0 0 0 .5.044 3.349 3.349 0 0 0 3.549-3.1 2.974 2.974 0 0 0-1.385-2.443h.04Z" }),
|
|
106
|
+
React__namespace.createElement("ellipse", { className: "shop_svg__f", cx: 3.549, cy: 3.102, rx: 3.549, ry: 3.102, transform: "translate(61.21 26.037)" }),
|
|
107
|
+
React__namespace.createElement("ellipse", { className: "shop_svg__g", cx: 3.549, cy: 3.102, rx: 3.549, ry: 3.102, transform: "translate(62.208 26.037)" }),
|
|
108
|
+
React__namespace.createElement("path", { className: "shop_svg__g", d: "M67.149.707h-4.492l.533 25.986h4.771V1.925c0-1.354-.812-1.218-.812-1.218Z" }),
|
|
109
|
+
React__namespace.createElement("path", { className: "shop_svg__f", d: "M63.494 26.696V1.928c0-1.32-.812-1.218-.812-1.218h-1.725v2.639h1.725v23.373l.812-.026" })))); };
|
|
110
|
+
|
|
111
|
+
module.exports = SvgShop;
|
|
112
|
+
//# sourceMappingURL=Shop.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Shop.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,39 @@
|
|
|
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 SvgSoundOff = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 119.878 120" }, props),
|
|
29
|
+
React__namespace.createElement("defs", null,
|
|
30
|
+
React__namespace.createElement("style", null, ".sound-off_svg__a{fill:rgba(0,0,0,.3)}.sound-off_svg__b{fill:#afafaf}.sound-off_svg__c{fill:#fff}")),
|
|
31
|
+
React__namespace.createElement("path", { className: "sound-off_svg__a", d: "m91.861 65.163 6.121-6a4.243 4.243 0 0 0-6-6l-6.121 6-6-6a4.243 4.243 0 0 0-6 6l6 6-6 6a4.142 4.142 0 0 0 0 6 4.438 4.438 0 0 0 6.121 0l6-6 6 6a4.438 4.438 0 0 0 6.121 0 4.142 4.142 0 0 0 0-6ZM59.785 30.516a3.946 3.946 0 0 0-2.449 1.1L38.972 49.982H24.526a3.785 3.785 0 0 0-.979.245 2.976 2.976 0 0 0-2.694 3.183v21.18a4.042 4.042 0 0 0 3.673 3.426h14.446l18.364 18.366a4.927 4.927 0 0 0 2.449 1.1 4.042 4.042 0 0 0 3.428-3.666V34.189a3.785 3.785 0 0 0-.245-.979 2.841 2.841 0 0 0-3.183-2.694Z" }),
|
|
32
|
+
React__namespace.createElement("path", { className: "sound-off_svg__b", d: "m91.861 61.163 6.121-6a4.243 4.243 0 0 0-6-6l-6.121 6-6-6a4.243 4.243 0 0 0-6 6l6 6-6 6a4.142 4.142 0 0 0 0 6 4.438 4.438 0 0 0 6.121 0l6-6 6 6a4.438 4.438 0 0 0 6.121 0 4.142 4.142 0 0 0 0-6ZM59.785 26.516a3.946 3.946 0 0 0-2.449 1.1L38.972 45.982H24.526a3.785 3.785 0 0 0-.979.245 2.976 2.976 0 0 0-2.694 3.183v21.18a4.042 4.042 0 0 0 3.673 3.426h14.446l18.364 18.366a4.927 4.927 0 0 0 2.449 1.1 4.042 4.042 0 0 0 3.428-3.666V30.189a3.785 3.785 0 0 0-.245-.979 2.841 2.841 0 0 0-3.183-2.694Z" }),
|
|
33
|
+
React__namespace.createElement("path", { className: "sound-off_svg__c", d: "m91.861 57.163 6.121-6a4.243 4.243 0 0 0-6-6l-6.121 6-6-6a4.243 4.243 0 0 0-6 6l6 6-6 6a4.142 4.142 0 0 0 0 6 4.438 4.438 0 0 0 6.121 0l6-6 6 6a4.438 4.438 0 0 0 6.121 0 4.142 4.142 0 0 0 0-6ZM59.785 22.516a3.946 3.946 0 0 0-2.449 1.1L38.972 41.982H24.526a3.785 3.785 0 0 0-.979.245 2.976 2.976 0 0 0-2.694 3.183v21.18a4.042 4.042 0 0 0 3.673 3.426h14.446l18.364 18.366a4.927 4.927 0 0 0 2.449 1.1 4.042 4.042 0 0 0 3.428-3.666V26.189a3.785 3.785 0 0 0-.245-.979 2.841 2.841 0 0 0-3.183-2.694Z" }),
|
|
34
|
+
React__namespace.createElement("path", { style: {
|
|
35
|
+
fill: "none",
|
|
36
|
+
}, d: "M0 0h119.878v120H0z" }))); };
|
|
37
|
+
|
|
38
|
+
module.exports = SvgSoundOff;
|
|
39
|
+
//# sourceMappingURL=SoundOff.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SoundOff.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -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 SvgSoundOn = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 119.878 120" }, props),
|
|
29
|
+
React__namespace.createElement("defs", null,
|
|
30
|
+
React__namespace.createElement("style", null, ".sound-on_svg__b{fill:rgba(0,0,0,.3)}.sound-on_svg__c{fill:#afafaf}.sound-on_svg__d{fill:#fff}")),
|
|
31
|
+
React__namespace.createElement("path", { style: {
|
|
32
|
+
fill: "none",
|
|
33
|
+
}, d: "M0 0h119.878v120H0z" }),
|
|
34
|
+
React__namespace.createElement("path", { className: "sound-on_svg__b", d: "M59.785 30.516a3.946 3.946 0 0 0-2.449 1.1L38.972 49.982H24.526a3.785 3.785 0 0 0-.979.245 2.976 2.976 0 0 0-2.694 3.183v21.18a4.042 4.042 0 0 0 3.673 3.426h14.446l18.364 18.366a4.927 4.927 0 0 0 2.449 1.1 4.042 4.042 0 0 0 3.428-3.666V34.189a3.785 3.785 0 0 0-.245-.979 2.841 2.841 0 0 0-3.183-2.694ZM80.72 38.964a3.55 3.55 0 0 0 0 7.1c6.244 0 11.386 7.835 11.386 17.017S86.964 80.1 80.72 80.1a3.55 3.55 0 0 0 0 7.1c10.161 0 18.487-10.9 18.487-24.118S90.882 38.964 80.72 38.964Z" }),
|
|
35
|
+
React__namespace.createElement("path", { className: "sound-on_svg__b", d: "M83.414 63.082a11.5 11.5 0 0 0-11.509-11.508 3.55 3.55 0 0 0 0 7.1 4.408 4.408 0 0 1 0 8.815 3.55 3.55 0 0 0 0 7.1 11.654 11.654 0 0 0 11.509-11.507Z" }),
|
|
36
|
+
React__namespace.createElement("path", { className: "sound-on_svg__c", d: "M59.785 26.516a3.946 3.946 0 0 0-2.449 1.1L38.972 45.982H24.526a3.785 3.785 0 0 0-.979.245 2.976 2.976 0 0 0-2.694 3.183v21.18a4.042 4.042 0 0 0 3.673 3.426h14.446l18.364 18.366a4.927 4.927 0 0 0 2.449 1.1 4.042 4.042 0 0 0 3.428-3.666V30.189a3.785 3.785 0 0 0-.245-.979 2.841 2.841 0 0 0-3.183-2.694ZM80.72 34.964a3.55 3.55 0 0 0 0 7.1c6.244 0 11.386 7.835 11.386 17.017S86.964 76.1 80.72 76.1a3.55 3.55 0 0 0 0 7.1c10.161 0 18.487-10.9 18.487-24.118S90.882 34.964 80.72 34.964Z" }),
|
|
37
|
+
React__namespace.createElement("path", { className: "sound-on_svg__c", d: "M83.414 59.082a11.5 11.5 0 0 0-11.509-11.508 3.55 3.55 0 0 0 0 7.1 4.408 4.408 0 0 1 0 8.815 3.55 3.55 0 0 0 0 7.1 11.654 11.654 0 0 0 11.509-11.507Z" }),
|
|
38
|
+
React__namespace.createElement("path", { className: "sound-on_svg__d", d: "M59.785 22.516a3.946 3.946 0 0 0-2.449 1.1L38.972 41.982H24.526a3.785 3.785 0 0 0-.979.245 2.976 2.976 0 0 0-2.694 3.183v21.18a4.042 4.042 0 0 0 3.673 3.426h14.446l18.364 18.366a4.927 4.927 0 0 0 2.449 1.1 4.042 4.042 0 0 0 3.428-3.666V26.189a3.785 3.785 0 0 0-.245-.979 2.841 2.841 0 0 0-3.183-2.694ZM80.72 30.964a3.55 3.55 0 0 0 0 7.1c6.244 0 11.386 7.835 11.386 17.017S86.964 72.1 80.72 72.1a3.55 3.55 0 0 0 0 7.1c10.161 0 18.487-10.9 18.487-24.118S90.882 30.964 80.72 30.964Z" }),
|
|
39
|
+
React__namespace.createElement("path", { className: "sound-on_svg__d", d: "M83.414 55.082a11.5 11.5 0 0 0-11.509-11.508 3.55 3.55 0 0 0 0 7.1 4.408 4.408 0 0 1 0 8.815 3.55 3.55 0 0 0 0 7.1 11.654 11.654 0 0 0 11.509-11.507Z" }))); };
|
|
40
|
+
|
|
41
|
+
module.exports = SvgSoundOn;
|
|
42
|
+
//# sourceMappingURL=SoundOn.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SoundOn.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,49 @@
|
|
|
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 SvgStarWriting = 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, ".star-writing_svg__b{fill:rgba(0,0,0,.3)}")),
|
|
31
|
+
React__namespace.createElement("path", { style: {
|
|
32
|
+
fill: "none",
|
|
33
|
+
}, d: "M0 0h120v120H0z" }),
|
|
34
|
+
React__namespace.createElement("path", { className: "star-writing_svg__b", d: "M102.728 44.91 74.22 40.176l-14.078-28.83-14.324 28.71-28.545 4.493v6.161l9.525 7.3 22.934-3.234 10.337-20.728 10.165 20.813 22.911 3.431 9.583-7.224ZM89.839 102.444l-.2-.136.3.182-7.036-40.443-6.417 6.185v6.161l2.936 16.751-19.573-14.182-19.8 14.749 3.271-17.454v-6.161l-6.351-6.249-7.387 40.393.219-.133-.219.337v5.957l.219-.133-.219.337h7.037l23-15.4h.176l23.007 15.4h7.043l-.2-.136.3.182Z" }),
|
|
35
|
+
React__namespace.createElement("path", { d: "m-476.7 567.154-28.508-4.734-14.078-28.83-14.324 28.71-28.545 4.493v6.161l9.525 7.3 22.934-3.234 10.337-20.728 10.165 20.813 22.911 3.431 9.583-7.224Z", style: {
|
|
36
|
+
fill: "#00aaa5",
|
|
37
|
+
}, transform: "translate(579.428 -529.244)" }),
|
|
38
|
+
React__namespace.createElement("path", { d: "m-486.284 574.378 9.583-7.224-28.508-4.734-14.078-28.83-14.323 28.71-28.545 4.493 9.525 7.3 22.934-3.234 10.337-20.728 10.165 20.813Z", style: {
|
|
39
|
+
fill: "#0ff",
|
|
40
|
+
}, transform: "translate(579.428 -529.244)" }),
|
|
41
|
+
React__namespace.createElement("path", { d: "m-489.589 624.688-.2-.136.3.182-7.036-40.443-6.417 6.185v6.161l2.936 16.751-19.573-14.182-19.8 14.749 3.271-17.454v-6.161l-6.351-6.249-7.387 40.393.219-.133-.219.337v5.957l.219-.133-.219.337h7.037l23-15.4h.176l23.007 15.4h7.043l-.2-.136.3.182Z", style: {
|
|
42
|
+
fill: "#c6c6c6",
|
|
43
|
+
}, transform: "translate(579.428 -529.244)" }),
|
|
44
|
+
React__namespace.createElement("path", { d: "m-489.49 624.734-7.036-40.443-6.417 6.185 4.173 23.808-20.81-15.078-21.146 15.748 4.613-24.615-6.351-6.249-7.387 40.393.219-.133-.219.337h7.037l23-15.4h.176l23.007 15.4h7.043l-.2-.136Z", style: {
|
|
45
|
+
fill: "#fff",
|
|
46
|
+
}, transform: "translate(579.428 -529.244)" }))); };
|
|
47
|
+
|
|
48
|
+
module.exports = SvgStarWriting;
|
|
49
|
+
//# sourceMappingURL=StarWriting.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StarWriting.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,47 @@
|
|
|
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 SvgTask = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ "data-name": "Icon - Summary", xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 120" }, props),
|
|
29
|
+
React__namespace.createElement("g", { "data-name": "Group 1552" },
|
|
30
|
+
React__namespace.createElement("path", { "data-name": "Path 1610", d: "m102.03 17.555-.164-.011c-.018-5.3-.241-8.46-.241-8.46L47.753 5.239C39.1 44.531 12.36 81.062 12.36 81.062l-4.173 8.686c34.406 17.122 70.011 25.249 70.011 25.249 28.189-36.205 23.832-97.442 23.832-97.442Z", opacity: 0.3 }),
|
|
31
|
+
React__namespace.createElement("path", { "data-name": "Path 1611", d: "m102.595 17.661-.166-.018c.239-4.886.166-7.811.166-7.811L48.257 3.91C37.596 39.756 4.118 72.256 4.118 72.256v7.828c33.993 17.306 69.634 26.371 69.634 26.371 30.283-32.139 28.843-88.794 28.843-88.794Z", fill: "#432918" }),
|
|
32
|
+
React__namespace.createElement("path", { "data-name": "Path 1612", d: "M4.119 72.255s33.478-32.5 44.139-68.346l54.338 5.922s1.442 56.655-28.843 88.794c-.001 0-35.642-9.065-69.634-26.37Z", fill: "#683d13" }),
|
|
33
|
+
React__namespace.createElement("path", { "data-name": "Path 1613", d: "M13.926 72.236s33.993-40.792 32.139-56.089l48.208.927s7.138 31.489-22.375 76.607c0 0-37.732-9.084-57.972-21.445Z", fill: "#432918" }),
|
|
34
|
+
React__namespace.createElement("path", { "data-name": "Path 1614", d: "M12.36 68.495s35.692-40.637 33.839-55.933l48.208.927s5.769 30.748-23.743 75.866c-.001 0-38.063-8.498-58.304-20.86Z", fill: "#d9d9d9" }),
|
|
35
|
+
React__namespace.createElement("path", { "data-name": "Path 1615", d: "M8.96 62.161s39.092-35.445 37.238-49.6l48.207.858c.419.222 2.724 26.691-24.258 70.219 0 0-40.946-10.04-61.187-21.477Z", fill: "#edecec" }),
|
|
36
|
+
React__namespace.createElement("path", { "data-name": "Path 1616", d: "M42.026 4.527c16.07 5.716 52.38 8.961 52.38 8.961-6.644 37.856-26.422 64.123-26.422 64.123-32.757-6.334-62.579-23.64-62.579-23.64s18.851-13.6 27.041-28.894 9.58-20.55 9.58-20.55Z", fill: "#fff" }),
|
|
37
|
+
React__namespace.createElement("path", { "data-name": "Path 1617", d: "M33.064 36.511s-10.2 15.605 6.49 23.331 35.229-8.962 33.375-19.623-8.653-12.515-12.979-13.752-18.54-1.081-26.886 10.044Z", fill: "#8cbf44" }),
|
|
38
|
+
React__namespace.createElement("path", { "data-name": "Path 1216", d: "m64.592 39.241-1.715-3.037a1.707 1.707 0 0 0-1.062-.823 1.763 1.763 0 0 0-1.287.209l-6.382 3.871-6.047 3.6-1.989 1.207-3.347-6.053a1.684 1.684 0 0 0-1.02-.813 1.706 1.706 0 0 0-1.328.2l-2.982 1.808a1.774 1.774 0 0 0-.794 1.019 1.9 1.9 0 0 0 .171 1.363l5.987 10.6a1.551 1.551 0 0 0 1.062.822 1.335 1.335 0 0 0 1.287-.208l6.382-3.872 5.953-3.575 6.383-3.872a1.9 1.9 0 0 0 .816-1.1 1.468 1.468 0 0 0-.088-1.346Z", fill: "#fff" }),
|
|
39
|
+
React__namespace.createElement("path", { "data-name": "Path 1618", d: "m68.192 25.55-2.575-6.416s-.454-.616-1.58-.059a2.072 2.072 0 0 0-1.233 1.452l-1.8 4.859c-2.315.422-4.568 1.4-5.355 3.508-1.58 4.234 4.211 6.164 6.1 6.407s11.212.268 11.023-4.552c-.129-3.267-2.843-4.648-4.58-5.199Z", fill: "#1d1e1c", opacity: 0.22 }),
|
|
40
|
+
React__namespace.createElement("path", { "data-name": "Path 1619", d: "m56.241 13.798 6.335 5.871a1.721 1.721 0 0 0 1.854.618 1.5 1.5 0 0 0 1.236-1.391L63.657 7.925Z", fill: "#cc6a1a" }),
|
|
41
|
+
React__namespace.createElement("path", { "data-name": "Path 1620", d: "M54.851.664a8.448 8.448 0 0 0-5.409 8.653c.31 6.8 9.58 5.408 11.435 4.79s7.417-4.172 5.408-9.889S56.864.046 54.851.664Z", fill: "#f18c41" }),
|
|
42
|
+
React__namespace.createElement("path", { "data-name": "Path 1621", d: "M58.376 5.592s2.914-1.51 2.084-3.843-5.712-.449-6.655.046-3.608 2.578-1.965 4.276 5.508.041 6.536-.479Z", fill: "#f7b283" }),
|
|
43
|
+
React__namespace.createElement("path", { fill: "none", d: "M10.682 52.113 40.906 3.889l48.225 30.224-30.225 48.224z" })),
|
|
44
|
+
React__namespace.createElement("path", { "data-name": "frame", fill: "none", d: "M0 0h120v120H0z" }))); };
|
|
45
|
+
|
|
46
|
+
module.exports = SvgTask;
|
|
47
|
+
//# sourceMappingURL=Task.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Task.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|