cd-aichat 1.0.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/README.md +188 -0
- package/dist/ailogo.png +0 -0
- package/dist/cd-aichat.css +1 -0
- package/dist/cd-aichat.es.js +32223 -0
- package/dist/cd-aichat.umd.js +279 -0
- package/dist/index.css +1 -0
- package/package.json +61 -0
- package/src/ailogo.png +0 -0
- package/src/components/AiChat.test.js +538 -0
- package/src/components/AiChat.vue +2206 -0
- package/src/components/AiChatWidget.test.js +312 -0
- package/src/components/AiChatWidget.vue +963 -0
- package/src/components/BurnAfterReadDialog.test.js +121 -0
- package/src/components/BurnAfterReadDialog.vue +511 -0
- package/src/components/BurnAfterReadMessage.test.js +188 -0
- package/src/components/BurnAfterReadMessage.vue +193 -0
- package/src/components/BurnIndicator.test.js +101 -0
- package/src/components/BurnIndicator.vue +164 -0
- package/src/components/ChatWindow.vue +0 -0
- package/src/components/MentionList.vue +163 -0
- package/src/components/ResourceList.vue +194 -0
- package/src/components/RichTextEditor.vue +437 -0
- package/src/components/ScheduledSendDialog.vue +476 -0
- package/src/components/ScreenshotOverlay.vue +78 -0
- package/src/components/SendButtonGroup.test.js +174 -0
- package/src/components/SendButtonGroup.vue +166 -0
- package/src/components/UserDrawer.vue +0 -0
- package/src/components/screenshot/ScreenshotsBackground/getBoundsByPoints.ts +41 -0
- package/src/components/screenshot/ScreenshotsBackground/index.scss +27 -0
- package/src/components/screenshot/ScreenshotsBackground/index.tsx +145 -0
- package/src/components/screenshot/ScreenshotsButton/index.scss +29 -0
- package/src/components/screenshot/ScreenshotsButton/index.tsx +58 -0
- package/src/components/screenshot/ScreenshotsCanvas/getBoundsByPoints.ts +55 -0
- package/src/components/screenshot/ScreenshotsCanvas/getPoints.ts +60 -0
- package/src/components/screenshot/ScreenshotsCanvas/index.scss +84 -0
- package/src/components/screenshot/ScreenshotsCanvas/index.tsx +277 -0
- package/src/components/screenshot/ScreenshotsCanvas/isPointInDraw.ts +35 -0
- package/src/components/screenshot/ScreenshotsColor/index.scss +45 -0
- package/src/components/screenshot/ScreenshotsColor/index.tsx +39 -0
- package/src/components/screenshot/ScreenshotsContext.ts +56 -0
- package/src/components/screenshot/ScreenshotsMagnifier/index.scss +61 -0
- package/src/components/screenshot/ScreenshotsMagnifier/index.tsx +126 -0
- package/src/components/screenshot/ScreenshotsOperations/index.scss +25 -0
- package/src/components/screenshot/ScreenshotsOperations/index.tsx +118 -0
- package/src/components/screenshot/ScreenshotsOption/index.scss +50 -0
- package/src/components/screenshot/ScreenshotsOption/index.tsx +150 -0
- package/src/components/screenshot/ScreenshotsSize/index.scss +28 -0
- package/src/components/screenshot/ScreenshotsSize/index.tsx +41 -0
- package/src/components/screenshot/ScreenshotsSizeColor/index.scss +8 -0
- package/src/components/screenshot/ScreenshotsSizeColor/index.tsx +25 -0
- package/src/components/screenshot/ScreenshotsTextarea/calculateNodeSize.ts +117 -0
- package/src/components/screenshot/ScreenshotsTextarea/index.scss +19 -0
- package/src/components/screenshot/ScreenshotsTextarea/index.tsx +96 -0
- package/src/components/screenshot/composeImage.ts +57 -0
- package/src/components/screenshot/exports.ts +4 -0
- package/src/components/screenshot/hooks/useBounds.ts +35 -0
- package/src/components/screenshot/hooks/useCall.ts +17 -0
- package/src/components/screenshot/hooks/useCanvasContextRef.ts +8 -0
- package/src/components/screenshot/hooks/useCanvasMousedown.ts +13 -0
- package/src/components/screenshot/hooks/useCanvasMousemove.ts +13 -0
- package/src/components/screenshot/hooks/useCanvasMouseup.ts +13 -0
- package/src/components/screenshot/hooks/useCursor.ts +34 -0
- package/src/components/screenshot/hooks/useDispatcher.ts +8 -0
- package/src/components/screenshot/hooks/useDrawSelect.ts +16 -0
- package/src/components/screenshot/hooks/useEmiter.ts +61 -0
- package/src/components/screenshot/hooks/useHistory.ts +160 -0
- package/src/components/screenshot/hooks/useLang.ts +8 -0
- package/src/components/screenshot/hooks/useOperation.ts +37 -0
- package/src/components/screenshot/hooks/useReset.ts +26 -0
- package/src/components/screenshot/hooks/useStore.ts +8 -0
- package/src/components/screenshot/icons/iconfont.scss +88 -0
- package/src/components/screenshot/icons/iconfont.ttf +0 -0
- package/src/components/screenshot/icons/iconfont.woff +0 -0
- package/src/components/screenshot/icons/iconfont.woff2 +0 -0
- package/src/components/screenshot/index.tsx +169 -0
- package/src/components/screenshot/operations/Arrow/draw.ts +56 -0
- package/src/components/screenshot/operations/Arrow/index.tsx +193 -0
- package/src/components/screenshot/operations/Brush/draw.ts +45 -0
- package/src/components/screenshot/operations/Brush/index.tsx +169 -0
- package/src/components/screenshot/operations/Cancel/index.tsx +18 -0
- package/src/components/screenshot/operations/Ellipse/draw.ts +96 -0
- package/src/components/screenshot/operations/Ellipse/index.tsx +245 -0
- package/src/components/screenshot/operations/Mosaic/index.tsx +223 -0
- package/src/components/screenshot/operations/Ok/index.tsx +37 -0
- package/src/components/screenshot/operations/Pin/index.tsx +37 -0
- package/src/components/screenshot/operations/Rectangle/draw.ts +80 -0
- package/src/components/screenshot/operations/Rectangle/index.tsx +245 -0
- package/src/components/screenshot/operations/Redo/index.tsx +22 -0
- package/src/components/screenshot/operations/Save/index.tsx +37 -0
- package/src/components/screenshot/operations/Scan/index.tsx +46 -0
- package/src/components/screenshot/operations/Search/index.tsx +39 -0
- package/src/components/screenshot/operations/Text/index.tsx +307 -0
- package/src/components/screenshot/operations/Undo/index.tsx +22 -0
- package/src/components/screenshot/operations/index.ts +34 -0
- package/src/components/screenshot/operations/utils.ts +34 -0
- package/src/components/screenshot/screenshots.scss +13 -0
- package/src/components/screenshot/types.ts +53 -0
- package/src/components/screenshot/useGetLoadedImage.ts +29 -0
- package/src/components/screenshot/var.scss +107 -0
- package/src/components/screenshot/zh_CN.ts +37 -0
- package/src/emoji/100.gif +0 -0
- package/src/emoji/101.gif +0 -0
- package/src/emoji/102.gif +0 -0
- package/src/emoji/103.gif +0 -0
- package/src/emoji/104.gif +0 -0
- package/src/emoji/105.gif +0 -0
- package/src/emoji/106.gif +0 -0
- package/src/emoji/107.gif +0 -0
- package/src/emoji/108.gif +0 -0
- package/src/emoji/109.gif +0 -0
- package/src/emoji/110.gif +0 -0
- package/src/emoji/111.gif +0 -0
- package/src/emoji/112.gif +0 -0
- package/src/emoji/113.gif +0 -0
- package/src/emoji/114.gif +0 -0
- package/src/emoji/115.gif +0 -0
- package/src/emoji/116.gif +0 -0
- package/src/emoji/117.gif +0 -0
- package/src/emoji/118.gif +0 -0
- package/src/emoji/119.gif +0 -0
- package/src/emoji/120.gif +0 -0
- package/src/emoji/121.gif +0 -0
- package/src/emoji/122.gif +0 -0
- package/src/emoji/123.gif +0 -0
- package/src/emoji/124.gif +0 -0
- package/src/emoji/125.gif +0 -0
- package/src/emoji/126.gif +0 -0
- package/src/emoji/127.gif +0 -0
- package/src/emoji/128.gif +0 -0
- package/src/emoji/129.gif +0 -0
- package/src/emoji/130.gif +0 -0
- package/src/emoji/131.gif +0 -0
- package/src/emoji/132.gif +0 -0
- package/src/emoji/133.gif +0 -0
- package/src/emoji/134.gif +0 -0
- package/src/emoji/135.gif +0 -0
- package/src/emoji/136.gif +0 -0
- package/src/emoji/137.gif +0 -0
- package/src/emoji/138.gif +0 -0
- package/src/emoji/139.gif +0 -0
- package/src/emoji/140.gif +0 -0
- package/src/emoji/141.gif +0 -0
- package/src/emoji/142.gif +0 -0
- package/src/emoji/143.gif +0 -0
- package/src/emoji/144.gif +0 -0
- package/src/emoji/145.gif +0 -0
- package/src/emoji/146.gif +0 -0
- package/src/emoji/147.gif +0 -0
- package/src/emoji/148.gif +0 -0
- package/src/emoji/149.gif +0 -0
- package/src/emoji/150.gif +0 -0
- package/src/emoji/151.gif +0 -0
- package/src/emoji/152.gif +0 -0
- package/src/emoji/153.gif +0 -0
- package/src/emoji/154.gif +0 -0
- package/src/emoji/155.gif +0 -0
- package/src/emoji/156.gif +0 -0
- package/src/emoji/157.gif +0 -0
- package/src/emoji/158.gif +0 -0
- package/src/emoji/159.gif +0 -0
- package/src/emoji/160.gif +0 -0
- package/src/emoji/161.gif +0 -0
- package/src/emoji/162.gif +0 -0
- package/src/emoji/163.gif +0 -0
- package/src/emoji/164.gif +0 -0
- package/src/emoji/165.gif +0 -0
- package/src/emoji/166.gif +0 -0
- package/src/emoji/167.gif +0 -0
- package/src/emoji/168.gif +0 -0
- package/src/emoji/169.gif +0 -0
- package/src/emoji/170.gif +0 -0
- package/src/emoji/171.gif +0 -0
- package/src/emoji/172.gif +0 -0
- package/src/emoji/173.gif +0 -0
- package/src/emoji/174.gif +0 -0
- package/src/emoji/175.gif +0 -0
- package/src/emoji/176.gif +0 -0
- package/src/emoji/177.gif +0 -0
- package/src/emoji/178.gif +0 -0
- package/src/emoji/179.gif +0 -0
- package/src/emoji/180.gif +0 -0
- package/src/emoji/181.gif +0 -0
- package/src/emoji/182.gif +0 -0
- package/src/emoji/183.gif +0 -0
- package/src/emoji/184.gif +0 -0
- package/src/emoji/185.gif +0 -0
- package/src/emoji/186.gif +0 -0
- package/src/emoji/187.gif +0 -0
- package/src/emoji/188.gif +0 -0
- package/src/emoji/189.gif +0 -0
- package/src/emoji/190.gif +0 -0
- package/src/emoji/191.gif +0 -0
- package/src/emoji/192.gif +0 -0
- package/src/emoji/193.gif +0 -0
- package/src/emoji/194.gif +0 -0
- package/src/emoji/195.gif +0 -0
- package/src/emoji/196.gif +0 -0
- package/src/emoji/197.gif +0 -0
- package/src/emoji/198.gif +0 -0
- package/src/emoji/199.gif +0 -0
- package/src/emoji/200.png +0 -0
- package/src/emoji/201.png +0 -0
- package/src/emoji/202.png +0 -0
- package/src/emoji/203.png +0 -0
- package/src/emoji/204.png +0 -0
- package/src/emoji/205.png +0 -0
- package/src/emoji/206.png +0 -0
- package/src/emoji/207.png +0 -0
- package/src/emoji/208.png +0 -0
- package/src/emoji/209.png +0 -0
- package/src/emoji/210.png +0 -0
- package/src/emoji/211.png +0 -0
- package/src/emoji/212.png +0 -0
- package/src/emoji/213.png +0 -0
- package/src/emoji/214.png +0 -0
- package/src/emoji/215.png +0 -0
- package/src/emoji/216.png +0 -0
- package/src/emoji/217.png +0 -0
- package/src/emoji/218.png +0 -0
- package/src/emoji/219.png +0 -0
- package/src/emoji2/101--Streamline-The-Team.png +0 -0
- package/src/emoji2/128--Streamline-The-Team.png +0 -0
- package/src/emoji2/134--Streamline-The-Team.png +0 -0
- package/src/emoji2/173--Streamline-The-Team.png +0 -0
- package/src/emoji2/Airplane--Streamline-Emoji.svg +24 -0
- package/src/emoji2/Alien--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Amazed-Face--Streamline-Emoji.svg +16 -0
- package/src/emoji2/Amusing-Face--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Anguished-Face--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Anxious-Face--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Astonished-Face--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Backhand-Index-Pointing-Down-1--Streamline-Emoji.svg +12 -0
- package/src/emoji2/Backhand-Index-Pointing-Left-1--Streamline-Emoji.svg +13 -0
- package/src/emoji2/Backhand-Index-Pointing-Right-1--Streamline-Emoji.svg +13 -0
- package/src/emoji2/Backhand-Index-Pointing-Up-1--Streamline-Emoji.svg +14 -0
- package/src/emoji2/Bar-Chart--Streamline-Emoji.svg +22 -0
- package/src/emoji2/Beaming-Face-With-Smiling-Eyes--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Boy-1--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Boy-2--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Boy-3--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Broken-Heart--Streamline-Emoji.svg +12 -0
- package/src/emoji2/Clapping-Hands-1--Streamline-Emoji.svg +23 -0
- package/src/emoji2/Clinking-Glasses-2--Streamline-Emoji.svg +43 -0
- package/src/emoji2/Confounded-Face--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Confused-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Construction-Worker--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Couple-With-Heart-Woman-Man-1--Streamline-Emoji.svg +40 -0
- package/src/emoji2/Couple-With-Heart-Woman-Man-2--Streamline-Emoji.svg +40 -0
- package/src/emoji2/Cowboy-Hat-Face--Streamline-Emoji.svg +22 -0
- package/src/emoji2/Crazy-Face--Streamline-Emoji.svg +25 -0
- package/src/emoji2/Crossed-Fingers-1--Streamline-Emoji.svg +25 -0
- package/src/emoji2/Crown--Streamline-Emoji.svg +35 -0
- package/src/emoji2/Crying-Face--Streamline-Emoji.svg +26 -0
- package/src/emoji2/Delivery-Truck--Streamline-Emoji.svg +31 -0
- package/src/emoji2/Determined-Face--Streamline-Emoji.svg +25 -0
- package/src/emoji2/Disappointed-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Dizzy-Face--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Downcast-Face-With-Sweat--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Drooling-Face-1--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Drooling-Face-2--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Ear--Streamline-Emoji.svg +14 -0
- package/src/emoji2/Exclamation-Mark--Streamline-Emoji.svg +12 -0
- package/src/emoji2/Exploding-Head--Streamline-Emoji.svg +24 -0
- package/src/emoji2/Expressionless-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Face-Blowing-A-Kiss--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Face-Savoring-Food--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Face-Screaming-In-Fear--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Face-Vomiting--Streamline-Emoji.svg +28 -0
- package/src/emoji2/Face-With-Head-Bandage--Streamline-Emoji.svg +25 -0
- package/src/emoji2/Face-With-Medical-Mask--Streamline-Emoji.svg +23 -0
- package/src/emoji2/Face-With-Monocle--Streamline-Emoji.svg +26 -0
- package/src/emoji2/Face-With-Raised-Eyebrow--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Face-With-Rolling-Eyes--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Face-With-Steam-From-Nose--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Face-With-Symbols-On-Mouth--Streamline-Emoji.svg +22 -0
- package/src/emoji2/Face-With-Tears-Of-Joy--Streamline-Emoji.svg +34 -0
- package/src/emoji2/Face-With-Thermometer--Streamline-Emoji.svg +31 -0
- package/src/emoji2/Face-With-Tongue--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Face-Without-Mouth--Streamline-Emoji.svg +14 -0
- package/src/emoji2/Fearful-Face--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Flexed-Biceps-1--Streamline-Emoji.svg +13 -0
- package/src/emoji2/Flushed-Face--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Folded-Hands-1--Streamline-Emoji.svg +29 -0
- package/src/emoji2/Frowning-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Fuel-Pump--Streamline-Emoji.svg +30 -0
- package/src/emoji2/Girl-1--Streamline-Emoji.svg +23 -0
- package/src/emoji2/Glasses-1--Streamline-Emoji.svg +27 -0
- package/src/emoji2/Grimacing-Face--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Grinning-Cat-Face--Streamline-Emoji.svg +32 -0
- package/src/emoji2/Grinning-Face--Streamline-Emoji.svg +16 -0
- package/src/emoji2/Grinning-Face-With-Sweat--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Grinning-Squinting-Face--Streamline-Emoji.svg +16 -0
- package/src/emoji2/Hand-With-Fingers-Splayed-1--Streamline-Emoji.svg +14 -0
- package/src/emoji2/Heart-Suit--Streamline-Emoji.svg +9 -0
- package/src/emoji2/Hushed-Face-1--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Hushed-Face-2--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Index-Pointing-Up-1--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Kissing-Face-With-Closed-Eyes--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Loudly-Crying-Face--Streamline-Emoji.svg +16 -0
- package/src/emoji2/Lying-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Man-1--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Man-Facepalming-1--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Man-Gesturing-No-1--Streamline-Emoji.svg +34 -0
- package/src/emoji2/Man-Gesturing-Ok-1--Streamline-Emoji.svg +25 -0
- package/src/emoji2/Man-Health-Worker-1--Streamline-Emoji.svg +41 -0
- package/src/emoji2/Man-Raising-Hand-1--Streamline-Emoji.svg +26 -0
- package/src/emoji2/Man-Shrugging-1--Streamline-Emoji.svg +31 -0
- package/src/emoji2/Money-Mouth-Face-2--Streamline-Emoji.svg +30 -0
- package/src/emoji2/Mouth--Streamline-Emoji.svg +12 -0
- package/src/emoji2/Nauseated-Face-2--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Neutral-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Ok-Hand-1--Streamline-Emoji.svg +14 -0
- package/src/emoji2/Old-Man-1--Streamline-Emoji.svg +27 -0
- package/src/emoji2/Old-Woman-1--Streamline-Emoji.svg +23 -0
- package/src/emoji2/Oncoming-Fist-1--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Person-Wearing-Turban-2--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Pile-Of-Poo--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Police-Car-Light--Streamline-Emoji.svg +26 -0
- package/src/emoji2/Rocket--Streamline-Emoji.svg +32 -0
- package/src/emoji2/Sailboat--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Shaved-Ice--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Shortcake-2--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Shushing-Face--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Sign-Of-The-Horns-1--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Sleeping-Face--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Slightly-Smiling-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Smiling-Face-With-Halo--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Smiling-Face-With-Heart-Eyes--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Smirking-Face--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Sun-With-Face--Streamline-Emoji.svg +24 -0
- package/src/emoji2/Thumbs-Down-1--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Thumbs-Up-1--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Winking-Face--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Woman-Gesturing-No-1--Streamline-Emoji.svg +34 -0
- package/src/emoji2/Woman-Gesturing-Ok-2--Streamline-Emoji.svg +25 -0
- package/src/emoji2/Woman-Raising-Hand-1--Streamline-Emoji.svg +26 -0
- package/src/emoji2/Womans-Sandal--Streamline-Emoji.svg +13 -0
- package/src/emoji2/Worried-Face--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Writing-Hand-1--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Zipper-Mouth-Face--Streamline-Emoji.svg +21 -0
- package/src/index.js +19 -0
- package/src/services/burn-after-read-service.js +313 -0
- package/src/services/burn-after-read-service.test.js +325 -0
- package/src/services/dify-api.js +338 -0
- package/src/services/dify-api.test.js +376 -0
- package/src/services/scheduled-send-service.js +311 -0
- package/src/services/scheduled-send-service.test.js +317 -0
- package/src/styles/index.css +2368 -0
- package/src/utils/emoji.js +125 -0
- package/src/utils/emojiData.js +267 -0
- package/src/utils/eventEmitter.js +114 -0
- package/src/utils/state.js +224 -0
- package/src/utils/state.test.js +198 -0
- package/src/utils/storage.js +122 -0
- package/src/utils/storage.test.js +162 -0
- package/src/utils/validation.js +249 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Fuel-Pump--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Fuel Pump Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M52.84 56.44c-4.973333333333333 0 -4.973333333333333 -5.666666666666666 -4.973333333333333 -10.666666666666666 0 -6.173333333333333 -2.6666666666666665 -7.8133333333333335 -4.266666666666667 -7.8133333333333335a1.4266666666666667 1.4266666666666667 0 0 1 0 -2.8533333333333335c2.6666666666666665 0 7.1066666666666665 2.253333333333333 7.1066666666666665 10.666666666666666 0 6.066666666666666 0.48 7.826666666666666 2.1333333333333333 7.826666666666666s2.1333333333333333 -2 2.1333333333333333 -7.1066666666666665V30.839999999999996a1.4266666666666667 1.4266666666666667 0 0 1 2.8533333333333335 0v15.653333333333332c0 3.4799999999999995 0 9.946666666666665 -4.986666666666666 9.946666666666665Z" fill="#87898c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
6
|
+
<path d="m51.63999999999999 16.21333333333333 2.533333333333333 -1.5466666666666664a1.3333333333333333 1.3333333333333333 0 0 1 0.5733333333333333 -0.19999999999999998 13.066666666666666 13.066666666666666 0 0 0 -4.946666666666666 -5.640000000000001l-1.2266666666666666 -0.7599999999999999v4.266666666666667a9.6 9.6 0 0 1 3.0666666666666664 3.88Z" fill="#daedf7" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
7
|
+
<path d="M46.44 25.866666666666664h7.1066666666666665v2.84h-7.1066666666666665z" fill="#87898c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
8
|
+
<path d="m8.76 2.4 39.82666666666667 0 0 28.439999999999998 -39.82666666666667 0Z" fill="#daedf7" stroke-width="1"></path>
|
|
9
|
+
<path d="M44.30666666666666 2.4H13.026666666666666A4.266666666666667 4.266666666666667 0 0 0 8.76 6.666666666666666v4.266666666666667A4.266666666666667 4.266666666666667 0 0 1 13.026666666666666 6.666666666666666h31.28a4.266666666666667 4.266666666666667 0 0 1 4.266666666666667 4.266666666666667V6.666666666666666a4.266666666666667 4.266666666666667 0 0 0 -4.266666666666667 -4.266666666666667Z" fill="#ffffff" stroke-width="1"></path>
|
|
10
|
+
<path d="m8.76 2.4 39.82666666666667 0 0 28.439999999999998 -39.82666666666667 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M5.199999999999999 60.53333333333333a23.46666666666667 2.1333333333333333 0 1 0 46.93333333333334 0 23.46666666666667 2.1333333333333333 0 1 0 -46.93333333333334 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
12
|
+
<path d="M13.026666666666666 13.066666666666666h31.28l0 0v12.093333333333334a1.4266666666666667 1.4266666666666667 0 0 1 -1.4266666666666667 1.4266666666666667H14.44a1.4266666666666667 1.4266666666666667 0 0 1 -1.4266666666666667 -1.4266666666666667V13.066666666666666l0.013333333333333332 0Z" fill="#ff6242" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="m42.89333333333333 56.44 -28.453333333333333 0 -0.7066666666666667 -25.599999999999998 29.866666666666664 0 -0.7066666666666667 25.599999999999998z" fill="#ff6242" stroke-width="1"></path>
|
|
14
|
+
<path d="m43.50666666666667 34.4 0.09333333333333334 -3.5599999999999996 -29.866666666666664 0 0.09333333333333334 3.5599999999999996 29.68 0z" fill="#e04122" stroke-width="1"></path>
|
|
15
|
+
<path d="m42.89333333333333 56.44 -28.453333333333333 0 -0.7066666666666667 -25.599999999999998 29.866666666666664 0 -0.7066666666666667 25.599999999999998z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M14.44 6.666666666666666h28.453333333333333a1.4266666666666667 1.4266666666666667 0 0 1 1.4266666666666667 1.4266666666666667V13.066666666666666H13.026666666666666V8.093333333333334A1.4266666666666667 1.4266666666666667 0 0 1 14.44 6.666666666666666Z" fill="#ffffff" stroke-width="1"></path>
|
|
17
|
+
<path d="M42.89333333333333 6.666666666666666H14.44a1.4133333333333333 1.4133333333333333 0 0 0 -1.4133333333333333 1.4266666666666667v3.1999999999999997a1.4133333333333333 1.4133333333333333 0 0 1 1.4133333333333333 -1.4266666666666667h28.453333333333333a1.4133333333333333 1.4133333333333333 0 0 1 1.4133333333333333 1.4266666666666667v-3.1999999999999997A1.4133333333333333 1.4133333333333333 0 0 0 42.89333333333333 6.666666666666666Z" fill="#e0e0e0" stroke-width="1"></path>
|
|
18
|
+
<path d="M14.44 6.666666666666666h28.453333333333333a1.4266666666666667 1.4266666666666667 0 0 1 1.4266666666666667 1.4266666666666667V13.066666666666666l0 0H13.026666666666666l0 0V8.093333333333334A1.4266666666666667 1.4266666666666667 0 0 1 14.44 6.666666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
<path d="M14.44 56.44h28.453333333333333a1.4266666666666667 1.4266666666666667 0 0 1 1.4266666666666667 1.4266666666666667V60l0 0H13.026666666666666l0 0v-2.1333333333333333a1.4266666666666667 1.4266666666666667 0 0 1 1.4133333333333333 -1.4266666666666667Z" fill="#87898c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
<path d="m30.093333333333334 16.626666666666665 10.666666666666666 0 0 4.973333333333333 -10.666666666666666 0Z" fill="#9ceb60" stroke-width="1"></path>
|
|
21
|
+
<path d="M30.093333333333334 18.04v1.0666666666666667h10.666666666666666v-1.0666666666666667a1.4133333333333333 1.4133333333333333 0 0 0 -1.4266666666666667 -1.4133333333333333h-7.826666666666666a1.4 1.4 0 0 0 -1.4133333333333333 1.4133333333333333Z" fill="#6dd627" stroke-width="1"></path>
|
|
22
|
+
<path d="m30.093333333333334 16.626666666666665 10.666666666666666 0 0 4.973333333333333 -10.666666666666666 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
23
|
+
<path d="m57.10666666666666 18.04 -0.8533333333333333 -2.5866666666666664a1.4266666666666667 1.4266666666666667 0 0 0 -2.08 -0.7866666666666666l-5.6 3.3466666666666662v4.986666666666666l2.533333333333333 -1.48a1.4133333333333333 1.4133333333333333 0 0 1 2.0933333333333333 0.9066666666666667 10.879999999999999 10.879999999999999 0 0 1 0.36 2.6666666666666665v4.266666666666667a1.4 1.4 0 0 0 1.4133333333333333 1.4133333333333333h2.1333333333333333a1.4133333333333333 1.4133333333333333 0 0 0 1.4266666666666667 -1.4133333333333333V25.866666666666664a22.106666666666662 22.106666666666662 0 0 0 -1.4266666666666667 -7.826666666666666Z" fill="#ff6242" stroke-width="1"></path>
|
|
24
|
+
<path d="m57.10666666666666 18.04 -0.8533333333333333 -2.5866666666666664a1.4266666666666667 1.4266666666666667 0 0 0 -2.08 -0.7866666666666666l-5.6 3.3466666666666662v3.1999999999999997l5.6 -3.3466666666666662a1.4266666666666667 1.4266666666666667 0 0 1 2.08 0.7733333333333332l0.8533333333333333 2.5733333333333333a22.106666666666662 22.106666666666662 0 0 1 1.4266666666666667 7.853333333333333v-3.1999999999999997a22.106666666666662 22.106666666666662 0 0 0 -1.4266666666666667 -7.826666666666666Z" fill="#ff866e" stroke-width="1"></path>
|
|
25
|
+
<path d="m57.10666666666666 18.04 -0.8533333333333333 -2.5866666666666664a1.4266666666666667 1.4266666666666667 0 0 0 -2.08 -0.7866666666666666l-5.6 3.3466666666666662v4.986666666666666l2.533333333333333 -1.48a1.4133333333333333 1.4133333333333333 0 0 1 2.0933333333333333 0.9066666666666667 10.879999999999999 10.879999999999999 0 0 1 0.36 2.6666666666666665v4.266666666666667a1.4 1.4 0 0 0 1.4133333333333333 1.4133333333333333h2.1333333333333333a1.4133333333333333 1.4133333333333333 0 0 0 1.4266666666666667 -1.4133333333333333V25.866666666666664a22.106666666666662 22.106666666666662 0 0 0 -1.4266666666666667 -7.826666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
26
|
+
<path d="M20.133333333333333 44.36a8.533333333333333 8.533333333333333 0 1 0 17.066666666666666 0 8.533333333333333 8.533333333333333 0 1 0 -17.066666666666666 0Z" fill="#f0f0f0" stroke-width="1"></path>
|
|
27
|
+
<path d="M28.666666666666664 38.346666666666664a8.533333333333333 8.533333333333333 0 0 1 8.426666666666666 7.266666666666667 7.8133333333333335 7.8133333333333335 0 0 0 0.10666666666666666 -1.2533333333333332 8.533333333333333 8.533333333333333 0 1 0 -17.066666666666666 0 7.8133333333333335 7.8133333333333335 0 0 0 0.10666666666666666 1.2533333333333332 8.533333333333333 8.533333333333333 0 0 1 8.426666666666666 -7.266666666666667Z" fill="#ffffff" stroke-width="1"></path>
|
|
28
|
+
<path d="M20.133333333333333 44.36a8.533333333333333 8.533333333333333 0 1 0 17.066666666666666 0 8.533333333333333 8.533333333333333 0 1 0 -17.066666666666666 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
29
|
+
<path d="m31.493333333333332 44.72 -1.9866666666666666 -4.119999999999999a0.9466666666666665 0.9466666666666665 0 0 0 -1.68 0l-1.9866666666666666 4.119999999999999a2.88 2.88 0 0 0 2.8266666666666667 4 2.88 2.88 0 0 0 2.8266666666666667 -4Z" fill="#87898c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Girl-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Girl 1 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M15.599999999999998 38.10666666666666a7.253333333333334 7.253333333333334 0 0 0 -6.173333333333333 2.3066666666666666C7.466666666666666 42.666666666666664 6.853333333333333 46.01333333333333 5.333333333333333 47.266666666666666a1.0666666666666667 1.0666666666666667 0 0 0 0 1.6666666666666665c4 3.1333333333333333 8.386666666666667 3.16 11.44 0.31999999999999995 3.373333333333333 -3.1466666666666665 5.626666666666666 -9.173333333333332 -1.1733333333333333 -11.146666666666665Z" fill="#724f3d" stroke-width="1"></path>
|
|
6
|
+
<path d="M48.413333333333334 38.10666666666666A7.279999999999999 7.279999999999999 0 0 1 54.666666666666664 40.41333333333333c1.9466666666666665 2.293333333333333 2.5599999999999996 5.6 4 6.853333333333333a1.0666666666666667 1.0666666666666667 0 0 1 0 1.6666666666666665c-4 3.1333333333333333 -8.386666666666667 3.16 -11.426666666666666 0.31999999999999995 -3.36 -3.1466666666666665 -5.613333333333333 -9.173333333333332 1.1733333333333333 -11.146666666666665Z" fill="#724f3d" stroke-width="1"></path>
|
|
7
|
+
<path d="M5.333333333333333 48.93333333333334a12.08 12.08 0 0 0 1.3333333333333333 0.88 25.333333333333332 25.333333333333332 0 0 1 2.84 -5.133333333333333 7.253333333333334 7.253333333333334 0 0 1 6.173333333333333 -2.3066666666666666 5.986666666666666 5.986666666666666 0 0 1 4 2.813333333333333c1.0533333333333332 -2.8 0.4666666666666666 -5.799999999999999 -4 -7.079999999999999a7.253333333333334 7.253333333333334 0 0 0 -6.173333333333333 2.3066666666666666C7.466666666666666 42.666666666666664 6.853333333333333 46.01333333333333 5.333333333333333 47.266666666666666a1.0666666666666667 1.0666666666666667 0 0 0 0 1.6666666666666665Z" fill="#a86c4d" stroke-width="1"></path>
|
|
8
|
+
<path d="M48.413333333333334 42.373333333333335A7.279999999999999 7.279999999999999 0 0 1 54.666666666666664 44.67999999999999a24.613333333333333 24.613333333333333 0 0 1 2.8266666666666667 5.133333333333333 10.826666666666664 10.826666666666664 0 0 0 1.3333333333333333 -0.88 1.0666666666666667 1.0666666666666667 0 0 0 0 -1.6666666666666665c-1.5066666666666664 -1.2533333333333332 -2.12 -4.56 -4 -6.853333333333333a7.279999999999999 7.279999999999999 0 0 0 -6.186666666666666 -2.3066666666666666c-4.413333333333333 1.3333333333333333 -5.013333333333333 4.279999999999999 -4 7.079999999999999a5.946666666666666 5.946666666666666 0 0 1 3.7733333333333334 -2.813333333333333Z" fill="#a86c4d" stroke-width="1"></path>
|
|
9
|
+
<path d="M15.599999999999998 38.10666666666666a7.253333333333334 7.253333333333334 0 0 0 -6.173333333333333 2.3066666666666666C7.466666666666666 42.666666666666664 6.853333333333333 46.01333333333333 5.333333333333333 47.266666666666666a1.0666666666666667 1.0666666666666667 0 0 0 0 1.6666666666666665c4 3.1333333333333333 8.386666666666667 3.16 11.44 0.31999999999999995 3.373333333333333 -3.1466666666666665 5.626666666666666 -9.173333333333332 -1.1733333333333333 -11.146666666666665Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M48.413333333333334 38.10666666666666A7.279999999999999 7.279999999999999 0 0 1 54.666666666666664 40.41333333333333c1.9466666666666665 2.293333333333333 2.5599999999999996 5.6 4 6.853333333333333a1.0666666666666667 1.0666666666666667 0 0 1 0 1.6666666666666665c-4 3.1333333333333333 -8.386666666666667 3.16 -11.426666666666666 0.31999999999999995 -3.36 -3.1466666666666665 -5.613333333333333 -9.173333333333332 1.1733333333333333 -11.146666666666665Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M14 59.33333333333333a18 2 0 1 0 36 0 18 2 0 1 0 -36 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
12
|
+
<path d="M54.50666666666667 30.333333333333332a4.359999999999999 4.359999999999999 0 0 0 -3.733333333333333 -4.306666666666667C48.946666666666665 16.493333333333332 41.239999999999995 9.333333333333332 32 9.333333333333332S15.053333333333331 16.493333333333332 13.226666666666667 26.026666666666664a4.359999999999999 4.359999999999999 0 0 0 0 8.626666666666665C15.053333333333331 44.17333333333333 22.759999999999998 51.33333333333333 32 51.33333333333333S48.946666666666665 44.17333333333333 50.773333333333326 34.666666666666664a4.373333333333333 4.373333333333333 0 0 0 3.733333333333333 -4.333333333333333Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M20.733333333333334 29.199999999999996a1.5999999999999999 1.5999999999999999 0 1 0 1.5999999999999999 -1.5999999999999999 1.5999999999999999 1.5999999999999999 0 0 0 -1.5999999999999999 1.5999999999999999Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M43.266666666666666 29.199999999999996a1.5999999999999999 1.5999999999999999 0 1 1 -1.5999999999999999 -1.5999999999999999 1.5999999999999999 1.5999999999999999 0 0 1 1.5999999999999999 1.5999999999999999Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M26.119999999999997 38.93333333333333a0.9199999999999999 0.9199999999999999 0 0 0 -0.6933333333333334 0.31999999999999995 0.9066666666666667 0.9066666666666667 0 0 0 -0.21333333333333332 0.7333333333333334 6.88 6.88 0 0 0 13.573333333333332 0 0.9066666666666667 0.9066666666666667 0 0 0 -0.21333333333333332 -0.7333333333333334 0.9199999999999999 0.9199999999999999 0 0 0 -0.6933333333333334 -0.31999999999999995Z" fill="#ff6242" stroke-width="1"></path>
|
|
16
|
+
<path d="M32 41.76a8.386666666666667 8.386666666666667 0 0 0 -5.226666666666667 1.5999999999999999 6.946666666666666 6.946666666666666 0 0 0 10.453333333333333 0 8.386666666666667 8.386666666666667 0 0 0 -5.226666666666667 -1.5999999999999999Z" fill="#ffa694" stroke-width="1"></path>
|
|
17
|
+
<path d="M26.119999999999997 38.93333333333333a0.9199999999999999 0.9199999999999999 0 0 0 -0.6933333333333334 0.31999999999999995 0.9066666666666667 0.9066666666666667 0 0 0 -0.21333333333333332 0.7333333333333334 6.88 6.88 0 0 0 13.573333333333332 0 0.9066666666666667 0.9066666666666667 0 0 0 -0.21333333333333332 -0.7333333333333334 0.9199999999999999 0.9199999999999999 0 0 0 -0.6933333333333334 -0.31999999999999995Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
<path d="M17.613333333333333 36.013333333333335a2.0666666666666664 1.24 0 1 0 4.133333333333333 0 2.0666666666666664 1.24 0 1 0 -4.133333333333333 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
19
|
+
<path d="M42.25333333333333 36.013333333333335a2.0666666666666664 1.24 0 1 0 4.133333333333333 0 2.0666666666666664 1.24 0 1 0 -4.133333333333333 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
20
|
+
<path d="M32 16.346666666666664a20.906666666666666 20.906666666666666 0 0 0 17.333333333333332 9.64 10.893333333333333 10.893333333333333 0 0 1 2.9066666666666667 0.5599999999999999v-2.88a20.28 20.28 0 1 0 -40.56 0v2.88a10.026666666666666 10.026666666666666 0 0 1 2.986666666666667 -0.5599999999999999 20.906666666666666 20.906666666666666 0 0 0 17.333333333333332 -9.64Z" fill="#724f3d" stroke-width="1"></path>
|
|
21
|
+
<path d="M32 3.3866666666666667A20.28 20.28 0 0 0 11.733333333333334 23.666666666666664v2.88l0.14666666666666667 0a20.28 20.28 0 0 1 40.266666666666666 0l0.14666666666666667 0v-2.88A20.28 20.28 0 0 0 32 3.3866666666666667Z" fill="#a86c4d" stroke-width="1"></path>
|
|
22
|
+
<path d="M32 16.346666666666664a20.906666666666666 20.906666666666666 0 0 0 17.333333333333332 9.64 10.893333333333333 10.893333333333333 0 0 1 2.9066666666666667 0.5599999999999999v-2.88a20.28 20.28 0 1 0 -40.56 0v2.88a10.026666666666666 10.026666666666666 0 0 1 2.986666666666667 -0.5599999999999999 20.906666666666666 20.906666666666666 0 0 0 17.333333333333332 -9.64Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
23
|
+
</svg>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Glasses-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Glasses 1 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M17.04 58a14.96 2 0 1 0 29.92 0 14.96 2 0 1 0 -29.92 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 29.093333333333334c-1.3333333333333333 0 -1.8666666666666665 0.6799999999999999 -2.6666666666666665 1.6133333333333333l0.09333333333333334 2.32A3.4799999999999995 3.4799999999999995 0 0 1 32 31.599999999999998a3.4799999999999995 3.4799999999999995 0 0 1 2.6666666666666665 1.4266666666666667L34.666666666666664 30.666666666666664c-0.7999999999999999 -0.8933333333333333 -1.3333333333333333 -1.5733333333333333 -2.6666666666666665 -1.5733333333333333Z" fill="#e8f4fa" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
7
|
+
<path d="M1.3333333333333333 30.319999999999997 10.52 13.2A8.413333333333332 8.413333333333332 0 0 1 14.933333333333332 9.333333333333332l3.466666666666667 -1.3333333333333333a1.3333333333333333 1.3333333333333333 0 0 1 1.7866666666666666 1.5066666666666664 5.986666666666666 5.986666666666666 0 0 1 -5.199999999999999 4.773333333333333 3.0399999999999996 3.0399999999999996 0 0 0 -2.4 1.6666666666666665L4 33.093333333333334Z" fill="#87898c" stroke-width="1"></path>
|
|
8
|
+
<path d="M62.666666666666664 30.319999999999997 53.48 13.2A8.413333333333332 8.413333333333332 0 0 0 49.06666666666666 9.333333333333332l-3.466666666666667 -1.3333333333333333a1.3333333333333333 1.3333333333333333 0 0 0 -1.7866666666666666 1.5066666666666664 5.986666666666666 5.986666666666666 0 0 0 5.199999999999999 4.773333333333333 3.0399999999999996 3.0399999999999996 0 0 1 2.4 1.6666666666666665L60 33.093333333333334Z" fill="#87898c" stroke-width="1"></path>
|
|
9
|
+
<path d="M10.52 16a8.466666666666665 8.466666666666665 0 0 1 4.413333333333333 -4l3.466666666666667 -1.3333333333333333a1.3333333333333333 1.3333333333333333 0 0 1 1.3333333333333333 0.18666666666666668 5.826666666666666 5.826666666666666 0 0 0 0.4933333333333333 -1.4266666666666667A1.3333333333333333 1.3333333333333333 0 0 0 18.4 8l-3.466666666666667 1.3333333333333333a8.466666666666665 8.466666666666665 0 0 0 -4.413333333333333 3.8666666666666663L1.3333333333333333 30.319999999999997l0.9466666666666665 0.9866666666666666Z" fill="#bdbec0" stroke-width="1"></path>
|
|
10
|
+
<path d="M44.30666666666666 10.906666666666666a1.3333333333333333 1.3333333333333333 0 0 1 1.3333333333333333 -0.18666666666666668l3.466666666666667 1.3333333333333333A8.466666666666665 8.466666666666665 0 0 1 53.48 16l8.239999999999998 15.36 0.9466666666666665 -0.9866666666666666L53.48 13.2A8.466666666666665 8.466666666666665 0 0 0 49.06666666666666 9.333333333333332l-3.466666666666667 -1.3333333333333333a1.3333333333333333 1.3333333333333333 0 0 0 -1.7866666666666666 1.5066666666666664 5.826666666666666 5.826666666666666 0 0 0 0.4933333333333333 1.4Z" fill="#bdbec0" stroke-width="1"></path>
|
|
11
|
+
<path d="M1.3333333333333333 30.319999999999997 10.52 13.2A8.413333333333332 8.413333333333332 0 0 1 14.933333333333332 9.333333333333332l3.466666666666667 -1.3333333333333333a1.3333333333333333 1.3333333333333333 0 0 1 1.7866666666666666 1.5066666666666664h0a5.986666666666666 5.986666666666666 0 0 1 -5.199999999999999 4.773333333333333h0a3.0399999999999996 3.0399999999999996 0 0 0 -2.4 1.6666666666666665L4 33.093333333333334Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M62.666666666666664 30.319999999999997 53.48 13.2A8.413333333333332 8.413333333333332 0 0 0 49.06666666666666 9.333333333333332l-3.466666666666667 -1.3333333333333333a1.3333333333333333 1.3333333333333333 0 0 0 -1.7866666666666666 1.5066666666666664h0a5.986666666666666 5.986666666666666 0 0 0 5.199999999999999 4.773333333333333h0a3.0399999999999996 3.0399999999999996 0 0 1 2.4 1.6666666666666665L60 33.093333333333334Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M2.5466666666666664 29.093333333333334H6l0 0v4.666666666666666l0 0H2.5466666666666664a1.2133333333333334 1.2133333333333334 0 0 1 -1.2133333333333334 -1.2133333333333334v-2.2266666666666666a1.2133333333333334 1.2133333333333334 0 0 1 1.2133333333333334 -1.2266666666666666Z" fill="#e8f4fa" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="m61.45333333333333 33.773333333333326 -3.453333333333333 0 0 0 0 -4.666666666666666 0 0 3.453333333333333 0a1.2133333333333334 1.2133333333333334 0 0 1 1.2133333333333334 1.2133333333333334l0 2.2266666666666666a1.2133333333333334 1.2133333333333334 0 0 1 -1.2133333333333334 1.2266666666666666Z" fill="#e8f4fa" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M5.333333333333333 33.093333333333334s-1.3333333333333333 0.09333333333333334 -1.3333333333333333 -2 1.4933333333333334 -4 13.333333333333332 -4 12.666666666666666 2.76 12.666666666666666 4.666666666666666 -1.3333333333333333 1.3333333333333333 -1.3333333333333333 1.3333333333333333Z" fill="#87898c" stroke-width="1"></path>
|
|
16
|
+
<path d="M58.666666666666664 33.093333333333334s1.3333333333333333 0.09333333333333334 1.3333333333333333 -2 -1.4933333333333334 -4 -13.333333333333332 -4 -12.666666666666666 2.76 -12.666666666666666 4.666666666666666 1.3333333333333333 1.3333333333333333 1.3333333333333333 1.3333333333333333Z" fill="#87898c" stroke-width="1"></path>
|
|
17
|
+
<path d="M17.333333333333332 29.333333333333332c9.333333333333332 0 11.84 1.7333333333333334 12.453333333333333 3.3999999999999995a1.96 1.96 0 0 0 0.21333333333333332 -1.0266666666666666c0 -1.9066666666666665 -0.8266666666666667 -4.666666666666666 -12.666666666666666 -4.666666666666666s-13.333333333333332 1.92 -13.333333333333332 4a3.0266666666666664 3.0266666666666664 0 0 0 0.19999999999999998 1.1866666666666665C4.893333333333333 30.666666666666664 7.653333333333333 29.333333333333332 17.333333333333332 29.333333333333332Z" fill="#bdbec0" stroke-width="1"></path>
|
|
18
|
+
<path d="M46.666666666666664 29.333333333333332c9.68 0 12.44 1.3333333333333333 13.133333333333333 2.893333333333333a3.0266666666666664 3.0266666666666664 0 0 0 0.19999999999999998 -1.1866666666666665c0 -2.08 -1.4933333333333334 -4 -13.333333333333332 -4s-12.666666666666666 2.76 -12.666666666666666 4.666666666666666a1.96 1.96 0 0 0 0.21333333333333332 1.0266666666666666C34.82666666666667 31.119999999999997 37.33333333333333 29.333333333333332 46.666666666666664 29.333333333333332Z" fill="#bdbec0" stroke-width="1"></path>
|
|
19
|
+
<path d="M5.333333333333333 33.093333333333334s-1.3333333333333333 0.09333333333333334 -1.3333333333333333 -2 1.4933333333333334 -4 13.333333333333332 -4 12.666666666666666 2.76 12.666666666666666 4.666666666666666 -1.3333333333333333 1.3333333333333333 -1.3333333333333333 1.3333333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
<path d="M58.666666666666664 33.093333333333334s1.3333333333333333 0.09333333333333334 1.3333333333333333 -2 -1.4933333333333334 -4 -13.333333333333332 -4 -12.666666666666666 2.76 -12.666666666666666 4.666666666666666 1.3333333333333333 1.3333333333333333 1.3333333333333333 1.3333333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
21
|
+
<path d="M5.333333333333333 33.093333333333334a39.306666666666665 39.306666666666665 0 0 1 11.333333333333332 -1.3333333333333333 48 48 0 0 1 12 1.3333333333333333s0.44 13.12 -3.333333333333333 15.333333333333332 -14 2.6666666666666665 -17.333333333333332 -1.3333333333333333 -2.6666666666666665 -14 -2.6666666666666665 -14Z" fill="#00b8f0" stroke-width="1"></path>
|
|
22
|
+
<path d="M25.226666666666667 32.4a56.213333333333324 56.213333333333324 0 0 0 -8.559999999999999 -0.6399999999999999 39.306666666666665 39.306666666666665 0 0 0 -11.333333333333332 1.3333333333333333s-0.6666666666666666 10 2.6666666666666665 14c1.3333333333333333 1.68 4 2.5733333333333333 6.84 2.88Z" fill="#4acfff" stroke-width="1"></path>
|
|
23
|
+
<path d="M5.333333333333333 33.093333333333334a39.306666666666665 39.306666666666665 0 0 1 11.333333333333332 -1.3333333333333333 48 48 0 0 1 12 1.3333333333333333s0.44 13.12 -3.333333333333333 15.333333333333332 -14 2.6666666666666665 -17.333333333333332 -1.3333333333333333 -2.6666666666666665 -14 -2.6666666666666665 -14Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
24
|
+
<path d="M58.666666666666664 33.093333333333334a39.306666666666665 39.306666666666665 0 0 0 -11.333333333333332 -1.3333333333333333 48 48 0 0 0 -12 1.3333333333333333s-0.44 13.12 3.333333333333333 15.333333333333332 14 2.6666666666666665 17.333333333333332 -1.3333333333333333 2.6666666666666665 -14 2.6666666666666665 -14Z" fill="#00b8f0" stroke-width="1"></path>
|
|
25
|
+
<path d="M54.346666666666664 32.21333333333333a52.959999999999994 52.959999999999994 0 0 0 -7.013333333333333 -0.45333333333333337 48 48 0 0 0 -12 1.3333333333333333s-0.44 13.12 3.333333333333333 15.333333333333332a14.013333333333332 14.013333333333332 0 0 0 5.199999999999999 1.5066666666666664Z" fill="#4acfff" stroke-width="1"></path>
|
|
26
|
+
<path d="M58.666666666666664 33.093333333333334a39.306666666666665 39.306666666666665 0 0 0 -11.333333333333332 -1.3333333333333333 48 48 0 0 0 -12 1.3333333333333333s-0.44 13.12 3.333333333333333 15.333333333333332 14 2.6666666666666665 17.333333333333332 -1.3333333333333333 2.6666666666666665 -14 2.6666666666666665 -14Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
27
|
+
</svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Grimacing-Face--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Grimacing Face Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
9
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
11
|
+
<path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
12
|
+
<path d="M32 48.73333333333333c12.266666666666666 0 13.906666666666666 -5.119999999999999 13.186666666666667 -9.333333333333332a4.546666666666667 4.546666666666667 0 0 0 -6.079999999999999 -3.1466666666666665 21.893333333333334 21.893333333333334 0 0 1 -7.1066666666666665 1.1199999999999999 21.893333333333334 21.893333333333334 0 0 1 -7.1066666666666665 -1.1199999999999999 4.546666666666667 4.546666666666667 0 0 0 -6.079999999999999 3.1466666666666665c-0.72 4.213333333333333 0.9199999999999999 9.333333333333332 13.186666666666667 9.333333333333332Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M45.33333333333333 40.373333333333335a22.77333333333333 22.77333333333333 0 0 1 -6.133333333333333 1.8133333333333335 43.06666666666666 43.06666666666666 0 0 1 -7.173333333333333 0.5466666666666666 43.06666666666666 43.06666666666666 0 0 1 -7.173333333333333 -0.5466666666666666A22.77333333333333 22.77333333333333 0 0 1 18.666666666666664 40.373333333333335" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="m25.69333333333333 36.519999999999996 -0.8666666666666667 5.666666666666666 -0.84 5.453333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="m32 48.73333333333333 0 -11.333333333333332" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="m38.306666666666665 36.519999999999996 0.8666666666666667 5.666666666666666 0.84 5.453333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M19.333333333333332 27.333333333333332a1.3333333333333333 1.3333333333333333 0 1 1 -1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 1 1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
<path d="M44.666666666666664 27.333333333333332a1.3333333333333333 1.3333333333333333 0 1 0 1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 0 -1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
</svg>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Grinning-Cat-Face--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Grinning Cat Face Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M36.16 11.573333333333332s11.239999999999998 -7.653333333333333 15.426666666666666 -4.199999999999999 -1.6133333333333333 17.613333333333333 -1.6133333333333333 17.613333333333333Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M37.986666666666665 14.493333333333332s8 -5.799999999999999 10.853333333333333 -3.466666666666667 -1.4933333333333334 12.546666666666667 -1.4933333333333334 12.546666666666667Z" fill="#ffa694" stroke-width="1"></path>
|
|
7
|
+
<path d="M27.839999999999996 11.573333333333332S16.599999999999998 3.92 12.413333333333334 7.373333333333333s1.6133333333333333 17.613333333333333 1.6133333333333333 17.613333333333333Z" fill="#ffe500" stroke-width="1"></path>
|
|
8
|
+
<path d="M51.58666666666666 10.293333333333333a4.68 4.68 0 0 1 1.4533333333333334 3.173333333333333c0.24 -2.6666666666666665 0 -4.946666666666666 -1.4533333333333334 -6.093333333333334 -4.1866666666666665 -3.453333333333333 -15.426666666666666 4.199999999999999 -15.426666666666666 4.199999999999999L37.986666666666665 13.333333333333332c3.3466666666666662 -1.9733333333333332 10.466666666666665 -5.626666666666666 13.599999999999998 -3.0399999999999996Z" fill="#fff48c" stroke-width="1"></path>
|
|
9
|
+
<path d="M12.413333333333334 10.293333333333333c3.1333333333333333 -2.5866666666666664 10.239999999999998 1.0666666666666667 13.599999999999998 3.0533333333333332l1.8266666666666667 -1.7733333333333334S16.599999999999998 3.92 12.413333333333334 7.373333333333333C11.013333333333332 8.52 10.666666666666666 10.853333333333333 10.96 13.466666666666665a4.68 4.68 0 0 1 1.4533333333333334 -3.173333333333333Z" fill="#fff48c" stroke-width="1"></path>
|
|
10
|
+
<path d="M36.16 11.573333333333332s11.239999999999998 -7.653333333333333 15.426666666666666 -4.199999999999999 -1.6133333333333333 17.613333333333333 -1.6133333333333333 17.613333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M27.839999999999996 11.573333333333332S16.599999999999998 3.92 12.413333333333334 7.373333333333333s1.6133333333333333 17.613333333333333 1.6133333333333333 17.613333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M26.013333333333335 14.493333333333332s-8 -5.799999999999999 -10.853333333333333 -3.466666666666667 1.4933333333333334 12.546666666666667 1.4933333333333334 12.546666666666667Z" fill="#ffa694" stroke-width="1"></path>
|
|
13
|
+
<path d="M48.84 14.026666666666666a2.6666666666666665 2.6666666666666665 0 0 1 0.84 1.5599999999999998c0.26666666666666666 -1.9733333333333332 0.14666666666666667 -3.7466666666666666 -0.84 -4.56 -2.84 -2.333333333333333 -10.853333333333333 3.466666666666667 -10.853333333333333 3.466666666666667l1.8399999999999999 1.7866666666666666c2.533333333333333 -1.6133333333333333 7.0266666666666655 -3.893333333333333 9.013333333333332 -2.253333333333333Z" fill="#ff866e" stroke-width="1"></path>
|
|
14
|
+
<path d="M15.159999999999998 14.026666666666666c1.9866666666666666 -1.64 6.48 0.6933333333333334 9.013333333333332 2.253333333333333l1.8399999999999999 -1.7866666666666666s-8 -5.799999999999999 -10.853333333333333 -3.466666666666667c-0.9866666666666666 0.8133333333333332 -1.1066666666666665 2.5866666666666664 -0.84 4.56a2.6666666666666665 2.6666666666666665 0 0 1 0.84 -1.5599999999999998Z" fill="#ff866e" stroke-width="1"></path>
|
|
15
|
+
<path d="M37.986666666666665 14.493333333333332s8 -5.799999999999999 10.853333333333333 -3.466666666666667 -1.4933333333333334 12.546666666666667 -1.4933333333333334 12.546666666666667Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M26.013333333333335 14.493333333333332s-8 -5.799999999999999 -10.853333333333333 -3.466666666666667 1.4933333333333334 12.546666666666667 1.4933333333333334 12.546666666666667Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M17.333333333333332 58a14.666666666666666 2 0 1 0 29.333333333333332 0 14.666666666666666 2 0 1 0 -29.333333333333332 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
18
|
+
<path d="m52.44 38.54666666666667 -1.2533333333333332 -11.613333333333333A19.013333333333332 19.013333333333332 0 0 0 32 10.333333333333332 19.013333333333332 19.013333333333332 0 0 0 12.813333333333333 26.93333333333333l-1.2533333333333332 11.613333333333333a10.786666666666665 10.786666666666665 0 0 0 11 11.693333333333332h0.6133333333333333c1.6666666666666665 2.0666666666666664 4.986666666666666 3.4799999999999995 8.826666666666666 3.4799999999999995s7.16 -1.4133333333333333 8.826666666666666 -3.4799999999999995h0.6133333333333333a10.786666666666665 10.786666666666665 0 0 0 11 -11.693333333333332Z" fill="#ffe500" stroke-width="1"></path>
|
|
19
|
+
<path d="M12.813333333333333 31.839999999999996A19 19 0 0 1 32 15.253333333333332a19.013333333333332 19.013333333333332 0 0 1 19.186666666666667 16.586666666666666l1.08 9.986666666666666a10.32 10.32 0 0 0 0.17333333333333334 -3.28l-1.2533333333333332 -11.613333333333333A19.026666666666664 19.026666666666664 0 0 0 32 10.333333333333332 19.013333333333332 19.013333333333332 0 0 0 12.813333333333333 26.93333333333333l-1.2533333333333332 11.613333333333333a10.32 10.32 0 0 0 0.17333333333333334 3.28Z" fill="#fff48c" stroke-width="1"></path>
|
|
20
|
+
<path d="m52.44 38.54666666666667 -1.2533333333333332 -11.613333333333333A19.013333333333332 19.013333333333332 0 0 0 32 10.333333333333332 19.013333333333332 19.013333333333332 0 0 0 12.813333333333333 26.93333333333333l-1.2533333333333332 11.613333333333333a10.786666666666665 10.786666666666665 0 0 0 11 11.693333333333332h0.6133333333333333c1.6666666666666665 2.0666666666666664 4.986666666666666 3.4799999999999995 8.826666666666666 3.4799999999999995s7.16 -1.4133333333333333 8.826666666666666 -3.4799999999999995h0.6133333333333333a10.786666666666665 10.786666666666665 0 0 0 11 -11.693333333333332Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
21
|
+
<path d="M35.57333333333333 39.45333333333333A4 4 0 0 1 32 42.42666666666666a4 4 0 0 1 -3.5733333333333333 -2.973333333333333c0 -0.9066666666666667 1.5999999999999999 -1.64 3.5733333333333333 -1.64s3.5733333333333333 0.7333333333333334 3.5733333333333333 1.64Z" fill="#ff866e" stroke-width="1"></path>
|
|
22
|
+
<path d="M32 39.81333333333333a5.333333333333333 5.333333333333333 0 0 1 3.093333333333333 0.8133333333333332 2.293333333333333 2.293333333333333 0 0 0 0.48 -1.1733333333333333c0 -0.9066666666666667 -1.5999999999999999 -1.64 -3.5733333333333333 -1.64s-3.5733333333333333 0.7333333333333334 -3.5733333333333333 1.64a2.293333333333333 2.293333333333333 0 0 0 0.48 1.1733333333333333 5.333333333333333 5.333333333333333 0 0 1 3.093333333333333 -0.8133333333333332Z" fill="#ffa694" stroke-width="1"></path>
|
|
23
|
+
<path d="M35.57333333333333 39.45333333333333A4 4 0 0 1 32 42.42666666666666a4 4 0 0 1 -3.5733333333333333 -2.973333333333333c0 -0.9066666666666667 1.5999999999999999 -1.64 3.5733333333333333 -1.64s3.5733333333333333 0.7333333333333334 3.5733333333333333 1.64Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
24
|
+
<path d="M21.226666666666667 32a1.5333333333333332 1.5333333333333332 0 1 0 1.5333333333333332 -1.5333333333333332A1.5199999999999998 1.5199999999999998 0 0 0 21.226666666666667 32Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
25
|
+
<path d="M42.773333333333326 32a1.5333333333333332 1.5333333333333332 0 1 1 -1.5333333333333332 -1.5333333333333332A1.5199999999999998 1.5199999999999998 0 0 1 42.773333333333326 32Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
26
|
+
<path d="M26.373333333333335 44.39999999999999a0.88 0.88 0 0 0 -0.6666666666666666 0.30666666666666664 0.8666666666666667 0.8666666666666667 0 0 0 -0.19999999999999998 0.6933333333333334 6.586666666666667 6.586666666666667 0 0 0 12.986666666666666 0 0.8666666666666667 0.8666666666666667 0 0 0 -0.19999999999999998 -0.6933333333333334 0.88 0.88 0 0 0 -0.6666666666666666 -0.30666666666666664Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
27
|
+
<path d="M37.17333333333333 48.42666666666666a10.52 10.52 0 0 0 -5.173333333333333 -1.2133333333333334 10.52 10.52 0 0 0 -5.173333333333333 1.2133333333333334 6.666666666666666 6.666666666666666 0 0 0 10.346666666666666 0Z" fill="#ff87af" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
28
|
+
<path d="m41.48 40.239999999999995 7.226666666666667 -1.1066666666666665" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
29
|
+
<path d="m41.48 43.519999999999996 7.226666666666667 1" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
30
|
+
<path d="m22.52 40.239999999999995 -7.226666666666667 -1.1066666666666665" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
31
|
+
<path d="m22.52 43.519999999999996 -7.226666666666667 1" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
32
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Grinning-Face--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Grinning Face Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
9
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
11
|
+
<path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
12
|
+
<path d="M19.333333333333332 27.333333333333332a1.3333333333333333 1.3333333333333333 0 1 1 -1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 1 1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M44.666666666666664 27.333333333333332a1.3333333333333333 1.3333333333333333 0 1 0 1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 0 -1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M32 51.33333333333333a14.533333333333333 14.533333333333333 0 0 0 14.666666666666666 -12.226666666666667 1.3333333333333333 1.3333333333333333 0 0 0 -0.41333333333333333 -1.1199999999999999 1.4933333333333334 1.4933333333333334 0 0 0 -1.2133333333333334 -0.36 82.10666666666665 82.10666666666665 0 0 1 -26.05333333333333 0 1.4933333333333334 1.4933333333333334 0 0 0 -1.2133333333333334 0.36 1.3333333333333333 1.3333333333333333 0 0 0 -0.41333333333333333 1.1199999999999999A14.533333333333333 14.533333333333333 0 0 0 32 51.33333333333333Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M32 44.666666666666664a23.77333333333333 23.77333333333333 0 0 0 -10.76 2.253333333333333 15.32 15.32 0 0 0 21.52 0A23.77333333333333 23.77333333333333 0 0 0 32 44.666666666666664Z" fill="#ff87af" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Grinning-Face-With-Sweat--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Grinning Face With Sweat Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
9
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
11
|
+
<path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
12
|
+
<path d="M23.92 39.33333333333333a1.2533333333333332 1.2533333333333332 0 0 0 -0.9466666666666665 0.44 1.3333333333333333 1.3333333333333333 0 0 0 -0.29333333333333333 1.0133333333333332 9.453333333333333 9.453333333333333 0 0 0 18.666666666666664 0 1.3333333333333333 1.3333333333333333 0 0 0 -0.29333333333333333 -1.0133333333333332 1.2533333333333332 1.2533333333333332 0 0 0 -0.9466666666666665 -0.44Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M39.42666666666666 45.120000000000005A15.159999999999998 15.159999999999998 0 0 0 32 43.373333333333335a15.159999999999998 15.159999999999998 0 0 0 -7.426666666666667 1.7466666666666666 9.546666666666667 9.546666666666667 0 0 0 14.853333333333333 0Z" fill="#ff87af" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M13.333333333333332 30.333333333333332a2.333333333333333 2.333333333333333 0 0 1 4.666666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M46 30.333333333333332a2.333333333333333 2.333333333333333 0 0 1 4.666666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M63.33333333333333 44.666666666666664a6.666666666666666 6.666666666666666 0 0 1 -13.333333333333332 0c0 -3.6799999999999997 6.666666666666666 -14.666666666666666 6.666666666666666 -14.666666666666666s6.666666666666666 10.986666666666666 6.666666666666666 14.666666666666666Z" fill="#00b8f0" stroke-width="1"></path>
|
|
17
|
+
<path d="M56.666666666666664 48a6.666666666666666 6.666666666666666 0 0 1 -6.3999999999999995 -4.92 6.04 6.04 0 0 0 -0.26666666666666666 1.5866666666666664 6.666666666666666 6.666666666666666 0 0 0 13.333333333333332 0 6.04 6.04 0 0 0 -0.26666666666666666 -1.5866666666666664A6.666666666666666 6.666666666666666 0 0 1 56.666666666666664 48Z" fill="#009fd9" stroke-width="1"></path>
|
|
18
|
+
<path d="M63.33333333333333 44.666666666666664a6.666666666666666 6.666666666666666 0 0 1 -13.333333333333332 0c0 -3.6799999999999997 6.666666666666666 -14.666666666666666 6.666666666666666 -14.666666666666666s6.666666666666666 10.986666666666666 6.666666666666666 14.666666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Grinning-Squinting-Face--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Grinning Squinting Face Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
9
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
11
|
+
<path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
12
|
+
<path d="M23.92 39.33333333333333a1.2533333333333332 1.2533333333333332 0 0 0 -0.9466666666666665 0.44 1.3333333333333333 1.3333333333333333 0 0 0 -0.29333333333333333 1.0133333333333332 9.453333333333333 9.453333333333333 0 0 0 18.666666666666664 0 1.3333333333333333 1.3333333333333333 0 0 0 -0.29333333333333333 -1.0133333333333332 1.2533333333333332 1.2533333333333332 0 0 0 -0.9466666666666665 -0.44Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M39.42666666666666 45.120000000000005A15.159999999999998 15.159999999999998 0 0 0 32 43.373333333333335a15.159999999999998 15.159999999999998 0 0 0 -7.426666666666667 1.7466666666666666 9.546666666666667 9.546666666666667 0 0 0 14.853333333333333 0Z" fill="#ff87af" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="m48.346666666666664 24 -4.279999999999999 2.1466666666666665a1.3333333333333333 1.3333333333333333 0 0 0 0 2.373333333333333L48.346666666666664 30.666666666666664" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M15.653333333333332 24 20 26.146666666666665a1.3333333333333333 1.3333333333333333 0 0 1 0 2.373333333333333L15.653333333333332 30.666666666666664" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Hand-With-Fingers-Splayed-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Hand With Fingers Splayed 1 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M54.666666666666664 35.57333333333333a6.239999999999999 6.239999999999999 0 0 0 -7.866666666666667 -0.21333333333333332l-5.039999999999999 3.84 3.9066666666666667 -21.066666666666666a2.9066666666666667 2.9066666666666667 0 0 0 -2.0266666666666664 -3.333333333333333A2.88 2.88 0 0 0 40 16.813333333333333l-3.5733333333333333 13.333333333333332V14.666666666666666a3.2933333333333334 3.2933333333333334 0 1 0 -6.573333333333332 0v15.2l-3.373333333333333 -14.479999999999999a2.84 2.84 0 0 0 -5.546666666666667 1.16c0.8133333333333332 4.893333333333333 2.44 14.986666666666666 2.44 14.986666666666666l-5.333333333333333 -10.173333333333332a2.7733333333333334 2.7733333333333334 0 0 0 -4.96 2.493333333333333l3.6933333333333334 7.6a14.413333333333334 14.413333333333334 0 0 1 1.4666666666666668 6.32v4.24A12.333333333333332 12.333333333333332 0 0 0 30.666666666666664 54.36a18.24 18.24 0 0 0 13.226666666666667 -5.68L54.666666666666664 37.33333333333333a1.16 1.16 0 0 0 0 -1.76Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M54.666666666666664 35.57333333333333a6.239999999999999 6.239999999999999 0 0 0 -7.866666666666667 -0.21333333333333332l-5.039999999999999 3.84h-6.666666666666666a6.186666666666666 6.186666666666666 0 0 0 -4.933333333333334 2.466666666666667l5.333333333333333 0.4666666666666666a16.25333333333333 16.25333333333333 0 0 0 11.306666666666667 -3.2666666666666666 6.2 6.2 0 0 1 6.88 -0.4666666666666666L54.666666666666664 37.33333333333333a1.16 1.16 0 0 0 0 -1.76Z" fill="#fff48c" stroke-width="1"></path>
|
|
7
|
+
<path d="M42.17333333333333 17.759999999999998a3.5733333333333333 3.5733333333333333 0 0 1 3.1999999999999997 2l0.29333333333333333 -1.6266666666666665a2.9066666666666667 2.9066666666666667 0 0 0 -2.0266666666666664 -3.333333333333333A2.88 2.88 0 0 0 40 16.813333333333333l-0.6133333333333333 2.2666666666666666a3.546666666666667 3.546666666666667 0 0 1 2.786666666666666 -1.3199999999999998Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M33.16 14.866666666666667a3.546666666666667 3.546666666666667 0 0 1 3.2933333333333334 2.2266666666666666V14.666666666666666a3.2933333333333334 3.2933333333333334 0 1 0 -6.573333333333332 0v2.44a3.52 3.52 0 0 1 3.28 -2.2399999999999998Z" fill="#fff48c" stroke-width="1"></path>
|
|
9
|
+
<path d="M17.08 22.426666666666666a3.1466666666666665 3.1466666666666665 0 0 1 1.88 0.6133333333333333L18.093333333333334 21.333333333333332a2.7733333333333334 2.7733333333333334 0 0 0 -4.96 2.493333333333333l0.7466666666666667 1.5066666666666664a3.2266666666666666 3.2266666666666666 0 0 1 3.1999999999999997 -2.9066666666666667Z" fill="#fff48c" stroke-width="1"></path>
|
|
10
|
+
<path d="M21.333333333333332 18.57333333333333a3.24 3.24 0 0 1 3.0666666666666664 -2.2266666666666666 3.1866666666666665 3.1866666666666665 0 0 1 2.6666666666666665 1.5066666666666664l-0.5733333333333333 -2.466666666666667A2.7733333333333334 2.7733333333333334 0 0 0 23.146666666666665 13.333333333333332h-0.06666666666666667a2.8266666666666667 2.8266666666666667 0 0 0 -2.1466666666666665 3.2133333333333334c0.10666666666666666 0.6133333333333333 0.21333333333333332 1.2933333333333332 0.39999999999999997 2.0266666666666664Z" fill="#fff48c" stroke-width="1"></path>
|
|
11
|
+
<path d="M54.666666666666664 35.57333333333333a6.239999999999999 6.239999999999999 0 0 0 -7.866666666666667 -0.21333333333333332l-5.039999999999999 3.84 3.9066666666666667 -21.066666666666666a2.9066666666666667 2.9066666666666667 0 0 0 -2.0266666666666664 -3.333333333333333A2.88 2.88 0 0 0 40 16.813333333333333l-3.5733333333333333 13.333333333333332V14.666666666666666a3.2933333333333334 3.2933333333333334 0 1 0 -6.573333333333332 0v15.2l-3.373333333333333 -14.479999999999999a2.84 2.84 0 0 0 -5.546666666666667 1.16c0.8133333333333332 4.893333333333333 2.44 14.986666666666666 2.44 14.986666666666666l-5.333333333333333 -10.173333333333332a2.7733333333333334 2.7733333333333334 0 0 0 -4.96 2.493333333333333l3.6933333333333334 7.6a14.413333333333334 14.413333333333334 0 0 1 1.4666666666666668 6.32v4.24A12.333333333333332 12.333333333333332 0 0 0 30.666666666666664 54.36a18.24 18.24 0 0 0 13.226666666666667 -5.68L54.666666666666664 37.33333333333333a1.16 1.16 0 0 0 0 -1.76Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M29.786666666666665 42.28a6.16 6.16 0 0 1 5.333333333333333 -3.08h6.666666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M17.333333333333332 60.666666666666664a14.666666666666666 2 0 1 0 29.333333333333332 0 14.666666666666666 2 0 1 0 -29.333333333333332 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Heart-Suit--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Heart Suit Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M16.666666666666664 60.666666666666664a15.333333333333332 2 0 1 0 30.666666666666664 0 15.333333333333332 2 0 1 0 -30.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 15.906666666666666a13.333333333333332 13.333333333333332 0 0 1 13.333333333333332 -13.333333333333332c9.333333333333332 0 13.333333333333332 9.333333333333332 13.333333333333332 16.666666666666664C58.666666666666664 38.666666666666664 40.22666666666667 51.13333333333333 34.013333333333335 54.78666666666667a4 4 0 0 1 -4 0C23.77333333333333 51.13333333333333 5.333333333333333 38.666666666666664 5.333333333333333 19.24 5.333333333333333 11.866666666666667 9.333333333333332 2.5733333333333333 18.666666666666664 2.5733333333333333a13.333333333333332 13.333333333333332 0 0 1 13.333333333333332 13.333333333333332Z" fill="#ff6242" stroke-width="1"></path>
|
|
7
|
+
<path d="M18 9.239999999999998a13.986666666666666 13.986666666666666 0 0 1 12.799999999999999 8.32 1.3333333333333333 1.3333333333333333 0 0 0 2.4 0 13.986666666666666 13.986666666666666 0 0 1 12.799999999999999 -8.32c6.666666666666666 0 10.746666666666666 4.52 12.666666666666666 9.84 0 -7.333333333333333 -4 -16.506666666666668 -13.333333333333332 -16.506666666666668a13.333333333333332 13.333333333333332 0 0 0 -13.333333333333332 13.333333333333332 13.333333333333332 13.333333333333332 0 0 0 -13.333333333333332 -13.333333333333332c-9.266666666666666 0 -13.333333333333332 9.173333333333332 -13.333333333333332 16.506666666666668 1.92 -5.32 6 -9.84 12.666666666666666 -9.84Z" fill="#ff866e" stroke-width="1"></path>
|
|
8
|
+
<path d="M32 15.906666666666666a13.333333333333332 13.333333333333332 0 0 1 13.333333333333332 -13.333333333333332c9.333333333333332 0 13.333333333333332 9.333333333333332 13.333333333333332 16.666666666666664C58.666666666666664 38.666666666666664 40.22666666666667 51.13333333333333 34.013333333333335 54.78666666666667a4 4 0 0 1 -4 0C23.77333333333333 51.13333333333333 5.333333333333333 38.666666666666664 5.333333333333333 19.24 5.333333333333333 11.866666666666667 9.333333333333332 2.5733333333333333 18.666666666666664 2.5733333333333333a13.333333333333332 13.333333333333332 0 0 1 13.333333333333332 13.333333333333332Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Hushed-Face-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Hushed Face 1 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
9
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
11
|
+
<path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
12
|
+
<path d="M14.226666666666667 21.333333333333332a5.946666666666666 5.946666666666666 0 0 1 3.7733333333333334 -1.3333333333333333 6.013333333333333 6.013333333333333 0 0 1 3.7733333333333334 1.3333333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M49.773333333333326 21.333333333333332a5.946666666666666 5.946666666666666 0 0 0 -3.7733333333333334 -1.3333333333333333 6.013333333333333 6.013333333333333 0 0 0 -3.7733333333333334 1.3333333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M19.333333333333332 28a1.3333333333333333 1.3333333333333333 0 1 1 -1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 1 1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M44.666666666666664 28a1.3333333333333333 1.3333333333333333 0 1 0 1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 0 -1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M34 42.666666666666664a2 2 0 1 1 -2 -2 2 2 0 0 1 2 2Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Hushed-Face-2--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Hushed Face 2 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
9
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M24.666666666666664 26.666666666666664a4.666666666666666 4.666666666666666 0 1 1 -4.666666666666666 -4.666666666666666 4.666666666666666 4.666666666666666 0 0 1 4.666666666666666 4.666666666666666Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M48.666666666666664 26.666666666666664a4.666666666666666 4.666666666666666 0 1 1 -4.666666666666666 -4.666666666666666 4.666666666666666 4.666666666666666 0 0 1 4.666666666666666 4.666666666666666Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M34 43.33333333333333A2 2 0 1 1 32 41.33333333333333a2 2 0 0 1 2 2Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M52 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2 1.4933333333333334 -2 3.333333333333333 -2 3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
14
|
+
<path d="M13.333333333333332 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2 -1.4933333333333334 -2 -3.333333333333333 -2 -3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Index-Pointing-Up-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Index Pointing Up 1 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M17.333333333333332 60.666666666666664a14.666666666666666 2 0 1 0 29.333333333333332 0 14.666666666666666 2 0 1 0 -29.333333333333332 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M45.50666666666667 35.10666666666666V12a3.0666666666666664 3.0666666666666664 0 0 0 -6.133333333333333 0v14.52a3.6133333333333333 3.6133333333333333 0 0 0 -7.226666666666667 0 3.5733333333333333 3.5733333333333333 0 0 0 -7.1466666666666665 0v4.346666666666666a3.36 3.36 0 0 0 -6.666666666666666 0v10.786666666666665a12.293333333333333 12.293333333333333 0 0 0 12.293333333333333 12.293333333333333h1.7066666666666666a14.746666666666666 14.746666666666666 0 0 0 14.693333333333332 -14.786666666666665 6.119999999999999 6.119999999999999 0 0 0 -1.5199999999999998 -4.053333333333333Z" fill="#ffe500" stroke-width="1"></path>
|
|
7
|
+
<path d="M42.44 12.293333333333333a3.0666666666666664 3.0666666666666664 0 0 1 3.0666666666666664 3.0666666666666664V12a3.0666666666666664 3.0666666666666664 0 0 0 -6.133333333333333 0v3.333333333333333a3.0666666666666664 3.0666666666666664 0 0 1 3.0666666666666664 -3.0399999999999996Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M21.64 30.8a3.36 3.36 0 0 1 3.36 3.36v-3.333333333333333a3.36 3.36 0 0 0 -6.666666666666666 0v3.333333333333333a3.36 3.36 0 0 1 3.3066666666666666 -3.36Z" fill="#fff48c" stroke-width="1"></path>
|
|
9
|
+
<path d="M28.57333333333333 26.24a3.5733333333333333 3.5733333333333333 0 0 1 3.5733333333333333 3.5733333333333333 3.6133333333333333 3.6133333333333333 0 0 1 7.226666666666667 0v-3.333333333333333a3.6133333333333333 3.6133333333333333 0 0 0 -7.226666666666667 0 3.5733333333333333 3.5733333333333333 0 0 0 -7.1466666666666665 0v3.333333333333333a3.5733333333333333 3.5733333333333333 0 0 1 3.5733333333333333 -3.5733333333333333Z" fill="#fff48c" stroke-width="1"></path>
|
|
10
|
+
<path d="M45.50666666666667 35.10666666666666V12a3.0666666666666664 3.0666666666666664 0 0 0 -6.133333333333333 0v14.52a3.6133333333333333 3.6133333333333333 0 0 0 -7.226666666666667 0v0a3.5733333333333333 3.5733333333333333 0 0 0 -7.1466666666666665 0v4.346666666666666a3.36 3.36 0 0 0 -6.666666666666666 0v10.786666666666665a12.293333333333333 12.293333333333333 0 0 0 12.293333333333333 12.293333333333333h1.7066666666666666a14.746666666666666 14.746666666666666 0 0 0 14.693333333333332 -14.786666666666665 6.119999999999999 6.119999999999999 0 0 0 -1.5199999999999998 -4.053333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="m18.28 27.46666666666667 6.72 0 0 11.106666666666666 -6.72 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M47.02666666666667 39.16a6.133333333333333 6.133333333333333 0 0 0 -6.133333333333333 -6.133333333333333H26.666666666666664A1.64 1.64 0 0 0 25 34.666666666666664a5.84 5.84 0 0 0 0.3333333333333333 1.7333333333333334 1.6133333333333333 1.6133333333333333 0 0 1 1.3333333333333333 -0.7466666666666667h14.799999999999999a6.066666666666666 6.066666666666666 0 0 1 5.56 3.5066666666666664Z" fill="#fff48c" stroke-width="1"></path>
|
|
13
|
+
<path d="M47.02666666666667 39.16a6.133333333333333 6.133333333333333 0 0 0 -6.133333333333333 -6.133333333333333H26.666666666666664A1.64 1.64 0 0 0 25 34.666666666666664h0A5.626666666666666 5.626666666666666 0 0 0 30.666666666666664 40.29333333333333h6.986666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="m32.14666666666666 26.52 0 6.506666666666666" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="m39.373333333333335 26.52 0 6.506666666666666" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M37.53333333333333 40.29333333333333h0a5.92 5.92 0 0 0 -5.92 5.92V48" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Kissing-Face-With-Closed-Eyes--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Kissing Face With Closed Eyes Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M2 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M28.666666666666664 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 28.666666666666664 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M20.666666666666664 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M52.519999999999996 40.586666666666666A26.666666666666664 26.666666666666664 0 0 1 41.599999999999994 52l-1.4933333333333334 -3.493333333333333 -0.7333333333333334 -1.72a9.853333333333332 9.853333333333332 0 0 1 0.21333333333333332 -7.8133333333333335 7.613333333333333 7.613333333333333 0 0 1 5.199999999999999 -4.426666666666666 5.946666666666666 5.946666666666666 0 0 1 6.16 2.253333333333333 6.52 6.52 0 0 1 1.0533333333333332 1.96Z" fill="#ebcb00" stroke-width="1"></path>
|
|
9
|
+
<path d="M7.333333333333333 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
10
|
+
<path d="M2 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M61.33333333333333 39.839999999999996a6.186666666666666 6.186666666666666 0 0 1 0.07999999999999999 5.493333333333333 8 8 0 0 1 -4.6 4.293333333333333L45.81333333333333 53.33333333333333 41.33333333333333 42.666666666666664a8 8 0 0 1 0.15999999999999998 -6.293333333333333 6.2 6.2 0 0 1 4.199999999999999 -3.5733333333333333 4.866666666666666 4.866666666666666 0 0 1 5.786666666666666 3.4266666666666663l0.8533333333333333 2.7466666666666666 2.6666666666666665 -1.1866666666666665A4.866666666666666 4.866666666666666 0 0 1 61.33333333333333 39.839999999999996Z" fill="#ff6242" stroke-width="1"></path>
|
|
12
|
+
<path d="M43.346666666666664 37.879999999999995A4.8533333333333335 4.8533333333333335 0 0 1 49.13333333333333 41.33333333333333l0.8533333333333333 2.6666666666666665 2.6666666666666665 -1.1866666666666665a4.8533333333333335 4.8533333333333335 0 0 1 6.3999999999999995 2.0666666666666664 5.7333333333333325 5.7333333333333325 0 0 1 0.6933333333333334 2.8666666666666663A8.36 8.36 0 0 0 61.413333333333334 45.33333333333333a6.186666666666666 6.186666666666666 0 0 0 -0.07999999999999999 -5.493333333333333 4.866666666666666 4.866666666666666 0 0 0 -6.3999999999999995 -2.0666666666666664l-2.6666666666666665 1.1866666666666665 -0.8533333333333333 -2.7466666666666666a4.866666666666666 4.866666666666666 0 0 0 -5.786666666666666 -3.4266666666666663 6.2 6.2 0 0 0 -4.199999999999999 3.5733333333333333 8 8 0 0 0 -0.6933333333333334 2.92 5.626666666666666 5.626666666666666 0 0 1 2.6133333333333333 -1.4Z" fill="#ff866e" stroke-width="1"></path>
|
|
13
|
+
<path d="M61.33333333333333 39.839999999999996a6.186666666666666 6.186666666666666 0 0 1 0.07999999999999999 5.493333333333333 8 8 0 0 1 -4.6 4.293333333333333L45.81333333333333 53.33333333333333 41.33333333333333 42.666666666666664a8 8 0 0 1 0.15999999999999998 -6.293333333333333 6.2 6.2 0 0 1 4.199999999999999 -3.5733333333333333 4.866666666666666 4.866666666666666 0 0 1 5.786666666666666 3.4266666666666663l0.8533333333333333 2.7466666666666666 2.6666666666666665 -1.1866666666666665A4.866666666666666 4.866666666666666 0 0 1 61.33333333333333 39.839999999999996Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M28.68 37.69333333333333a2.6666666666666665 2.6666666666666665 0 0 1 1.3333333333333333 -0.36 2.6666666666666665 2.6666666666666665 0 1 1 0 5.333333333333333 2.6666666666666665 2.6666666666666665 0 1 1 0 5.333333333333333 2.6666666666666665 2.6666666666666665 0 0 1 -1.3333333333333333 -0.36" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M9.333333333333332 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S14.506666666666668 33.33333333333333 12.666666666666666 33.33333333333333 9.333333333333332 34.22666666666667 9.333333333333332 35.33333333333333Z" fill="#ffaa54" stroke-width="1"></path>
|
|
16
|
+
<path d="M47.33333333333333 27.333333333333332a2.333333333333333 2.333333333333333 0 0 1 -4.666666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M14.666666666666666 27.333333333333332a2.333333333333333 2.333333333333333 0 0 1 -4.666666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Loudly-Crying-Face--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Loudly Crying Face Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
7
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
8
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
9
|
+
<path d="m22.666666666666664 28.666666666666664 -11.333333333333332 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="m41.33333333333333 28.666666666666664 11.333333333333332 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M23.92 39.33333333333333a1.2533333333333332 1.2533333333333332 0 0 0 -0.9466666666666665 0.44 1.3333333333333333 1.3333333333333333 0 0 0 -0.29333333333333333 1.0133333333333332 9.453333333333333 9.453333333333333 0 0 0 18.666666666666664 0 1.3333333333333333 1.3333333333333333 0 0 0 -0.29333333333333333 -1.0133333333333332 1.2533333333333332 1.2533333333333332 0 0 0 -0.9466666666666665 -0.44Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M39.42666666666666 45.120000000000005A15.159999999999998 15.159999999999998 0 0 0 32 43.373333333333335a15.159999999999998 15.159999999999998 0 0 0 -7.426666666666667 1.7466666666666666 9.546666666666667 9.546666666666667 0 0 0 14.853333333333333 0Z" fill="#ff87af" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M14 48.346666666666664a26.666666666666664 26.666666666666664 0 0 0 6.666666666666666 4.466666666666667V28.666666666666664h-6.666666666666666Z" fill="#4aeff7" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M50 48.346666666666664a26.666666666666664 26.666666666666664 0 0 1 -6.666666666666666 4.466666666666667V28.666666666666664h6.666666666666666Z" fill="#4aeff7" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Lying-Face--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Lying Face Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
9
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
11
|
+
<path d="M20.666666666666664 26a1.3333333333333333 1.3333333333333333 0 1 1 -1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 1 1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M43.33333333333333 26a1.3333333333333333 1.3333333333333333 0 1 0 1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 0 -1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M26 46a18.786666666666665 18.786666666666665 0 0 1 6 -1.3333333333333333 18.786666666666665 18.786666666666665 0 0 1 6 1.3333333333333333" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M34 33.33333333333333H60a2.6666666666666665 2.6666666666666665 0 0 1 0 5.333333333333333H34" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Man-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Man 1 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M15.333333333333332 59.33333333333333a16.666666666666664 2 0 1 0 33.33333333333333 0 16.666666666666664 2 0 1 0 -33.33333333333333 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 6.013333333333333a19.333333333333332 19.333333333333332 0 0 0 -4.84 0.6533333333333333c-3.6799999999999997 0.8266666666666667 -8.466666666666665 2.2266666666666666 -12.799999999999999 1.3333333333333333A8.253333333333334 8.253333333333334 0 0 0 16 14.373333333333331a19.37333333333333 19.37333333333333 0 0 0 -3.466666666666667 11.093333333333334v10.186666666666666h38.92V25.46666666666667A19.453333333333333 19.453333333333333 0 0 0 32 6.013333333333333Z" fill="#724f3d" stroke-width="1"></path>
|
|
7
|
+
<path d="M32 6.013333333333333a19.333333333333332 19.333333333333332 0 0 0 -4.84 0.6533333333333333c-3.6799999999999997 0.8266666666666667 -8.466666666666665 2.2266666666666666 -12.799999999999999 1.3333333333333333a8.733333333333333 8.733333333333333 0 0 0 1.3333333333333333 5.959999999999999c4 0.37333333333333335 8.16 -0.8133333333333332 11.466666666666665 -1.5599999999999998a19.453333333333333 19.453333333333333 0 0 1 24.29333333333333 18.85333333333333V25.46666666666667A19.453333333333333 19.453333333333333 0 0 0 32 6.013333333333333Z" fill="#a86c4d" stroke-width="1"></path>
|
|
8
|
+
<path d="M32 6.013333333333333a19.333333333333332 19.333333333333332 0 0 0 -4.84 0.6533333333333333c-3.6799999999999997 0.8266666666666667 -8.466666666666665 2.2266666666666666 -12.799999999999999 1.3333333333333333A8.253333333333334 8.253333333333334 0 0 0 16 14.373333333333331a19.37333333333333 19.37333333333333 0 0 0 -3.466666666666667 11.093333333333334v10.186666666666666h38.92V25.46666666666667A19.453333333333333 19.453333333333333 0 0 0 32 6.013333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="M53.53333333333333 34.17333333333333a3.6 3.6 0 0 0 -2.76 -3.0533333333333332l-1.16 -0.3333333333333333A4 4 0 0 1 46.666666666666664 26.88v-4.093333333333333a3.6933333333333334 3.6933333333333334 0 0 0 -2.7733333333333334 -3.5733333333333333A30.666666666666664 30.666666666666664 0 0 1 32 21.333333333333332a30.666666666666664 30.666666666666664 0 0 1 -11.866666666666667 -2.1466666666666665 3.6933333333333334 3.6933333333333334 0 0 0 -2.8 3.6v4.093333333333333a4 4 0 0 1 -2.973333333333333 3.9066666666666667l-1.16 0.3333333333333333a3.5066666666666664 3.5066666666666664 0 0 0 0.8133333333333332 6.946666666666666h0.22666666666666668a17.93333333333333 17.93333333333333 0 0 0 35.46666666666667 0h0.22666666666666668a3.5866666666666664 3.5866666666666664 0 0 0 3.6 -3.893333333333333Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M21.24 33.74666666666666a1.5333333333333332 1.5333333333333332 0 1 0 1.5199999999999998 -1.5333333333333332 1.5333333333333332 1.5333333333333332 0 0 0 -1.5199999999999998 1.5333333333333332Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M42.76 33.74666666666666a1.5333333333333332 1.5333333333333332 0 1 1 -1.5199999999999998 -1.5333333333333332 1.5333333333333332 1.5333333333333332 0 0 1 1.5199999999999998 1.5333333333333332Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M27.08 43.45333333333333a0.8133333333333332 0.8133333333333332 0 0 0 -0.5866666666666667 0.26666666666666666 0.7599999999999999 0.7599999999999999 0 0 0 -0.17333333333333334 0.6266666666666666 5.76 5.76 0 0 0 11.36 0 0.7599999999999999 0.7599999999999999 0 0 0 -0.17333333333333334 -0.6266666666666666 0.8133333333333332 0.8133333333333332 0 0 0 -0.5866666666666667 -0.26666666666666666Z" fill="#ff6242" stroke-width="1"></path>
|
|
13
|
+
<path d="M32 45.82666666666666a7.066666666666666 7.066666666666666 0 0 0 -4.386666666666667 1.3333333333333333 5.84 5.84 0 0 0 8.773333333333333 0 7.066666666666666 7.066666666666666 0 0 0 -4.386666666666667 -1.3333333333333333Z" fill="#ffa694" stroke-width="1"></path>
|
|
14
|
+
<path d="M27.08 43.45333333333333a0.8133333333333332 0.8133333333333332 0 0 0 -0.5866666666666667 0.26666666666666666 0.7599999999999999 0.7599999999999999 0 0 0 -0.17333333333333334 0.6266666666666666 5.76 5.76 0 0 0 11.36 0 0.7599999999999999 0.7599999999999999 0 0 0 -0.17333333333333334 -0.6266666666666666 0.8133333333333332 0.8133333333333332 0 0 0 -0.5866666666666667 -0.26666666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M18.25333333333333 40.25333333333333a1.9866666666666666 1.1866666666666665 0 1 0 3.973333333333333 0 1.9866666666666666 1.1866666666666665 0 1 0 -3.973333333333333 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
16
|
+
<path d="M41.773333333333326 40.25333333333333a1.9866666666666666 1.1866666666666665 0 1 0 3.973333333333333 0 1.9866666666666666 1.1866666666666665 0 1 0 -3.973333333333333 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Man-Facepalming-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Man Facepalming 1 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M14 60.666666666666664a18 2 0 1 0 36 0 18 2 0 1 0 -36 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 41.626666666666665A15.84 15.84 0 0 1 47.84 57.46666666666667V60H16.159999999999997v-2.533333333333333A15.84 15.84 0 0 1 32 41.626666666666665Z" fill="#00b8f0" stroke-width="1"></path>
|
|
7
|
+
<path d="M32 41.626666666666665A15.84 15.84 0 0 0 16.159999999999997 57.46666666666667V60h0.09333333333333334A15.84 15.84 0 0 1 32 45.906666666666666 15.84 15.84 0 0 1 47.74666666666667 60h0.09333333333333334v-2.533333333333333A15.84 15.84 0 0 0 32 41.626666666666665Z" fill="#009fd9" stroke-width="1"></path>
|
|
8
|
+
<path d="M32 41.626666666666665h0A15.84 15.84 0 0 1 47.84 57.46666666666667V60l0 0H16.159999999999997l0 0v-2.533333333333333A15.84 15.84 0 0 1 32 41.626666666666665Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="m22.746666666666663 60 0 -3.2133333333333334" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="m41.25333333333333 60 0 -3.2133333333333334" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="m28.613333333333333 36.22666666666667 6.786666666666666 0 0 10.586666666666666 -6.786666666666666 0Z" fill="#ebcb00" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M32 9.213333333333333a13.106666666666666 13.106666666666666 0 0 0 -3.253333333333333 0.41333333333333333c-2.48 0.5599999999999999 -5.706666666666667 1.4933333333333334 -8.626666666666665 0.9333333333333332a5.6 5.6 0 0 0 1.1199999999999999 4.279999999999999 13.08 13.08 0 0 0 -2.333333333333333 7.466666666666666v6.853333333333333h26.186666666666667v-6.853333333333333A13.093333333333334 13.093333333333334 0 0 0 32 9.213333333333333Z" fill="#724f3d" stroke-width="1"></path>
|
|
13
|
+
<path d="M32 9.213333333333333a13.106666666666666 13.106666666666666 0 0 0 -3.253333333333333 0.41333333333333333c-2.48 0.5599999999999999 -5.706666666666667 1.4933333333333334 -8.626666666666665 0.9333333333333332a5.959999999999999 5.959999999999999 0 0 0 0.9066666666666667 4 25.866666666666664 25.866666666666664 0 0 0 7.72 -1.0533333333333332 13.08 13.08 0 0 1 16.346666666666664 12.68v-3.88A13.093333333333334 13.093333333333334 0 0 0 32 9.213333333333333Z" fill="#a86c4d" stroke-width="1"></path>
|
|
14
|
+
<path d="M32 9.213333333333333a13.106666666666666 13.106666666666666 0 0 0 -3.253333333333333 0.41333333333333333c-2.48 0.5599999999999999 -5.706666666666667 1.4933333333333334 -8.626666666666665 0.9333333333333332a5.6 5.6 0 0 0 1.1199999999999999 4.279999999999999 13.08 13.08 0 0 0 -2.333333333333333 7.466666666666666v6.853333333333333h26.186666666666667v-6.853333333333333A13.093333333333334 13.093333333333334 0 0 0 32 9.213333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M46.493333333333325 28.16a2.44 2.44 0 0 0 -1.853333333333333 -2.0533333333333332l-0.7866666666666666 -0.21333333333333332a2.7466666666666666 2.7466666666666666 0 0 1 -2 -2.6666666666666665v-2.7199999999999998A2.5066666666666664 2.5066666666666664 0 0 0 40 18.093333333333334a20.453333333333333 20.453333333333333 0 0 1 -8 1.4533333333333334 20.453333333333333 20.453333333333333 0 0 1 -8 -1.4533333333333334 2.5066666666666664 2.5066666666666664 0 0 0 -1.8666666666666665 2.413333333333333v2.7466666666666666a2.7466666666666666 2.7466666666666666 0 0 1 -2 2.6666666666666665l-0.7866666666666666 0.21333333333333332a2.44 2.44 0 0 0 -1.853333333333333 2.0533333333333332 2.413333333333333 2.413333333333333 0 0 0 2.413333333333333 2.6666666666666665h0.14666666666666667a12 12 0 0 0 23.866666666666664 0h0.14666666666666667a2.413333333333333 2.413333333333333 0 0 0 2.4266666666666667 -2.6933333333333334Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M22.746666666666663 32.25333333333333a1.3333333333333333 0.7999999999999999 0 1 0 2.6666666666666665 0 1.3333333333333333 0.7999999999999999 0 1 0 -2.6666666666666665 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
17
|
+
<path d="M40 37.33333333333333a7.586666666666667 7.586666666666667 0 0 0 0.44 -2.1466666666666665c0 -1.0533333333333332 -0.44 -3.6533333333333333 0.3866666666666666 -5.039999999999999a14.746666666666666 14.746666666666666 0 0 1 0.8533333333333333 -1.3333333333333333 0.6933333333333334 0.6933333333333334 0 0 0 -0.14666666666666667 -0.9733333333333333h0a1.7866666666666666 1.7866666666666666 0 0 0 -2.2399999999999998 0.07999999999999999h0a3.5866666666666664 3.5866666666666664 0 0 0 -1.1333333333333333 1.9333333333333331l-0.15999999999999998 0.8133333333333332 -2.36 -7.253333333333334a1.1333333333333333 1.1333333333333333 0 0 0 -1.3333333333333333 -0.7599999999999999h0a1.1333333333333333 1.1333333333333333 0 0 0 -0.8666666666666667 1.4266666666666667l1.48 5.08 -2.5866666666666664 -5.573333333333332a1.2133333333333334 1.2133333333333334 0 0 0 -1.6666666666666665 -0.5333333333333333h0a1.2133333333333334 1.2133333333333334 0 0 0 -0.5599999999999999 1.5199999999999998l2.173333333333333 5.706666666666667 -2.466666666666667 -4.56a1.0666666666666667 1.0666666666666667 0 0 0 -1.4666666666666668 -0.42666666666666664h0a1.08 1.08 0 0 0 -0.44 1.3733333333333333l2.253333333333333 4.506666666666666 -1.72 -2.5199999999999996a1.1466666666666665 1.1466666666666665 0 0 0 -1.7733333333333334 -0.15999999999999998h0a1.16 1.16 0 0 0 -0.26666666666666666 1.3333333333333333 82.06666666666666 82.06666666666666 0 0 0 4.506666666666666 8.64c1.1333333333333333 1.3333333333333333 1.6266666666666665 1.5733333333333333 2.5599999999999996 1.6933333333333334 1.48 0.18666666666666668 5.799999999999999 -1.6666666666666665 6.533333333333333 -2.8266666666666667Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
<path d="m38.48 60 -6.333333333333333 -17.733333333333334a1.3333333333333333 1.3333333333333333 0 0 1 0.6933333333333334 -1.6533333333333333l6.466666666666666 -3.0666666666666664a1.3333333333333333 1.3333333333333333 0 0 1 1.7866666666666666 0.6533333333333333L50.84 60Z" fill="#00b8f0" stroke-width="1"></path>
|
|
19
|
+
<path d="m32.97333333333333 44.57333333333333 5.16 -2.453333333333333a1.3333333333333333 1.3333333333333333 0 0 1 1.8 0.6666666666666666L47.626666666666665 60h3.2133333333333334l-9.746666666666666 -21.8a1.3333333333333333 1.3333333333333333 0 0 0 -1.7866666666666666 -0.6533333333333333l-6.466666666666666 3.0666666666666664a1.3333333333333333 1.3333333333333333 0 0 0 -0.6933333333333334 1.6533333333333333Z" fill="#4acfff" stroke-width="1"></path>
|
|
20
|
+
<path d="m38.48 60 -6.333333333333333 -17.733333333333334a1.3333333333333333 1.3333333333333333 0 0 1 0.6933333333333334 -1.6533333333333333l6.466666666666666 -3.0666666666666664a1.3333333333333333 1.3333333333333333 0 0 1 1.7866666666666666 0.6533333333333333L50.84 60Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
21
|
+
</svg>
|