feat: select icons from emoji picker (#10119)

This commit is contained in:
Kayla Washburn
2023-10-09 09:50:24 -06:00
committed by GitHub
parent bda68b143a
commit 17869ecb74
31 changed files with 169 additions and 45 deletions
+1 -1
View File
@@ -32,7 +32,7 @@
},
"dependencies": {
"@emoji-mart/data": "1.1.2",
"@emoji-mart/react": "1.0.1",
"@emoji-mart/react": "1.1.1",
"@emotion/css": "11.11.2",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
+4 -4
View File
@@ -13,8 +13,8 @@ dependencies:
specifier: 1.1.2
version: 1.1.2
'@emoji-mart/react':
specifier: 1.0.1
version: 1.0.1(emoji-mart@5.4.0)(react@18.2.0)
specifier: 1.1.1
version: 1.1.1(emoji-mart@5.4.0)(react@18.2.0)
'@emotion/css':
specifier: 11.11.2
version: 11.11.2
@@ -2234,8 +2234,8 @@ packages:
resolution: {integrity: sha512-1HP8BxD2azjqWJvxIaWAMyTySeZY0Osr83ukYjltPVkNXeJvTz7yDrPLBtnrD5uqJ3tg4CcLuuBW09wahqL/fg==}
dev: false
/@emoji-mart/react@1.0.1(emoji-mart@5.4.0)(react@18.2.0):
resolution: {integrity: sha512-ALhLD96BOL5w+a4NI5NpmfqfF1aVjjj2qJE0dLst/OhjBfVmpteWNgn/h8LZy9ulU6AnbeS+13KnPFzDjCvRRw==}
/@emoji-mart/react@1.1.1(emoji-mart@5.4.0)(react@18.2.0):
resolution: {integrity: sha512-NMlFNeWgv1//uPsvLxvGQoIerPuVdXwK/EUek8OOkJ6wVOWPUizRBJU0hDqWZCOROVpfBgCemaC3m6jDOXi03g==}
peerDependencies:
emoji-mart: ^5.2
react: ^16.8 || ^17 || ^18
+37 -4
View File
@@ -1,9 +1,42 @@
declare module "@emoji-mart/react" {
const Picker: React.FC<{
interface CustomCategory {
id: string;
name: string;
emojis: CustomEmoji[];
}
interface CustomEmoji {
id: string;
name: string;
keywords: string[];
skins: CustomEmojiSkin[];
}
interface CustomEmojiSkin {
src: string;
}
type EmojiData = EmojiResource & {
id: string;
keywords: string[];
name: string;
native?: string;
shortcodes: string;
};
type EmojiResource =
| { unified: undefined; src: string }
| { unified: string; src: undefined };
const EmojiPicker: React.FC<{
set: "native" | "apple" | "facebook" | "google" | "twitter";
theme: "dark" | "light";
data: Record<string, unknown>;
onEmojiSelect: (emojiData: { unified: string }) => void;
data: unknown;
custom: CustomCategory[];
emojiButtonSize?: number;
emojiSize?: number;
onEmojiSelect: (emoji: EmojiData) => void;
}>;
export default Picker;
export default EmojiPicker;
}
@@ -0,0 +1,28 @@
import { action } from "@storybook/addon-actions";
import IconField from "./IconField";
import type { Meta, StoryObj } from "@storybook/react";
const meta: Meta<typeof IconField> = {
title: "components/IconField",
component: IconField,
args: {
onPickEmoji: action("onPickEmoji"),
},
};
export default meta;
type Story = StoryObj<typeof IconField>;
export const Example: Story = {};
export const EmojiSelected: Story = {
args: {
value: "/emojis/1f3f3-fe0f-200d-26a7-fe0f.png",
},
};
export const IconSelected: Story = {
args: {
value: "/icon/fedora.svg",
},
};
+34 -10
View File
@@ -2,18 +2,40 @@ import Button from "@mui/material/Button";
import InputAdornment from "@mui/material/InputAdornment";
import Popover from "@mui/material/Popover";
import TextField, { TextFieldProps } from "@mui/material/TextField";
import { DropdownArrow } from "components/DropdownArrow/DropdownArrow";
import { useRef, FC, useState } from "react";
import Picker from "@emoji-mart/react";
import { makeStyles } from "@mui/styles";
import Picker from "@emoji-mart/react";
import { useRef, FC, useState } from "react";
import { DropdownArrow } from "components/DropdownArrow/DropdownArrow";
import { Stack } from "components/Stack/Stack";
import { colors } from "theme/colors";
import data from "@emoji-mart/data/sets/14/twitter.json";
import { Stack } from "components/Stack/Stack";
import icons from "theme/icons.json";
// See: https://github.com/missive/emoji-mart/issues/51#issuecomment-287353222
const urlFromUnifiedCode = (unified: string) =>
`/emojis/${unified.replace(/-fe0f$/, "")}.png`;
type IconFieldProps = TextFieldProps & {
onPickEmoji: (value: string) => void;
};
const custom = [
{
id: "icons",
name: "Icons",
emojis: icons.map((icon) => {
const id = icon.split(".")[0];
return {
id,
name: id,
keywords: id.split("-"),
skins: [{ src: `/icon/${icon}` }],
};
}),
},
];
const IconField: FC<IconFieldProps> = ({ onPickEmoji, ...textFieldProps }) => {
if (
typeof textFieldProps.value !== "string" &&
@@ -69,14 +91,12 @@ const IconField: FC<IconFieldProps> = ({ onPickEmoji, ...textFieldProps }) => {
}}
>
<Picker
set="twitter"
theme="dark"
data={data}
onEmojiSelect={(emojiData) => {
// See: https://github.com/missive/emoji-mart/issues/51#issuecomment-287353222
const value = `/emojis/${emojiData.unified.replace(
/-fe0f$/,
"",
)}.png`;
custom={custom}
onEmojiSelect={(emoji) => {
const value = emoji.src ?? urlFromUnifiedCode(emoji.unified);
onPickEmoji(value);
setIsEmojiPickerOpen(false);
}}
@@ -92,6 +112,9 @@ const useStyles = makeStyles((theme) => ({
"--rgb-background": theme.palette.background.paper,
"--rgb-input": colors.gray[17],
"--rgb-color": colors.gray[4],
// Hack to prevent the right side from being cut off
width: 350,
},
},
adornment: {
@@ -103,6 +126,7 @@ const useStyles = makeStyles((theme) => ({
"& img": {
maxWidth: "100%",
objectFit: "contain",
},
},
}));
@@ -1,4 +1,4 @@
import { lazy, Suspense, ComponentProps } from "react";
import { lazy, Suspense, type ComponentProps } from "react";
const IconField = lazy(() => import("./IconField"));
+1 -1
View File
@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" data-name="Layer 1" viewBox="0 0 409.24 496.55"><defs><style>.cls-1{fill:#073042}.cls-2{fill:#4285f4}.cls-3{fill:#3870b2}.cls-4{fill:#fff}.cls-5{fill:#3ddc84}</style></defs><title>android-studio</title><path d="M153.34,62.74H41.18A41.3,41.3,0,0,0,0,104a40,40,0,0,0,38.74,41.14l1.22,0H154.54Z" class="cls-1"/><path d="M408.84,429.74H41.05A41.3,41.3,0,0,1,0,388.58V103.77A41.3,41.3,0,0,0,41.1,145.28c.92,0,1.83,0,2.74-.08H348.9s59.94-5.2,59.94,40Z" class="cls-2"/><path d="M214.62,231.65a22.78,22.78,0,1,0,21.6,14.41A22.92,22.92,0,0,0,214.62,231.65Z"/><path d="M237.27,283.87a37,37,0,0,0-21.18-66.6h1.2a33.82,33.82,0,0,1,6.52,0V194.35a7.3,7.3,0,0,0-3.46-6.52,7.19,7.19,0,0,0-7.33,0,7.3,7.3,0,0,0-3.46,6.52v23.32a37.16,37.16,0,0,0-16.25,66.6L125.5,429.21h44.23L201,362.6a16.26,16.26,0,0,1,14.66-9.19,16,16,0,0,1,14.52,9.19l32.23,66.61H307.2Zm-22.65-6.53a23,23,0,1,1,22.91-22.91,22.91,22.91,0,0,1-22.91,22.91Z" class="cls-3"/><path d="M129.1,83H286.42V111.9H129.1Z" class="cls-4"/><path d="M202.37,231.65a22.77,22.77,0,1,1-16.26,6.66A23.25,23.25,0,0,1,202.37,231.65Zm9-13.32v-24a7.3,7.3,0,0,0-3.46-6.52,7.19,7.19,0,0,0-7.33,0,7.32,7.32,0,0,0-3.46,6.52v23.32a37.16,37.16,0,0,0-16.25,66.6L95.8,467.44a20.24,20.24,0,0,0,1.46,20.38,20.54,20.54,0,0,0,18.52,8.66,20.13,20.13,0,0,0,16.52-12L189,362.6a16.39,16.39,0,0,1,14.66-9.19,16,16,0,0,1,14.52,9.19l58.21,121.22a20.13,20.13,0,1,0,36.23-17.58L225,283.87a37.48,37.48,0,0,0-13.32-65.4" class="cls-1"/><path d="M263.64,108.43a10.66,10.66,0,0,1-7.72-18.25,10.79,10.79,0,0,1,18.38,7.6,10.65,10.65,0,0,1-10.66,10.65h0m-118.42,0a10.66,10.66,0,0,1-7.6-18.25,10.79,10.79,0,0,1,16.69,13.69,10.63,10.63,0,0,1-1.5,1.5,10.51,10.51,0,0,1-7.59,3.06m122.29-64.6,21.31-37a4.53,4.53,0,0,0-7.73-4.53L259.51,39.83a134.25,134.25,0,0,0-110,0L127.77,2.26A4.54,4.54,0,0,0,123.9,0,4.92,4.92,0,0,0,120,2.26a4.53,4.53,0,0,0,0,4.53l21.45,37A126.8,126.8,0,0,0,76,145.2h257.1A126.85,126.85,0,0,0,267.51,43.83" class="cls-5"/><path d="M371.94,224.19H355a2.14,2.14,0,0,0-2.14,2.14h0V493.41a2.13,2.13,0,0,0,2,2.13h17.45a37,37,0,0,0,36.9-37V187.16a37,37,0,0,1-37,37Z" class="cls-1"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" data-name="Layer 1" viewBox="0 0 409.24 496.55" width="409.24px" height="496.55px"><defs><style>.cls-1{fill:#073042}.cls-2{fill:#4285f4}.cls-3{fill:#3870b2}.cls-4{fill:#fff}.cls-5{fill:#3ddc84}</style></defs><title>android-studio</title><path d="M153.34,62.74H41.18A41.3,41.3,0,0,0,0,104a40,40,0,0,0,38.74,41.14l1.22,0H154.54Z" class="cls-1"/><path d="M408.84,429.74H41.05A41.3,41.3,0,0,1,0,388.58V103.77A41.3,41.3,0,0,0,41.1,145.28c.92,0,1.83,0,2.74-.08H348.9s59.94-5.2,59.94,40Z" class="cls-2"/><path d="M214.62,231.65a22.78,22.78,0,1,0,21.6,14.41A22.92,22.92,0,0,0,214.62,231.65Z"/><path d="M237.27,283.87a37,37,0,0,0-21.18-66.6h1.2a33.82,33.82,0,0,1,6.52,0V194.35a7.3,7.3,0,0,0-3.46-6.52,7.19,7.19,0,0,0-7.33,0,7.3,7.3,0,0,0-3.46,6.52v23.32a37.16,37.16,0,0,0-16.25,66.6L125.5,429.21h44.23L201,362.6a16.26,16.26,0,0,1,14.66-9.19,16,16,0,0,1,14.52,9.19l32.23,66.61H307.2Zm-22.65-6.53a23,23,0,1,1,22.91-22.91,22.91,22.91,0,0,1-22.91,22.91Z" class="cls-3"/><path d="M129.1,83H286.42V111.9H129.1Z" class="cls-4"/><path d="M202.37,231.65a22.77,22.77,0,1,1-16.26,6.66A23.25,23.25,0,0,1,202.37,231.65Zm9-13.32v-24a7.3,7.3,0,0,0-3.46-6.52,7.19,7.19,0,0,0-7.33,0,7.32,7.32,0,0,0-3.46,6.52v23.32a37.16,37.16,0,0,0-16.25,66.6L95.8,467.44a20.24,20.24,0,0,0,1.46,20.38,20.54,20.54,0,0,0,18.52,8.66,20.13,20.13,0,0,0,16.52-12L189,362.6a16.39,16.39,0,0,1,14.66-9.19,16,16,0,0,1,14.52,9.19l58.21,121.22a20.13,20.13,0,1,0,36.23-17.58L225,283.87a37.48,37.48,0,0,0-13.32-65.4" class="cls-1"/><path d="M263.64,108.43a10.66,10.66,0,0,1-7.72-18.25,10.79,10.79,0,0,1,18.38,7.6,10.65,10.65,0,0,1-10.66,10.65h0m-118.42,0a10.66,10.66,0,0,1-7.6-18.25,10.79,10.79,0,0,1,16.69,13.69,10.63,10.63,0,0,1-1.5,1.5,10.51,10.51,0,0,1-7.59,3.06m122.29-64.6,21.31-37a4.53,4.53,0,0,0-7.73-4.53L259.51,39.83a134.25,134.25,0,0,0-110,0L127.77,2.26A4.54,4.54,0,0,0,123.9,0,4.92,4.92,0,0,0,120,2.26a4.53,4.53,0,0,0,0,4.53l21.45,37A126.8,126.8,0,0,0,76,145.2h257.1A126.85,126.85,0,0,0,267.51,43.83" class="cls-5"/><path d="M371.94,224.19H355a2.14,2.14,0,0,0-2.14,2.14h0V493.41a2.13,2.13,0,0,0,2,2.13h17.45a37,37,0,0,0,36.9-37V187.16a37,37,0,0,1-37,37Z" class="cls-1"/></svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

+1 -1
View File
@@ -1,4 +1,4 @@
<svg viewBox="0 0 111 110" xmlns="http://www.w3.org/2000/svg">
<svg viewBox="0 0 111 110" xmlns="http://www.w3.org/2000/svg" width="111px" height="110px">
<g clipPath="url(#clip0_1916_993)">
<path
d="M83.0365 94.769L0 82.288L83.0365 110L111 98.365V11.2115L83.0365 0V94.769Z"

Before

Width:  |  Height:  |  Size: 695 B

After

Width:  |  Height:  |  Size: 724 B

+1 -1
View File
@@ -1,4 +1,4 @@
<svg viewBox="0 0 501 450" xmlns="http://www.w3.org/2000/svg">
<svg viewBox="0 0 501 450" xmlns="http://www.w3.org/2000/svg" width="501px" height="450px">
<g clip-path="url(#clip0_1917_1001)">
<path
d="M17.0206 0.0721333C14.6826 0.0419786 12.3663 0.523969 10.2344 1.48427C8.10245 2.44457 6.20658 3.8599 4.67987 5.63088C3.15316 7.40186 2.03262 9.48557 1.39691 11.7357C0.761211 13.9858 0.625758 16.3479 1.00007 18.6559L69.0071 431.504C69.8544 436.556 72.4548 441.148 76.3515 444.474C80.2481 447.799 85.1919 449.645 90.3144 449.688H416.572C420.412 449.737 424.142 448.405 427.082 445.935C430.023 443.465 431.978 440.021 432.592 436.23L500.6 18.736C500.974 16.428 500.838 14.0659 500.203 11.8158C499.567 9.56568 498.446 7.48197 496.92 5.71098C495.393 3.94 493.497 2.52467 491.365 1.56437C489.233 0.604073 486.917 0.122079 484.579 0.152234L17.0206 0.0721333ZM303.387 298.454H199.254L171.058 151.146H328.619L303.387 298.454Z"

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

+1 -1
View File
@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" data-name="Layer 1" viewBox="0 0 128 128"><defs><linearGradient id="linear-gradient" x1="40.69" x2="83.48" y1="-676.56" y2="-676.56" gradientTransform="matrix(1, 0, 0, -1, 0, -648.86)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#ed358c"/><stop offset=".16" stop-color="#e9388c"/><stop offset=".3" stop-color="#de418c"/><stop offset=".43" stop-color="#cc508c"/><stop offset=".57" stop-color="#b2658d"/><stop offset=".7" stop-color="#90808d"/><stop offset=".83" stop-color="#67a18e"/><stop offset=".95" stop-color="#37c78f"/><stop offset="1" stop-color="#22d88f"/></linearGradient><linearGradient id="linear-gradient-2" x1="32.58" x2="13.76" y1="-665.27" y2="-791.59" gradientTransform="matrix(1, 0, 0, -1, 0, -648.86)" gradientUnits="userSpaceOnUse"><stop offset=".09" stop-color="#22d88f"/><stop offset=".9" stop-color="#029de0"/></linearGradient><linearGradient id="linear-gradient-3" x1="116.68" x2="-12.09" y1="-660.66" y2="-796.66" xlink:href="#linear-gradient-2"/><linearGradient id="linear-gradient-4" x1="73.35" x2="122.29" y1="-739.1" y2="-746.06" xlink:href="#linear-gradient-2"/></defs><title>icon_CLion</title><g><polygon fill="url(#linear-gradient)" points="49.2 51.8 40.6 55.4 48.4 0 77.8 16.2 49.2 51.8"/><polygon fill="url(#linear-gradient-2)" points="44.6 76.8 48.8 0 11.8 23.2 0 94 44.6 76.8"/><polygon fill="url(#linear-gradient-3)" points="125.4 38.4 109 4.8 77.8 16.2 55 41.4 0 94 41.6 124.4 93.6 77.2 125.4 38.4"/><polygon fill="url(#linear-gradient-4)" points="53.8 54.6 46.6 98.4 75.8 121 107.8 128 128 82.4 53.8 54.6"/></g><g><rect width="80" height="80" x="24" y="24"/><rect width="30" height="5" x="31.6" y="89" fill="#fff"/><path fill="#fff" d="M31,51.2h0A16.83,16.83,0,0,1,48.2,34c6.2,0,10,2,13,5.2l-4.6,5.4c-2.6-2.4-5.2-3.8-8.4-3.8-5.6,0-9.6,4.6-9.6,10.4h0c0,5.6,4,10.4,9.6,10.4,3.8,0,6.2-1.6,8.8-3.8l4.6,4.6c-3.4,3.6-7.2,6-13.6,6A17,17,0,0,1,31,51.2"/><path fill="#fff" d="M66.6,34.4H74v27H88.4v6.2H66.6V34.4Z"/></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" data-name="Layer 1" viewBox="0 0 128 128" width="128px" height="128px"><defs><linearGradient id="linear-gradient" x1="40.69" x2="83.48" y1="-676.56" y2="-676.56" gradientTransform="matrix(1, 0, 0, -1, 0, -648.86)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#ed358c"/><stop offset=".16" stop-color="#e9388c"/><stop offset=".3" stop-color="#de418c"/><stop offset=".43" stop-color="#cc508c"/><stop offset=".57" stop-color="#b2658d"/><stop offset=".7" stop-color="#90808d"/><stop offset=".83" stop-color="#67a18e"/><stop offset=".95" stop-color="#37c78f"/><stop offset="1" stop-color="#22d88f"/></linearGradient><linearGradient id="linear-gradient-2" x1="32.58" x2="13.76" y1="-665.27" y2="-791.59" gradientTransform="matrix(1, 0, 0, -1, 0, -648.86)" gradientUnits="userSpaceOnUse"><stop offset=".09" stop-color="#22d88f"/><stop offset=".9" stop-color="#029de0"/></linearGradient><linearGradient id="linear-gradient-3" x1="116.68" x2="-12.09" y1="-660.66" y2="-796.66" xlink:href="#linear-gradient-2"/><linearGradient id="linear-gradient-4" x1="73.35" x2="122.29" y1="-739.1" y2="-746.06" xlink:href="#linear-gradient-2"/></defs><title>icon_CLion</title><g><polygon fill="url(#linear-gradient)" points="49.2 51.8 40.6 55.4 48.4 0 77.8 16.2 49.2 51.8"/><polygon fill="url(#linear-gradient-2)" points="44.6 76.8 48.8 0 11.8 23.2 0 94 44.6 76.8"/><polygon fill="url(#linear-gradient-3)" points="125.4 38.4 109 4.8 77.8 16.2 55 41.4 0 94 41.6 124.4 93.6 77.2 125.4 38.4"/><polygon fill="url(#linear-gradient-4)" points="53.8 54.6 46.6 98.4 75.8 121 107.8 128 128 82.4 53.8 54.6"/></g><g><rect width="80" height="80" x="24" y="24"/><rect width="30" height="5" x="31.6" y="89" fill="#fff"/><path fill="#fff" d="M31,51.2h0A16.83,16.83,0,0,1,48.2,34c6.2,0,10,2,13,5.2l-4.6,5.4c-2.6-2.4-5.2-3.8-8.4-3.8-5.6,0-9.6,4.6-9.6,10.4h0c0,5.6,4,10.4,9.6,10.4,3.8,0,6.2-1.6,8.8-3.8l4.6,4.6c-3.4,3.6-7.2,6-13.6,6A17,17,0,0,1,31,51.2"/><path fill="#fff" d="M66.6,34.4H74v27H88.4v6.2H66.6V34.4Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

+1 -1
View File
@@ -1,4 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none" width="100px" height="100px">
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="100" height="100">
<path fill-rule="evenodd" clip-rule="evenodd" d="M70.9119 99.3171C72.4869 99.9307 74.2828 99.8914 75.8725 99.1264L96.4608 89.2197C98.6242 88.1787 100 85.9892 100 83.5872V16.4133C100 14.0113 98.6243 11.8218 96.4609 10.7808L75.8725 0.873756C73.7862 -0.130129 71.3446 0.11576 69.5135 1.44695C69.252 1.63711 69.0028 1.84943 68.769 2.08341L29.3551 38.0415L12.1872 25.0096C10.589 23.7965 8.35363 23.8959 6.86933 25.2461L1.36303 30.2549C-0.452552 31.9064 -0.454633 34.7627 1.35853 36.417L16.2471 50.0001L1.35853 63.5832C-0.454633 65.2374 -0.452552 68.0938 1.36303 69.7453L6.86933 74.7541C8.35363 76.1043 10.589 76.2037 12.1872 74.9905L29.3551 61.9587L68.769 97.9167C69.3925 98.5406 70.1246 99.0104 70.9119 99.3171ZM75.0152 27.2989L45.1091 50.0001L75.0152 72.7012V27.2989Z" fill="white"/>
</mask>

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

+2 -1
View File
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="48px" height="48px"
viewBox="0 0 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
<g id="&#x421;&#x43B;&#x43E;&#x439;_1">
</g>
@@ -37,4 +38,4 @@
c-1.146-0.437-2.237-0.972-3.252-1.553c-0.775,1.586-1.341,3.103-1.722,4.276c1.202,0.291,2.823,0.608,4.613,0.779
C11.214,33.341,11.324,32.161,11.541,30.983z"/>
</g>
</svg>
</svg>

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

+1 -1
View File
@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0" y="0" enable-background="new 0 0 70 70" version="1.0" viewBox="0 0 70 70" xml:space="preserve"><g><g><polygon fill="#9775F8" points="65.5 10.9 70 39.5 53 49.4 49.8 33.2"/><linearGradient id="SVGID_1_" x1="41.069" x2="46.521" y1="54.357" y2="67.944" gradientTransform="matrix(1 0 0 -1 0 72)" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#9775f8"/><stop offset=".952" style="stop-color:#22d88f"/></linearGradient><polygon fill="url(#SVGID_1_)" points="65.5 10.9 40.5 0 19.4 17.5 49.8 33.2"/><linearGradient id="SVGID_2_" x1="17.067" x2="24.146" y1="35.739" y2="4.895" gradientTransform="matrix(1 0 0 -1 0 72)" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#9775f8"/><stop offset=".214" style="stop-color:#689cce"/><stop offset=".423" style="stop-color:#42bdac"/><stop offset=".59" style="stop-color:#2bd197"/><stop offset=".694" style="stop-color:#22d88f"/></linearGradient><polygon fill="url(#SVGID_2_)" points="47.3 70 18 30.6 9.3 36.4 .6 62.5"/><linearGradient id="SVGID_3_" x1="4.9" x2="66.239" y1="37.969" y2="4.102" gradientTransform="matrix(1 0 0 -1 0 72)" gradientUnits="userSpaceOnUse"><stop offset=".075" style="stop-color:#22d88f"/><stop offset=".72" style="stop-color:#9775f8"/></linearGradient><polygon fill="url(#SVGID_3_)" points="52.8 50.1 32.3 36.6 0 32.3 47.3 70"/><linearGradient id="SVGID_4_" x1="0" x2="61.646" y1="45.15" y2="45.15" gradientTransform="matrix(1 0 0 -1 0 72)" gradientUnits="userSpaceOnUse"><stop offset=".075" style="stop-color:#22d88f"/><stop offset=".266" style="stop-color:#5ab0b4"/><stop offset=".565" style="stop-color:#b86cf2"/><stop offset="1" style="stop-color:#ff59e6"/></linearGradient><polygon fill="url(#SVGID_4_)" points="0 .5 0 32.3 60.8 53.2 65.5 10.9"/></g><g><g><rect width="43.2" height="43.2" x="13.4" y="13.4"/><g><g><path fill="#FFF" d="M17.8,19h7c5.6,0,9.5,3.9,9.5,8.9V28c0,5-3.9,8.9-9.5,8.9h-7V19z M21.7,22.6v10.8h3 c3.2,0,5.4-2.2,5.4-5.3V28c0-3.2-2.2-5.4-5.4-5.4H21.7z"/><path fill="#FFF" d="M35,28L35,28c0-5.1,4-9.3,9.4-9.3c3.2,0,5.2,0.9,7,2.5l-2.5,3c-1.4-1.2-2.6-1.8-4.7-1.8 c-2.9,0-5.1,2.5-5.1,5.6V28c0,3.3,2.2,5.7,5.4,5.7c1.4,0,2.7-0.4,3.7-1.1V30h-4v-3.4H52v7.8c-1.8,1.6-4.4,2.8-7.6,2.8 C38.8,37.2,35,33.3,35,28z"/></g></g><rect width="16.2" height="2.7" x="17.4" y="48.5" fill="#FFF"/></g></g></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0" y="0" enable-background="new 0 0 70 70" version="1.0" viewBox="0 0 70 70" width="70px" height="70px" xml:space="preserve"><g><g><polygon fill="#9775F8" points="65.5 10.9 70 39.5 53 49.4 49.8 33.2"/><linearGradient id="SVGID_1_" x1="41.069" x2="46.521" y1="54.357" y2="67.944" gradientTransform="matrix(1 0 0 -1 0 72)" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#9775f8"/><stop offset=".952" style="stop-color:#22d88f"/></linearGradient><polygon fill="url(#SVGID_1_)" points="65.5 10.9 40.5 0 19.4 17.5 49.8 33.2"/><linearGradient id="SVGID_2_" x1="17.067" x2="24.146" y1="35.739" y2="4.895" gradientTransform="matrix(1 0 0 -1 0 72)" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#9775f8"/><stop offset=".214" style="stop-color:#689cce"/><stop offset=".423" style="stop-color:#42bdac"/><stop offset=".59" style="stop-color:#2bd197"/><stop offset=".694" style="stop-color:#22d88f"/></linearGradient><polygon fill="url(#SVGID_2_)" points="47.3 70 18 30.6 9.3 36.4 .6 62.5"/><linearGradient id="SVGID_3_" x1="4.9" x2="66.239" y1="37.969" y2="4.102" gradientTransform="matrix(1 0 0 -1 0 72)" gradientUnits="userSpaceOnUse"><stop offset=".075" style="stop-color:#22d88f"/><stop offset=".72" style="stop-color:#9775f8"/></linearGradient><polygon fill="url(#SVGID_3_)" points="52.8 50.1 32.3 36.6 0 32.3 47.3 70"/><linearGradient id="SVGID_4_" x1="0" x2="61.646" y1="45.15" y2="45.15" gradientTransform="matrix(1 0 0 -1 0 72)" gradientUnits="userSpaceOnUse"><stop offset=".075" style="stop-color:#22d88f"/><stop offset=".266" style="stop-color:#5ab0b4"/><stop offset=".565" style="stop-color:#b86cf2"/><stop offset="1" style="stop-color:#ff59e6"/></linearGradient><polygon fill="url(#SVGID_4_)" points="0 .5 0 32.3 60.8 53.2 65.5 10.9"/></g><g><g><rect width="43.2" height="43.2" x="13.4" y="13.4"/><g><g><path fill="#FFF" d="M17.8,19h7c5.6,0,9.5,3.9,9.5,8.9V28c0,5-3.9,8.9-9.5,8.9h-7V19z M21.7,22.6v10.8h3 c3.2,0,5.4-2.2,5.4-5.3V28c0-3.2-2.2-5.4-5.4-5.4H21.7z"/><path fill="#FFF" d="M35,28L35,28c0-5.1,4-9.3,9.4-9.3c3.2,0,5.2,0.9,7,2.5l-2.5,3c-1.4-1.2-2.6-1.8-4.7-1.8 c-2.9,0-5.1,2.5-5.1,5.6V28c0,3.3,2.2,5.7,5.4,5.7c1.4,0,2.7-0.4,3.7-1.1V30h-4v-3.4H52v7.8c-1.8,1.6-4.4,2.8-7.6,2.8 C38.8,37.2,35,33.3,35,28z"/></g></g><rect width="16.2" height="2.7" x="17.4" y="48.5" fill="#FFF"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

+1
View File
@@ -1,4 +1,5 @@
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="185.69px" height="237px"
viewBox="0 0 185.69 237" enable-background="new 0 0 185.69 237" xml:space="preserve">
<g>
<path fill="#333333" d="M135.96,0h-1.06H16.93C7.58,0,0,7.58,0,16.93v203.14C0,229.42,7.58,237,16.93,237h151.83

Before

Width:  |  Height:  |  Size: 600 B

After

Width:  |  Height:  |  Size: 634 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 6.5 KiB

+1 -1
View File
@@ -1,4 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 194 186">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 194 186" width="194px" height="186px">
<g clipPath="url(#clip0_1915_987)">
<path
d="M189.83 73.7299L189.56 73.0399L163.42 4.81995C162.888 3.48288 161.946 2.34863 160.73 1.57996C159.513 0.82434 158.093 0.460411 156.662 0.537307C155.232 0.614203 153.859 1.12822 152.73 2.00996C151.613 2.91701 150.803 4.14609 150.41 5.52995L132.76 59.53H61.2899L43.6399 5.52995C43.2571 4.13855 42.4453 2.90331 41.3199 1.99995C40.1907 1.11822 38.8181 0.6042 37.3875 0.527305C35.9569 0.450409 34.5371 0.814338 33.3199 1.56995C32.1062 2.34173 31.1653 3.47499 30.6299 4.80995L4.43991 73L4.17991 73.69C0.416933 83.522 -0.0475445 94.3109 2.8565 104.43C5.76055 114.549 11.8757 123.45 20.2799 129.79L20.3699 129.86L20.6099 130.03L60.4299 159.85L80.1299 174.76L92.1299 183.82C93.5336 184.886 95.2475 185.463 97.0099 185.463C98.7723 185.463 100.486 184.886 101.89 183.82L113.89 174.76L133.59 159.85L173.65 129.85L173.75 129.77C182.135 123.429 188.236 114.537 191.136 104.432C194.035 94.3262 193.577 83.5527 189.83 73.7299Z"

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

+1 -1
View File
@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0" y="0" enable-background="new 0 0 70 70" version="1.1" viewBox="0 0 70 70" xml:space="preserve"><g><linearGradient id="SVGID_1_" x1="218.31" x2="206.336" y1="276.731" y2="294.988" gradientTransform="matrix(1.5625 0 0 1.5625 -286.9062 -405.0312)" gradientUnits="userSpaceOnUse"><stop offset=".174" style="stop-color:#078efc"/><stop offset=".204" style="stop-color:#118afc"/><stop offset=".435" style="stop-color:#5971fc"/><stop offset=".627" style="stop-color:#8e5efc"/><stop offset=".77" style="stop-color:#af52fc"/><stop offset=".849" style="stop-color:#bb4efc"/></linearGradient><path fill="url(#SVGID_1_)" d="M57.274,22.361l9.541,21.197l-13.49,23.045L20.922,40.202L37.493,24.23L57.274,22.361z"/><path fill="#BB4EFC" d="M43.499,42.747l9.826,23.857L23.39,56.314l-2.468-16.111L43.499,42.747z"/><path fill="#078EFC" d="M24.281,9.433l13.776,7.06l-12.398,37.54L0.69,53.773l5.364-11.895L0.69,26.677L24.281,9.433z"/><linearGradient id="SVGID_2_" x1="188.25" x2="212.533" y1="278.506" y2="260.237" gradientTransform="matrix(1.5625 0 0 1.5625 -286.9062 -405.0312)" gradientUnits="userSpaceOnUse"><stop offset=".174" style="stop-color:#078efc"/><stop offset=".204" style="stop-color:#118afc"/><stop offset=".435" style="stop-color:#5971fc"/><stop offset=".627" style="stop-color:#8e5efc"/><stop offset=".77" style="stop-color:#af52fc"/><stop offset=".849" style="stop-color:#bb4efc"/></linearGradient><path fill="url(#SVGID_2_)" d="M41.563,0.479l6.515,22.17L0.69,26.677L15.761,0.479H41.563z"/><linearGradient id="SVGID_3_" x1="189.941" x2="220.469" y1="296.496" y2="276.879" gradientTransform="matrix(1.5625 0 0 1.5625 -286.9062 -405.0312)" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#078efc"/><stop offset=".106" style="stop-color:#15a7d3"/><stop offset=".228" style="stop-color:#23bfaa"/><stop offset=".348" style="stop-color:#2dd28b"/><stop offset=".463" style="stop-color:#35df74"/><stop offset=".573" style="stop-color:#39e767"/><stop offset=".67" style="stop-color:#3bea62"/></linearGradient><polygon fill="url(#SVGID_3_)" points="66.815 14.519 39.091 21.099 .69 53.773 25.458 66.604 46.973 44.423"/></g><g><rect width="44.083" height="44.083" x="11.711" y="11.5"/><rect width="16.531" height="2.645" x="16.119" y="48.309" fill="#FFF"/><g><path fill="#FFF" d="M14.607,25.88v-0.054c-0.18-5.295,3.967-9.734,9.262-9.913c0.09-0.003,0.179-0.005,0.269-0.005 c2.64-0.135,5.22,0.815,7.142,2.63l-2.52,3.206c-1.251-1.272-2.969-1.975-4.753-1.945c-3.083,0.226-5.41,2.889-5.22,5.974v0.054 c-0.258,3.091,2.039,5.805,5.13,6.063c0.125,0.01,0.251,0.017,0.377,0.019c1.347,0.04,2.67-0.365,3.765-1.151v-2.74h-4.025v-3.643 h7.895v8.328c-2.113,1.955-4.886,3.041-7.765,3.043c-5.162,0.123-9.446-3.963-9.569-9.125c0,0,0,0,0,0 C14.59,26.374,14.594,26.127,14.607,25.88z"/><path fill="#FFF" d="M33.609,25.88v-0.054c-0.141-5.335,4.069-9.774,9.405-9.915s9.774,4.069,9.915,9.405 c0.004,0.152,0.004,0.305,0.001,0.457v0.054c0.141,5.335-4.069,9.774-9.405,9.915c-5.335,0.141-9.774-4.069-9.915-9.405l0,0 C33.606,26.185,33.606,26.033,33.609,25.88z M48.75,25.88v-0.054c0.186-3.14-2.209-5.835-5.349-6.021 c-0.053-0.003-0.105-0.005-0.158-0.007c-3.096,0.078-5.542,2.65-5.464,5.746c0,0,0,0,0,0c0.002,0.076,0.005,0.152,0.01,0.229 v0.054c-0.186,3.14,2.209,5.835,5.349,6.021c0.053,0.003,0.105,0.005,0.158,0.007c3.096-0.078,5.542-2.65,5.464-5.746c0,0,0,0,0,0 C48.758,26.033,48.755,25.956,48.75,25.88z"/></g></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0" y="0" enable-background="new 0 0 70 70" version="1.1" viewBox="0 0 70 70" width="70px" height="70px" xml:space="preserve"><g><linearGradient id="SVGID_1_" x1="218.31" x2="206.336" y1="276.731" y2="294.988" gradientTransform="matrix(1.5625 0 0 1.5625 -286.9062 -405.0312)" gradientUnits="userSpaceOnUse"><stop offset=".174" style="stop-color:#078efc"/><stop offset=".204" style="stop-color:#118afc"/><stop offset=".435" style="stop-color:#5971fc"/><stop offset=".627" style="stop-color:#8e5efc"/><stop offset=".77" style="stop-color:#af52fc"/><stop offset=".849" style="stop-color:#bb4efc"/></linearGradient><path fill="url(#SVGID_1_)" d="M57.274,22.361l9.541,21.197l-13.49,23.045L20.922,40.202L37.493,24.23L57.274,22.361z"/><path fill="#BB4EFC" d="M43.499,42.747l9.826,23.857L23.39,56.314l-2.468-16.111L43.499,42.747z"/><path fill="#078EFC" d="M24.281,9.433l13.776,7.06l-12.398,37.54L0.69,53.773l5.364-11.895L0.69,26.677L24.281,9.433z"/><linearGradient id="SVGID_2_" x1="188.25" x2="212.533" y1="278.506" y2="260.237" gradientTransform="matrix(1.5625 0 0 1.5625 -286.9062 -405.0312)" gradientUnits="userSpaceOnUse"><stop offset=".174" style="stop-color:#078efc"/><stop offset=".204" style="stop-color:#118afc"/><stop offset=".435" style="stop-color:#5971fc"/><stop offset=".627" style="stop-color:#8e5efc"/><stop offset=".77" style="stop-color:#af52fc"/><stop offset=".849" style="stop-color:#bb4efc"/></linearGradient><path fill="url(#SVGID_2_)" d="M41.563,0.479l6.515,22.17L0.69,26.677L15.761,0.479H41.563z"/><linearGradient id="SVGID_3_" x1="189.941" x2="220.469" y1="296.496" y2="276.879" gradientTransform="matrix(1.5625 0 0 1.5625 -286.9062 -405.0312)" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#078efc"/><stop offset=".106" style="stop-color:#15a7d3"/><stop offset=".228" style="stop-color:#23bfaa"/><stop offset=".348" style="stop-color:#2dd28b"/><stop offset=".463" style="stop-color:#35df74"/><stop offset=".573" style="stop-color:#39e767"/><stop offset=".67" style="stop-color:#3bea62"/></linearGradient><polygon fill="url(#SVGID_3_)" points="66.815 14.519 39.091 21.099 .69 53.773 25.458 66.604 46.973 44.423"/></g><g><rect width="44.083" height="44.083" x="11.711" y="11.5"/><rect width="16.531" height="2.645" x="16.119" y="48.309" fill="#FFF"/><g><path fill="#FFF" d="M14.607,25.88v-0.054c-0.18-5.295,3.967-9.734,9.262-9.913c0.09-0.003,0.179-0.005,0.269-0.005 c2.64-0.135,5.22,0.815,7.142,2.63l-2.52,3.206c-1.251-1.272-2.969-1.975-4.753-1.945c-3.083,0.226-5.41,2.889-5.22,5.974v0.054 c-0.258,3.091,2.039,5.805,5.13,6.063c0.125,0.01,0.251,0.017,0.377,0.019c1.347,0.04,2.67-0.365,3.765-1.151v-2.74h-4.025v-3.643 h7.895v8.328c-2.113,1.955-4.886,3.041-7.765,3.043c-5.162,0.123-9.446-3.963-9.569-9.125c0,0,0,0,0,0 C14.59,26.374,14.594,26.127,14.607,25.88z"/><path fill="#FFF" d="M33.609,25.88v-0.054c-0.141-5.335,4.069-9.774,9.405-9.915s9.774,4.069,9.915,9.405 c0.004,0.152,0.004,0.305,0.001,0.457v0.054c0.141,5.335-4.069,9.774-9.405,9.915c-5.335,0.141-9.774-4.069-9.915-9.405l0,0 C33.606,26.185,33.606,26.033,33.609,25.88z M48.75,25.88v-0.054c0.186-3.14-2.209-5.835-5.349-6.021 c-0.053-0.003-0.105-0.005-0.158-0.007c-3.096,0.078-5.542,2.65-5.464,5.746c0,0,0,0,0,0c0.002,0.076,0.005,0.152,0.01,0.229 v0.054c-0.186,3.14,2.209,5.835,5.349,6.021c0.053,0.003,0.105,0.005,0.158,0.007c3.096-0.078,5.542-2.65,5.464-5.746c0,0,0,0,0,0 C48.758,26.033,48.755,25.956,48.75,25.88z"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

+1 -1
View File
@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 70 70" xml:space="preserve" style="enable-background:new 0 0 70 70"><g><g><linearGradient id="SVGID_1_" x1=".79" x2="33.317" y1="40.089" y2="40.089" gradientUnits="userSpaceOnUse"><stop offset=".258" style="stop-color:#f97a12"/><stop offset=".459" style="stop-color:#b07b58"/><stop offset=".724" style="stop-color:#577bae"/><stop offset=".91" style="stop-color:#1e7ce5"/><stop offset="1" style="stop-color:#087cfa"/></linearGradient><polygon style="fill:url(#SVGID_1_)" points="17.7 54.6 .8 41.2 9.2 25.6 33.3 35"/><linearGradient id="SVGID_2_" x1="25.767" x2="79.424" y1="24.88" y2="54.57" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#f97a12"/><stop offset=".072" style="stop-color:#cb7a3e"/><stop offset=".154" style="stop-color:#9e7b6a"/><stop offset=".242" style="stop-color:#757b91"/><stop offset=".334" style="stop-color:#537bb1"/><stop offset=".432" style="stop-color:#387ccc"/><stop offset=".538" style="stop-color:#237ce0"/><stop offset=".655" style="stop-color:#147cef"/><stop offset=".792" style="stop-color:#0b7cf7"/><stop offset="1" style="stop-color:#087cfa"/></linearGradient><polygon style="fill:url(#SVGID_2_)" points="70 18.7 68.7 59.2 41.8 70 25.6 59.6 49.3 35 38.9 12.3 48.2 1.1"/><linearGradient id="SVGID_3_" x1="63.228" x2="48.29" y1="42.915" y2="-1.719" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#fe315d"/><stop offset=".078" style="stop-color:#cb417e"/><stop offset=".16" style="stop-color:#9e4e9b"/><stop offset=".247" style="stop-color:#755bb4"/><stop offset=".339" style="stop-color:#5365ca"/><stop offset=".436" style="stop-color:#386ddb"/><stop offset=".541" style="stop-color:#2374e9"/><stop offset=".658" style="stop-color:#1478f3"/><stop offset=".794" style="stop-color:#0b7bf8"/><stop offset="1" style="stop-color:#087cfa"/></linearGradient><polygon style="fill:url(#SVGID_3_)" points="70 18.7 48.7 43.9 38.9 12.3 48.2 1.1"/><linearGradient id="SVGID_4_" x1="10.72" x2="55.524" y1="16.473" y2="90.58" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#fe315d"/><stop offset=".04" style="stop-color:#f63462"/><stop offset=".104" style="stop-color:#df3a71"/><stop offset=".167" style="stop-color:#c24383"/><stop offset=".291" style="stop-color:#ad4a91"/><stop offset=".55" style="stop-color:#755bb4"/><stop offset=".917" style="stop-color:#1d76ed"/><stop offset="1" style="stop-color:#087cfa"/></linearGradient><polygon style="fill:url(#SVGID_4_)" points="33.7 58.1 5.6 68.3 10.1 52.5 16 33.1 0 27.7 10.1 0 32.1 2.7 53.7 27.4"/></g><g><rect style="fill:#000" width="43.2" height="43.2" x="13.7" y="13.5"/><rect style="fill:#fff" width="16.2" height="2.7" x="17.7" y="48.6"/><polygon style="fill:#fff" points="29.4 22.4 29.4 19.1 20.4 19.1 20.4 22.4 23 22.4 23 33.7 20.4 33.7 20.4 37 29.4 37 29.4 33.7 26.9 33.7 26.9 22.4"/><path style="fill:#fff" d="M38,37.3c-1.4,0-2.6-0.3-3.5-0.8c-0.9-0.5-1.7-1.2-2.3-1.9l2.5-2.8c0.5,0.6,1,1,1.5,1.3 c0.5,0.3,1.1,0.5,1.7,0.5c0.7,0,1.3-0.2,1.8-0.7c0.4-0.5,0.6-1.2,0.6-2.3V19.1h4v11.7c0,1.1-0.1,2-0.4,2.8c-0.3,0.8-0.7,1.4-1.3,2 c-0.5,0.5-1.2,1-2,1.2C39.8,37.1,39,37.3,38,37.3"/></g></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 70 70" width="70px" height="70px" xml:space="preserve" style="enable-background:new 0 0 70 70"><g><g><linearGradient id="SVGID_1_" x1=".79" x2="33.317" y1="40.089" y2="40.089" gradientUnits="userSpaceOnUse"><stop offset=".258" style="stop-color:#f97a12"/><stop offset=".459" style="stop-color:#b07b58"/><stop offset=".724" style="stop-color:#577bae"/><stop offset=".91" style="stop-color:#1e7ce5"/><stop offset="1" style="stop-color:#087cfa"/></linearGradient><polygon style="fill:url(#SVGID_1_)" points="17.7 54.6 .8 41.2 9.2 25.6 33.3 35"/><linearGradient id="SVGID_2_" x1="25.767" x2="79.424" y1="24.88" y2="54.57" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#f97a12"/><stop offset=".072" style="stop-color:#cb7a3e"/><stop offset=".154" style="stop-color:#9e7b6a"/><stop offset=".242" style="stop-color:#757b91"/><stop offset=".334" style="stop-color:#537bb1"/><stop offset=".432" style="stop-color:#387ccc"/><stop offset=".538" style="stop-color:#237ce0"/><stop offset=".655" style="stop-color:#147cef"/><stop offset=".792" style="stop-color:#0b7cf7"/><stop offset="1" style="stop-color:#087cfa"/></linearGradient><polygon style="fill:url(#SVGID_2_)" points="70 18.7 68.7 59.2 41.8 70 25.6 59.6 49.3 35 38.9 12.3 48.2 1.1"/><linearGradient id="SVGID_3_" x1="63.228" x2="48.29" y1="42.915" y2="-1.719" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#fe315d"/><stop offset=".078" style="stop-color:#cb417e"/><stop offset=".16" style="stop-color:#9e4e9b"/><stop offset=".247" style="stop-color:#755bb4"/><stop offset=".339" style="stop-color:#5365ca"/><stop offset=".436" style="stop-color:#386ddb"/><stop offset=".541" style="stop-color:#2374e9"/><stop offset=".658" style="stop-color:#1478f3"/><stop offset=".794" style="stop-color:#0b7bf8"/><stop offset="1" style="stop-color:#087cfa"/></linearGradient><polygon style="fill:url(#SVGID_3_)" points="70 18.7 48.7 43.9 38.9 12.3 48.2 1.1"/><linearGradient id="SVGID_4_" x1="10.72" x2="55.524" y1="16.473" y2="90.58" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#fe315d"/><stop offset=".04" style="stop-color:#f63462"/><stop offset=".104" style="stop-color:#df3a71"/><stop offset=".167" style="stop-color:#c24383"/><stop offset=".291" style="stop-color:#ad4a91"/><stop offset=".55" style="stop-color:#755bb4"/><stop offset=".917" style="stop-color:#1d76ed"/><stop offset="1" style="stop-color:#087cfa"/></linearGradient><polygon style="fill:url(#SVGID_4_)" points="33.7 58.1 5.6 68.3 10.1 52.5 16 33.1 0 27.7 10.1 0 32.1 2.7 53.7 27.4"/></g><g><rect style="fill:#000" width="43.2" height="43.2" x="13.7" y="13.5"/><rect style="fill:#fff" width="16.2" height="2.7" x="17.7" y="48.6"/><polygon style="fill:#fff" points="29.4 22.4 29.4 19.1 20.4 19.1 20.4 22.4 23 22.4 23 33.7 20.4 33.7 20.4 37 29.4 37 29.4 33.7 26.9 33.7 26.9 22.4"/><path style="fill:#fff" d="M38,37.3c-1.4,0-2.6-0.3-3.5-0.8c-0.9-0.5-1.7-1.2-2.3-1.9l2.5-2.8c0.5,0.6,1,1,1.5,1.3 c0.5,0.3,1.1,0.5,1.7,0.5c0.7,0,1.3-0.2,1.8-0.7c0.4-0.5,0.6-1.2,0.6-2.3V19.1h4v11.7c0,1.1-0.1,2-0.4,2.8c-0.3,0.8-0.7,1.4-1.3,2 c-0.5,0.5-1.2,1-2,1.2C39.8,37.1,39,37.3,38,37.3"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

+1 -1
View File
@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 451 260.81"><defs><style>.cls-1{fill:#5e97f6;}.cls-1,.cls-2,.cls-3,.cls-4,.cls-5,.cls-6,.cls-7,.cls-8,.cls-9{stroke:#dce0df;stroke-linejoin:round;}.cls-2{fill:#2a56c6;}.cls-3{fill:#00796b;}.cls-4{fill:#3367d6;}.cls-5{fill:#26a69a;}.cls-6{fill:#9c27b0;}.cls-7{fill:#6a1b9a;}.cls-8{fill:#00695c;}.cls-9{fill:#ea80fc;}</style></defs><title>JAX Light Stroke</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><polygon class="cls-1" points="50.5 130.4 25.5 173.71 75.5 173.71 100.5 130.4 50.5 130.4"/><polygon class="cls-1" points="0.5 217.01 25.5 173.71 75.5 173.71 50.5 217.01 0.5 217.01"/><polygon class="cls-1" points="125.5 173.71 75.5 173.71 50.5 217.01 100.5 217.01 125.5 173.71"/><polygon class="cls-1" points="175.5 173.71 125.5 173.71 100.5 217.01 150.5 217.01 175.5 173.71"/><polygon class="cls-1" points="150.5 130.4 125.5 173.71 175.5 173.71 200.5 130.4 150.5 130.4"/><polygon class="cls-1" points="175.5 87.1 150.5 130.4 200.5 130.4 225.5 87.1 175.5 87.1"/><polygon class="cls-1" points="200.5 43.8 175.5 87.1 225.5 87.1 250.5 43.8 200.5 43.8"/><polygon class="cls-1" points="225.5 0.5 200.5 43.8 250.5 43.8 275.5 0.5 225.5 0.5"/><polygon class="cls-2" points="0.5 217.01 25.5 260.31 75.5 260.31 50.5 217.01 0.5 217.01"/><polygon class="cls-2" points="125.5 260.31 75.5 260.31 50.5 217.01 100.5 217.01 125.5 260.31"/><polygon class="cls-2" points="175.5 260.31 125.5 260.31 100.5 217.01 150.5 217.01 175.5 260.31"/><polygon class="cls-3" points="200.5 217.01 175.5 173.71 150.5 217.01 175.5 260.31 200.5 217.01"/><polygon class="cls-3" points="250.5 130.4 225.5 87.1 200.5 130.4 250.5 130.4"/><polygon class="cls-3" points="250.5 43.8 225.5 87.1 250.5 130.4 275.5 87.1 250.5 43.8"/><polygon class="cls-4" points="125.5 173.71 100.5 130.4 75.5 173.71 125.5 173.71"/><polygon class="cls-5" points="250.5 130.4 200.5 130.4 175.5 173.71 225.5 173.71 250.5 130.4"/><polygon class="cls-5" points="300.5 130.4 250.5 130.4 225.5 173.71 275.5 173.71 300.5 130.4"/><polygon class="cls-6" points="350.5 43.8 325.5 0.5 300.5 43.8 325.5 87.1 350.5 43.8"/><polygon class="cls-6" points="375.5 87.1 350.5 43.8 325.5 87.1 350.5 130.4 375.5 87.1"/><polygon class="cls-6" points="400.5 130.4 375.5 87.1 350.5 130.4 375.5 173.71 400.5 130.4"/><polygon class="cls-6" points="425.5 173.71 400.5 130.4 375.5 173.71 400.5 217.01 425.5 173.71"/><polygon class="cls-6" points="450.5 217.01 425.5 173.71 400.5 217.01 425.5 260.31 450.5 217.01"/><polygon class="cls-6" points="425.5 0.5 400.5 43.8 425.5 87.1 450.5 43.8 425.5 0.5"/><polygon class="cls-6" points="375.5 87.1 400.5 43.8 425.5 87.1 400.5 130.4 375.5 87.1"/><polygon class="cls-6" points="350.5 130.4 325.5 173.71 350.5 217.01 375.5 173.71 350.5 130.4"/><polygon class="cls-6" points="325.5 260.31 300.5 217.01 325.5 173.71 350.5 217.01 325.5 260.31"/><polygon class="cls-7" points="275.5 260.31 250.5 217.01 300.5 217.01 325.5 260.31 275.5 260.31"/><polygon class="cls-8" points="225.5 173.71 175.5 173.71 200.5 217.01 250.5 217.01 225.5 173.71"/><polygon class="cls-8" points="275.5 173.71 225.5 173.71 250.5 217.01 275.5 173.71"/><polygon class="cls-8" points="275.5 87.1 300.5 130.4 350.5 130.4 325.5 87.1 275.5 87.1"/><polygon class="cls-8" points="300.5 43.8 250.5 43.8 275.5 87.1 325.5 87.1 300.5 43.8"/><polygon class="cls-8" points="425.5 260.31 400.5 217.01 350.5 217.01 375.5 260.31 425.5 260.31"/><polygon class="cls-8" points="375.5 173.71 350.5 217.01 400.5 217.01 375.5 173.71"/><polygon class="cls-9" points="325.5 0.5 275.5 0.5 250.5 43.8 300.5 43.8 325.5 0.5"/><polygon class="cls-9" points="325.5 173.71 275.5 173.71 250.5 217.01 300.5 217.01 325.5 173.71"/><polygon class="cls-9" points="350.5 130.4 300.5 130.4 275.5 173.71 325.5 173.71 350.5 130.4"/><polygon class="cls-9" points="425.5 0.5 375.5 0.5 350.5 43.8 400.5 43.8 425.5 0.5"/><polygon class="cls-9" points="375.5 87.1 350.5 43.8 400.5 43.8 375.5 87.1"/></g></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 451 260.81" width="451px" height="260.81px"><defs><style>.cls-1{fill:#5e97f6;}.cls-1,.cls-2,.cls-3,.cls-4,.cls-5,.cls-6,.cls-7,.cls-8,.cls-9{stroke:#dce0df;stroke-linejoin:round;}.cls-2{fill:#2a56c6;}.cls-3{fill:#00796b;}.cls-4{fill:#3367d6;}.cls-5{fill:#26a69a;}.cls-6{fill:#9c27b0;}.cls-7{fill:#6a1b9a;}.cls-8{fill:#00695c;}.cls-9{fill:#ea80fc;}</style></defs><title>JAX Light Stroke</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><polygon class="cls-1" points="50.5 130.4 25.5 173.71 75.5 173.71 100.5 130.4 50.5 130.4"/><polygon class="cls-1" points="0.5 217.01 25.5 173.71 75.5 173.71 50.5 217.01 0.5 217.01"/><polygon class="cls-1" points="125.5 173.71 75.5 173.71 50.5 217.01 100.5 217.01 125.5 173.71"/><polygon class="cls-1" points="175.5 173.71 125.5 173.71 100.5 217.01 150.5 217.01 175.5 173.71"/><polygon class="cls-1" points="150.5 130.4 125.5 173.71 175.5 173.71 200.5 130.4 150.5 130.4"/><polygon class="cls-1" points="175.5 87.1 150.5 130.4 200.5 130.4 225.5 87.1 175.5 87.1"/><polygon class="cls-1" points="200.5 43.8 175.5 87.1 225.5 87.1 250.5 43.8 200.5 43.8"/><polygon class="cls-1" points="225.5 0.5 200.5 43.8 250.5 43.8 275.5 0.5 225.5 0.5"/><polygon class="cls-2" points="0.5 217.01 25.5 260.31 75.5 260.31 50.5 217.01 0.5 217.01"/><polygon class="cls-2" points="125.5 260.31 75.5 260.31 50.5 217.01 100.5 217.01 125.5 260.31"/><polygon class="cls-2" points="175.5 260.31 125.5 260.31 100.5 217.01 150.5 217.01 175.5 260.31"/><polygon class="cls-3" points="200.5 217.01 175.5 173.71 150.5 217.01 175.5 260.31 200.5 217.01"/><polygon class="cls-3" points="250.5 130.4 225.5 87.1 200.5 130.4 250.5 130.4"/><polygon class="cls-3" points="250.5 43.8 225.5 87.1 250.5 130.4 275.5 87.1 250.5 43.8"/><polygon class="cls-4" points="125.5 173.71 100.5 130.4 75.5 173.71 125.5 173.71"/><polygon class="cls-5" points="250.5 130.4 200.5 130.4 175.5 173.71 225.5 173.71 250.5 130.4"/><polygon class="cls-5" points="300.5 130.4 250.5 130.4 225.5 173.71 275.5 173.71 300.5 130.4"/><polygon class="cls-6" points="350.5 43.8 325.5 0.5 300.5 43.8 325.5 87.1 350.5 43.8"/><polygon class="cls-6" points="375.5 87.1 350.5 43.8 325.5 87.1 350.5 130.4 375.5 87.1"/><polygon class="cls-6" points="400.5 130.4 375.5 87.1 350.5 130.4 375.5 173.71 400.5 130.4"/><polygon class="cls-6" points="425.5 173.71 400.5 130.4 375.5 173.71 400.5 217.01 425.5 173.71"/><polygon class="cls-6" points="450.5 217.01 425.5 173.71 400.5 217.01 425.5 260.31 450.5 217.01"/><polygon class="cls-6" points="425.5 0.5 400.5 43.8 425.5 87.1 450.5 43.8 425.5 0.5"/><polygon class="cls-6" points="375.5 87.1 400.5 43.8 425.5 87.1 400.5 130.4 375.5 87.1"/><polygon class="cls-6" points="350.5 130.4 325.5 173.71 350.5 217.01 375.5 173.71 350.5 130.4"/><polygon class="cls-6" points="325.5 260.31 300.5 217.01 325.5 173.71 350.5 217.01 325.5 260.31"/><polygon class="cls-7" points="275.5 260.31 250.5 217.01 300.5 217.01 325.5 260.31 275.5 260.31"/><polygon class="cls-8" points="225.5 173.71 175.5 173.71 200.5 217.01 250.5 217.01 225.5 173.71"/><polygon class="cls-8" points="275.5 173.71 225.5 173.71 250.5 217.01 275.5 173.71"/><polygon class="cls-8" points="275.5 87.1 300.5 130.4 350.5 130.4 325.5 87.1 275.5 87.1"/><polygon class="cls-8" points="300.5 43.8 250.5 43.8 275.5 87.1 325.5 87.1 300.5 43.8"/><polygon class="cls-8" points="425.5 260.31 400.5 217.01 350.5 217.01 375.5 260.31 425.5 260.31"/><polygon class="cls-8" points="375.5 173.71 350.5 217.01 400.5 217.01 375.5 173.71"/><polygon class="cls-9" points="325.5 0.5 275.5 0.5 250.5 43.8 300.5 43.8 325.5 0.5"/><polygon class="cls-9" points="325.5 173.71 275.5 173.71 250.5 217.01 300.5 217.01 325.5 173.71"/><polygon class="cls-9" points="350.5 130.4 300.5 130.4 275.5 173.71 325.5 173.71 350.5 130.4"/><polygon class="cls-9" points="425.5 0.5 375.5 0.5 350.5 43.8 400.5 43.8 425.5 0.5"/><polygon class="cls-9" points="375.5 87.1 350.5 43.8 400.5 43.8 375.5 87.1"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

+1 -1
View File
@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="2.0" viewBox="0 0 44 51"><g style="mix-blend-mode:normal"><g style="mix-blend-mode:normal"><use fill="#4E4E4E" transform="translate(.54 21.36)" xlink:href="#path0_fill" style="mix-blend-mode:normal"/><use fill="#4E4E4E" transform="translate(5.68 21.37)" xlink:href="#path1_fill" style="mix-blend-mode:normal"/><use fill="#4E4E4E" transform="translate(13.39 21.26)" xlink:href="#path2_fill" style="mix-blend-mode:normal"/><use fill="#4E4E4E" transform="translate(20.43 21.39)" xlink:href="#path3_fill" style="mix-blend-mode:normal"/><use fill="#4E4E4E" transform="translate(27.55 19.54)" xlink:href="#path4_fill" style="mix-blend-mode:normal"/><use fill="#4E4E4E" transform="translate(32.47 21.29)" xlink:href="#path5_fill" style="mix-blend-mode:normal"/><use fill="#4E4E4E" transform="translate(39.98 21.24)" xlink:href="#path6_fill" style="mix-blend-mode:normal"/></g><g style="mix-blend-mode:normal"><use fill="#767677" transform="translate(33.48 .69)" xlink:href="#path7_fill" style="mix-blend-mode:normal"/><use fill="#F37726" transform="translate(3.21 31.27)" xlink:href="#path8_fill" style="mix-blend-mode:normal"/><use fill="#F37726" transform="translate(3.21 4.88)" xlink:href="#path9_fill" style="mix-blend-mode:normal"/><use fill="#9E9E9E" transform="translate(3.28 43.09)" xlink:href="#path10_fill" style="mix-blend-mode:normal"/><use fill="#616262" transform="translate(1.87 5.43)" xlink:href="#path11_fill" style="mix-blend-mode:normal"/></g></g><defs><path id="path0_fill" d="M1.745 5.475c0 1.558-.125 2.066-.445 2.44a1.94 1.94 0 01-1.3.498l.125.89a3.045 3.045 0 002.03-.738 3.561 3.561 0 00.783-2.671V0H1.745V5.475z"/><path id="path1_fill" d="M5.502 4.763c0 .668 0 1.264.053 1.78H4.496l-.071-1.059A2.466 2.466 0 012.26 6.695C1.23 6.695 0 6.135 0 3.846V.045h1.193v3.56c0 1.238.383 2.066 1.46 2.066A1.665 1.665 0 004.336 3.99V0h1.193v4.727l-.027.036z"/><path id="path2_fill" d="M.053 2.273c0-.828 0-1.505-.053-2.12h1.068l.054 1.114A2.582 2.582 0 013.454.002c1.585 0 2.778 1.327 2.778 3.303 0 2.333-1.433 3.49-2.982 3.49a2.306 2.306 0 01-2.021-1.023v3.56H.053V2.274zM1.23 4.009c.003.161.02.322.053.48a1.834 1.834 0 001.78 1.38c1.256 0 1.995-1.023 1.995-2.51 0-1.3-.695-2.413-1.95-2.413a2.048 2.048 0 00-1.878 1.95v1.113z"/><path id="path3_fill" d="M1.318.018L2.75 3.855c.151.427.312.944.418 1.327.125-.392.259-.89.419-1.354l1.3-3.81h1.255l-1.78 4.63c-.89 2.225-1.434 3.374-2.253 4.068a3.24 3.24 0 01-1.46.766l-.294-.997a3.16 3.16 0 001.042-.58 3.561 3.561 0 001.006-1.317.89.89 0 00.098-.285 1.024 1.024 0 00-.08-.311L0 0h1.3l.018.018z"/><path id="path4_fill" d="M2.19 0v1.87H3.9v.89H2.19v3.508c0 .801.232 1.264.89 1.264.234.004.468-.023.695-.08l.053.89c-.34.118-.7.172-1.06.16a1.656 1.656 0 01-1.29-.498 2.395 2.395 0 01-.463-1.692V2.751H0v-.89h1.033V.276L2.19 0z"/><path id="path5_fill" d="M1.177 3.579A2.092 2.092 0 003.43 5.831a4.345 4.345 0 001.78-.338l.205.89a5.342 5.342 0 01-2.181.401A3.027 3.027 0 01.01 3.508C.01 1.549 1.177 0 3.082 0 5.22 0 5.753 1.87 5.753 3.063c.012.183.012.368 0 .552H1.15l.027-.036zm3.49-.89A1.683 1.683 0 003.011.766a1.968 1.968 0 00-1.825 1.923h3.481z"/><path id="path6_fill" d="M.053 2.192c0-.765 0-1.424-.053-2.03h1.068v1.274h.054A1.968 1.968 0 012.902.01a1.3 1.3 0 01.339 0v1.113a1.78 1.78 0 00-.41 0 1.665 1.665 0 00-1.593 1.513 3.293 3.293 0 00-.054.552v3.464H.01V2.2l.044-.009z"/><path id="path7_fill" d="M6.03 2.836A3.018 3.018 0 112.889.005a2.982 2.982 0 013.143 2.83z"/><path id="path8_fill" d="M18.696 7.122C10.684 7.122 3.641 4.247 0 0a19.934 19.934 0 0037.392 0C33.76 4.247 26.744 7.122 18.696 7.122z"/><path id="path9_fill" d="M18.696 5.897c8.013 0 15.055 2.876 18.696 7.123A19.934 19.934 0 000 13.02c3.641-4.256 10.648-7.123 18.696-7.123z"/><path id="path10_fill" d="M7.596 3.567A3.802 3.802 0 113.634.005a3.766 3.766 0 013.962 3.562z"/><path id="path11_fill" d="M2.25 4.38A2.19 2.19 0 114.379 2.1a2.217 2.217 0 01-2.127 2.28z"/></defs></svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="2.0" viewBox="0 0 44 51" width="44px" height="51px"><g style="mix-blend-mode:normal"><g style="mix-blend-mode:normal"><use fill="#4E4E4E" transform="translate(.54 21.36)" xlink:href="#path0_fill" style="mix-blend-mode:normal"/><use fill="#4E4E4E" transform="translate(5.68 21.37)" xlink:href="#path1_fill" style="mix-blend-mode:normal"/><use fill="#4E4E4E" transform="translate(13.39 21.26)" xlink:href="#path2_fill" style="mix-blend-mode:normal"/><use fill="#4E4E4E" transform="translate(20.43 21.39)" xlink:href="#path3_fill" style="mix-blend-mode:normal"/><use fill="#4E4E4E" transform="translate(27.55 19.54)" xlink:href="#path4_fill" style="mix-blend-mode:normal"/><use fill="#4E4E4E" transform="translate(32.47 21.29)" xlink:href="#path5_fill" style="mix-blend-mode:normal"/><use fill="#4E4E4E" transform="translate(39.98 21.24)" xlink:href="#path6_fill" style="mix-blend-mode:normal"/></g><g style="mix-blend-mode:normal"><use fill="#767677" transform="translate(33.48 .69)" xlink:href="#path7_fill" style="mix-blend-mode:normal"/><use fill="#F37726" transform="translate(3.21 31.27)" xlink:href="#path8_fill" style="mix-blend-mode:normal"/><use fill="#F37726" transform="translate(3.21 4.88)" xlink:href="#path9_fill" style="mix-blend-mode:normal"/><use fill="#9E9E9E" transform="translate(3.28 43.09)" xlink:href="#path10_fill" style="mix-blend-mode:normal"/><use fill="#616262" transform="translate(1.87 5.43)" xlink:href="#path11_fill" style="mix-blend-mode:normal"/></g></g><defs><path id="path0_fill" d="M1.745 5.475c0 1.558-.125 2.066-.445 2.44a1.94 1.94 0 01-1.3.498l.125.89a3.045 3.045 0 002.03-.738 3.561 3.561 0 00.783-2.671V0H1.745V5.475z"/><path id="path1_fill" d="M5.502 4.763c0 .668 0 1.264.053 1.78H4.496l-.071-1.059A2.466 2.466 0 012.26 6.695C1.23 6.695 0 6.135 0 3.846V.045h1.193v3.56c0 1.238.383 2.066 1.46 2.066A1.665 1.665 0 004.336 3.99V0h1.193v4.727l-.027.036z"/><path id="path2_fill" d="M.053 2.273c0-.828 0-1.505-.053-2.12h1.068l.054 1.114A2.582 2.582 0 013.454.002c1.585 0 2.778 1.327 2.778 3.303 0 2.333-1.433 3.49-2.982 3.49a2.306 2.306 0 01-2.021-1.023v3.56H.053V2.274zM1.23 4.009c.003.161.02.322.053.48a1.834 1.834 0 001.78 1.38c1.256 0 1.995-1.023 1.995-2.51 0-1.3-.695-2.413-1.95-2.413a2.048 2.048 0 00-1.878 1.95v1.113z"/><path id="path3_fill" d="M1.318.018L2.75 3.855c.151.427.312.944.418 1.327.125-.392.259-.89.419-1.354l1.3-3.81h1.255l-1.78 4.63c-.89 2.225-1.434 3.374-2.253 4.068a3.24 3.24 0 01-1.46.766l-.294-.997a3.16 3.16 0 001.042-.58 3.561 3.561 0 001.006-1.317.89.89 0 00.098-.285 1.024 1.024 0 00-.08-.311L0 0h1.3l.018.018z"/><path id="path4_fill" d="M2.19 0v1.87H3.9v.89H2.19v3.508c0 .801.232 1.264.89 1.264.234.004.468-.023.695-.08l.053.89c-.34.118-.7.172-1.06.16a1.656 1.656 0 01-1.29-.498 2.395 2.395 0 01-.463-1.692V2.751H0v-.89h1.033V.276L2.19 0z"/><path id="path5_fill" d="M1.177 3.579A2.092 2.092 0 003.43 5.831a4.345 4.345 0 001.78-.338l.205.89a5.342 5.342 0 01-2.181.401A3.027 3.027 0 01.01 3.508C.01 1.549 1.177 0 3.082 0 5.22 0 5.753 1.87 5.753 3.063c.012.183.012.368 0 .552H1.15l.027-.036zm3.49-.89A1.683 1.683 0 003.011.766a1.968 1.968 0 00-1.825 1.923h3.481z"/><path id="path6_fill" d="M.053 2.192c0-.765 0-1.424-.053-2.03h1.068v1.274h.054A1.968 1.968 0 012.902.01a1.3 1.3 0 01.339 0v1.113a1.78 1.78 0 00-.41 0 1.665 1.665 0 00-1.593 1.513 3.293 3.293 0 00-.054.552v3.464H.01V2.2l.044-.009z"/><path id="path7_fill" d="M6.03 2.836A3.018 3.018 0 112.889.005a2.982 2.982 0 013.143 2.83z"/><path id="path8_fill" d="M18.696 7.122C10.684 7.122 3.641 4.247 0 0a19.934 19.934 0 0037.392 0C33.76 4.247 26.744 7.122 18.696 7.122z"/><path id="path9_fill" d="M18.696 5.897c8.013 0 15.055 2.876 18.696 7.123A19.934 19.934 0 000 13.02c3.641-4.256 10.648-7.123 18.696-7.123z"/><path id="path10_fill" d="M7.596 3.567A3.802 3.802 0 113.634.005a3.766 3.766 0 013.962 3.562z"/><path id="path11_fill" d="M2.25 4.38A2.19 2.19 0 114.379 2.1a2.217 2.217 0 01-2.127 2.28z"/></defs></svg>

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

+2 -2
View File
@@ -1,7 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 328.5 120 135" enable-background="new 0 328.5 612 135" xml:space="preserve" style="&#10;">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 328.5 120 135" width="120px" height="135px" enable-background="new 0 328.5 612 135" xml:space="preserve" style="&#10;">
<polygon fill="#185F85" points="29,434.2 29,439.3 29,446.3 47.4,457.1 51.9,459.7 58.3,463.2 62.7,455.5 64.3,447.3 58.3,441.9 29,425 "/>
<path fill="#0D84BE" d="M116.5,429.8V396c0-11.1,0-22.3,0-33.4l-12.1-0.3l-2.9,3.8l-3.8,7V419L58,442.2v8.9v12.4 C77.4,452,97.1,440.9,116.5,429.8z"/>
<polygon fill="#FFFFFF" points="18.5,385.5 18.5,351.7 0,362.6 0,429.8 18.5,440.3 18.5,406.8 58.3,429.8 58.3,429.8 58.3,408.4 36.9,396 58.3,383.9 58.3,362.6 "/>
<path fill="#1A9BD7" d="M58.3,328.8c19.1,11.1,38.8,22.6,58.3,33.8l-10.8,6l-8,4.5l-39.5-22.9L29,366.7c0-7,0-14.3,0-21.3 L58.3,328.8z"/>
</svg>
</svg>

Before

Width:  |  Height:  |  Size: 819 B

After

Width:  |  Height:  |  Size: 849 B

+1 -1
View File
@@ -1 +1 @@
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 47.5 47.5" style="enable-background:new 0 0 47.5 47.5;" id="svg2" xml:space="preserve"><defs id="defs6"><clipPath id="clipPath18"><path d="M 0,38 38,38 38,0 0,0 0,38 z" id="path20"/></clipPath></defs><g transform="matrix(1.25,0,0,-1.25,0,47.5)" id="g12"><g id="g14"><g clip-path="url(#clipPath18)" id="g16"><g transform="translate(21.8486,9.4102)" id="g22"><path d="m 0,0 c -0.395,-1.346 -2.46,-1.924 -4.613,-1.291 -2.153,0.632 -3.578,2.234 -3.183,3.581 0.395,1.346 2.461,1.924 4.613,1.29 C -1.029,2.949 0.396,1.347 0,0 m -2.849,24.447 c -9.941,0 -18,-6.908 -18,-15.428 0,-1.067 0.127,-2.108 0.367,-3.113 1.779,-3.06 3.01,-1.128 8.633,1.684 5.727,2.864 0,-4 -2,-8 -0.615,-1.231 -0.281,-2.272 0.56,-3.124 2.946,-1.804 6.544,-2.876 10.44,-2.876 9.942,0 18,6.907 18,15.429 0,8.52 -8.058,15.428 -18,15.428" id="path24" style="fill:#d99e82;fill-opacity:1;fill-rule:nonzero;stroke:none"/></g><g transform="translate(14,26)" id="g26"><path d="m 0,0 c 0,-1.657 -1.343,-3 -3,-3 -1.657,0 -3,1.343 -3,3 0,1.657 1.343,3 3,3 1.657,0 3,-1.343 3,-3" id="path28" style="fill:#5c913b;fill-opacity:1;fill-rule:nonzero;stroke:none"/></g><g transform="translate(24,28)" id="g30"><path d="m 0,0 c 0,-1.657 -1.344,-3 -3,-3 -1.657,0 -3,1.343 -3,3 0,1.657 1.343,3 3,3 1.656,0 3,-1.343 3,-3" id="path32" style="fill:#226699;fill-opacity:1;fill-rule:nonzero;stroke:none"/></g><g transform="translate(33,22)" id="g34"><path d="m 0,0 c 0,-1.657 -1.344,-3 -3,-3 -1.656,0 -3,1.343 -3,3 0,1.657 1.344,3 3,3 1.656,0 3,-1.343 3,-3" id="path36" style="fill:#dd2e44;fill-opacity:1;fill-rule:nonzero;stroke:none"/></g><g transform="translate(32,13)" id="g38"><path d="m 0,0 c 0,-1.656 -1.344,-3 -3,-3 -1.656,0 -3,1.344 -3,3 0,1.656 1.344,3 3,3 1.656,0 3,-1.344 3,-3" id="path40" style="fill:#ffcc4d;fill-opacity:1;fill-rule:nonzero;stroke:none"/></g></g></g></g></svg>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 47.5 47.5" width="47.5px" height="47.5px" style="enable-background:new 0 0 47.5 47.5;" id="svg2" xml:space="preserve"><defs id="defs6"><clipPath id="clipPath18"><path d="M 0,38 38,38 38,0 0,0 0,38 z" id="path20"/></clipPath></defs><g transform="matrix(1.25,0,0,-1.25,0,47.5)" id="g12"><g id="g14"><g clip-path="url(#clipPath18)" id="g16"><g transform="translate(21.8486,9.4102)" id="g22"><path d="m 0,0 c -0.395,-1.346 -2.46,-1.924 -4.613,-1.291 -2.153,0.632 -3.578,2.234 -3.183,3.581 0.395,1.346 2.461,1.924 4.613,1.29 C -1.029,2.949 0.396,1.347 0,0 m -2.849,24.447 c -9.941,0 -18,-6.908 -18,-15.428 0,-1.067 0.127,-2.108 0.367,-3.113 1.779,-3.06 3.01,-1.128 8.633,1.684 5.727,2.864 0,-4 -2,-8 -0.615,-1.231 -0.281,-2.272 0.56,-3.124 2.946,-1.804 6.544,-2.876 10.44,-2.876 9.942,0 18,6.907 18,15.429 0,8.52 -8.058,15.428 -18,15.428" id="path24" style="fill:#d99e82;fill-opacity:1;fill-rule:nonzero;stroke:none"/></g><g transform="translate(14,26)" id="g26"><path d="m 0,0 c 0,-1.657 -1.343,-3 -3,-3 -1.657,0 -3,1.343 -3,3 0,1.657 1.343,3 3,3 1.657,0 3,-1.343 3,-3" id="path28" style="fill:#5c913b;fill-opacity:1;fill-rule:nonzero;stroke:none"/></g><g transform="translate(24,28)" id="g30"><path d="m 0,0 c 0,-1.657 -1.344,-3 -3,-3 -1.657,0 -3,1.343 -3,3 0,1.657 1.343,3 3,3 1.656,0 3,-1.343 3,-3" id="path32" style="fill:#226699;fill-opacity:1;fill-rule:nonzero;stroke:none"/></g><g transform="translate(33,22)" id="g34"><path d="m 0,0 c 0,-1.657 -1.344,-3 -3,-3 -1.656,0 -3,1.343 -3,3 0,1.657 1.344,3 3,3 1.656,0 3,-1.343 3,-3" id="path36" style="fill:#dd2e44;fill-opacity:1;fill-rule:nonzero;stroke:none"/></g><g transform="translate(32,13)" id="g38"><path d="m 0,0 c 0,-1.656 -1.344,-3 -3,-3 -1.656,0 -3,1.344 -3,3 0,1.656 1.344,3 3,3 1.656,0 3,-1.344 3,-3" id="path40" style="fill:#ffcc4d;fill-opacity:1;fill-rule:nonzero;stroke:none"/></g></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

+1 -1
View File
@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 70 70" xml:space="preserve" style="enable-background:new 0 0 70 70"><g><g><linearGradient id="SVGID_1_" x1=".558" x2="29.947" y1="46.846" y2="8.026" gradientUnits="userSpaceOnUse"><stop offset=".016" style="stop-color:#765af8"/><stop offset=".382" style="stop-color:#b345f1"/><stop offset=".758" style="stop-color:#fa3293"/><stop offset=".941" style="stop-color:#ff318c"/></linearGradient><polygon style="fill:url(#SVGID_1_)" points="39.6 15.2 36.3 5.2 11.9 0 0 13.5 37.2 32.5"/><linearGradient id="SVGID_2_" x1="2.73" x2="32.072" y1="48.379" y2="9.621" gradientUnits="userSpaceOnUse"><stop offset=".016" style="stop-color:#765af8"/><stop offset=".382" style="stop-color:#b345f1"/><stop offset=".758" style="stop-color:#fa3293"/><stop offset=".941" style="stop-color:#ff318c"/></linearGradient><polygon style="fill:url(#SVGID_2_)" points="28 41.4 27.3 20.6 0 13.5 6.7 53.6 28 53.4"/><linearGradient id="SVGID_3_" x1="50.857" x2="34.274" y1="46.405" y2="7.048" gradientUnits="userSpaceOnUse"><stop offset=".183" style="stop-color:#765af8"/><stop offset=".238" style="stop-color:#8655f6"/><stop offset=".345" style="stop-color:#9f4cf3"/><stop offset=".443" style="stop-color:#ae47f2"/><stop offset=".522" style="stop-color:#b345f1"/></linearGradient><polygon style="fill:url(#SVGID_3_)" points="22.1 41 23.4 24.5 43.2 4.2 60.9 7.4 70 30.1 60.5 39.5 45 37 35.4 47.1"/><linearGradient id="SVGID_4_" x1="63.266" x2="24.698" y1="57.339" y2="27.516" gradientUnits="userSpaceOnUse"><stop offset=".016" style="stop-color:#765af8"/><stop offset=".382" style="stop-color:#b345f1"/></linearGradient><polygon style="fill:url(#SVGID_4_)" points="43.2 4.2 14.8 29.4 20.3 61.8 43.9 70 70 54.4"/></g><g><rect style="fill:#000" width="43.2" height="43.2" x="13.4" y="13.4"/><rect style="fill:#fff" width="16.2" height="2.7" x="17.5" y="48.5"/><path style="fill:#fff" d="M17.3,19h7.3c4.3,0,6.9,2.5,6.9,6.2v0.1c0,4.2-3.2,6.3-7.3,6.3h-3l0,5.4h-3.9L17.3,19z M24.4,28 c2,0,3.1-1.2,3.1-2.7v-0.1c0-1.8-1.2-2.7-3.2-2.7h-3V28H24.4z"/><path style="fill:#fff" d="M32.5,34.4l2.3-2.8c1.6,1.3,3.3,2.2,5.4,2.2c1.6,0,2.6-0.6,2.6-1.7V32c0-1-0.6-1.5-3.6-2.3 c-3.6-0.9-6-1.9-6-5.5v-0.1c0-3.3,2.6-5.4,6.3-5.4c2.6,0,4.9,0.8,6.7,2.3l-2.1,3c-1.6-1.1-3.2-1.8-4.7-1.8c-1.5,0-2.3,0.7-2.3,1.6 v0.1c0,1.2,0.8,1.6,3.9,2.4c3.6,1,5.7,2.3,5.7,5.4v0.1c0,3.6-2.7,5.6-6.6,5.6C37.4,37.3,34.7,36.3,32.5,34.4"/></g></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 70 70" width="70px" height="70px" xml:space="preserve" style="enable-background:new 0 0 70 70"><g><g><linearGradient id="SVGID_1_" x1=".558" x2="29.947" y1="46.846" y2="8.026" gradientUnits="userSpaceOnUse"><stop offset=".016" style="stop-color:#765af8"/><stop offset=".382" style="stop-color:#b345f1"/><stop offset=".758" style="stop-color:#fa3293"/><stop offset=".941" style="stop-color:#ff318c"/></linearGradient><polygon style="fill:url(#SVGID_1_)" points="39.6 15.2 36.3 5.2 11.9 0 0 13.5 37.2 32.5"/><linearGradient id="SVGID_2_" x1="2.73" x2="32.072" y1="48.379" y2="9.621" gradientUnits="userSpaceOnUse"><stop offset=".016" style="stop-color:#765af8"/><stop offset=".382" style="stop-color:#b345f1"/><stop offset=".758" style="stop-color:#fa3293"/><stop offset=".941" style="stop-color:#ff318c"/></linearGradient><polygon style="fill:url(#SVGID_2_)" points="28 41.4 27.3 20.6 0 13.5 6.7 53.6 28 53.4"/><linearGradient id="SVGID_3_" x1="50.857" x2="34.274" y1="46.405" y2="7.048" gradientUnits="userSpaceOnUse"><stop offset=".183" style="stop-color:#765af8"/><stop offset=".238" style="stop-color:#8655f6"/><stop offset=".345" style="stop-color:#9f4cf3"/><stop offset=".443" style="stop-color:#ae47f2"/><stop offset=".522" style="stop-color:#b345f1"/></linearGradient><polygon style="fill:url(#SVGID_3_)" points="22.1 41 23.4 24.5 43.2 4.2 60.9 7.4 70 30.1 60.5 39.5 45 37 35.4 47.1"/><linearGradient id="SVGID_4_" x1="63.266" x2="24.698" y1="57.339" y2="27.516" gradientUnits="userSpaceOnUse"><stop offset=".016" style="stop-color:#765af8"/><stop offset=".382" style="stop-color:#b345f1"/></linearGradient><polygon style="fill:url(#SVGID_4_)" points="43.2 4.2 14.8 29.4 20.3 61.8 43.9 70 70 54.4"/></g><g><rect style="fill:#000" width="43.2" height="43.2" x="13.4" y="13.4"/><rect style="fill:#fff" width="16.2" height="2.7" x="17.5" y="48.5"/><path style="fill:#fff" d="M17.3,19h7.3c4.3,0,6.9,2.5,6.9,6.2v0.1c0,4.2-3.2,6.3-7.3,6.3h-3l0,5.4h-3.9L17.3,19z M24.4,28 c2,0,3.1-1.2,3.1-2.7v-0.1c0-1.8-1.2-2.7-3.2-2.7h-3V28H24.4z"/><path style="fill:#fff" d="M32.5,34.4l2.3-2.8c1.6,1.3,3.3,2.2,5.4,2.2c1.6,0,2.6-0.6,2.6-1.7V32c0-1-0.6-1.5-3.6-2.3 c-3.6-0.9-6-1.9-6-5.5v-0.1c0-3.3,2.6-5.4,6.3-5.4c2.6,0,4.9,0.8,6.7,2.3l-2.1,3c-1.6-1.1-3.2-1.8-4.7-1.8c-1.5,0-2.3,0.7-2.3,1.6 v0.1c0,1.2,0.8,1.6,3.9,2.4c3.6,1,5.7,2.3,5.7,5.4v0.1c0,3.6-2.7,5.6-6.6,5.6C37.4,37.3,34.7,36.3,32.5,34.4"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

+1 -1
View File
@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 70 70" xml:space="preserve" style="enable-background:new 0 0 70 70"><g><g><linearGradient id="SVGID_1_" x1="24.998" x2="66.656" y1="27.046" y2="27.046" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#21d789"/><stop offset="1" style="stop-color:#07c3f2"/></linearGradient><polygon style="fill:url(#SVGID_1_)" points="49.1 11 69.5 28.1 62.2 43 49.8 39.6 39.2 39.6"/><linearGradient id="SVGID_2_" x1="-24.559" x2="61.22" y1="59.081" y2="-4.241" gradientUnits="userSpaceOnUse"><stop offset=".011" style="stop-color:#fcf84a"/><stop offset=".112" style="stop-color:#a7eb62"/><stop offset=".206" style="stop-color:#5fe077"/><stop offset=".273" style="stop-color:#32da84"/><stop offset=".306" style="stop-color:#21d789"/><stop offset=".577" style="stop-color:#21d789"/><stop offset=".597" style="stop-color:#21d789"/><stop offset=".686" style="stop-color:#20d68c"/><stop offset=".763" style="stop-color:#1ed497"/><stop offset=".835" style="stop-color:#19d1a9"/><stop offset=".904" style="stop-color:#13ccc2"/><stop offset=".971" style="stop-color:#0bc6e1"/><stop offset="1" style="stop-color:#07c3f2"/></linearGradient><polygon style="fill:url(#SVGID_2_)" points="28.5 22.1 24.5 43 24.1 50.2 14.2 54.5 0 56 4.3 10.7 29.9 0 45.7 10.4"/><linearGradient id="SVGID_3_" x1="9.33" x2="23.637" y1="77.654" y2="32.76" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#21d789"/><stop offset=".164" style="stop-color:#24d788"/><stop offset=".305" style="stop-color:#2fd886"/><stop offset=".437" style="stop-color:#41da82"/><stop offset=".564" style="stop-color:#5adc7d"/><stop offset=".688" style="stop-color:#7ae077"/><stop offset=".809" style="stop-color:#a1e36e"/><stop offset=".925" style="stop-color:#cfe865"/><stop offset="1" style="stop-color:#f1eb5e"/></linearGradient><polygon style="fill:url(#SVGID_3_)" points="28.5 22.1 30.4 62.5 24 70 0 56 19.7 26.6"/><linearGradient id="SVGID_4_" x1="28.275" x2="59.409" y1="38.623" y2="-3.236" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#21d789"/><stop offset=".061" style="stop-color:#24d788"/><stop offset=".113" style="stop-color:#2fd886"/><stop offset=".162" style="stop-color:#41da82"/><stop offset=".209" style="stop-color:#5add7d"/><stop offset=".255" style="stop-color:#79e077"/><stop offset=".258" style="stop-color:#7ce076"/><stop offset=".499" style="stop-color:#8ce173"/><stop offset=".925" style="stop-color:#b2e56b"/></linearGradient><polygon style="fill:url(#SVGID_4_)" points="54.9 19.1 30.6 19.1 52.1 0"/><linearGradient id="SVGID_5_" x1="75.889" x2="13.158" y1="43.95" y2="43.369" gradientUnits="userSpaceOnUse"><stop offset=".387" style="stop-color:#fcf84a"/><stop offset=".536" style="stop-color:#ecf451"/><stop offset=".826" style="stop-color:#c2e964"/><stop offset=".925" style="stop-color:#b2e56b"/></linearGradient><polygon style="fill:url(#SVGID_5_)" points="70 62.6 48.6 69.9 20.2 61.9 28.5 22.1 31.8 19.1 49.1 17.5 47.5 34.9 61.3 29.6"/></g><g><rect style="fill:#000" width="43.2" height="43.2" x="13.4" y="13.4"/><rect style="fill:#fff" width="16.2" height="2.7" x="17.5" y="48.5"/><path style="fill:#fff" d="M17.3,19.1h7.3c4.3,0,6.9,2.5,6.9,6.2v0.1c0,4.1-3.2,6.3-7.2,6.3h-3V37h-3.9V19.1z M24.4,28.1 c2,0,3.1-1.2,3.1-2.7v-0.1c0-1.8-1.2-2.7-3.2-2.7h-3v5.5H24.4z"/><path style="fill:#fff" d="M33.1,28.1L33.1,28.1c0-5.1,3.8-9.3,9.3-9.3c3.4,0,5.4,1.1,7.1,2.8l-2.5,2.9c-1.4-1.3-2.8-2-4.6-2 c-3,0-5.2,2.5-5.2,5.6V28c0,3.1,2.1,5.6,5.2,5.6c2,0,3.3-0.8,4.7-2.1l2.5,2.5c-1.8,2-3.9,3.2-7.3,3.2C37,37.3,33.1,33.2,33.1,28.1"/></g></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 70 70" width="70px" height="70px" xml:space="preserve" style="enable-background:new 0 0 70 70"><g><g><linearGradient id="SVGID_1_" x1="24.998" x2="66.656" y1="27.046" y2="27.046" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#21d789"/><stop offset="1" style="stop-color:#07c3f2"/></linearGradient><polygon style="fill:url(#SVGID_1_)" points="49.1 11 69.5 28.1 62.2 43 49.8 39.6 39.2 39.6"/><linearGradient id="SVGID_2_" x1="-24.559" x2="61.22" y1="59.081" y2="-4.241" gradientUnits="userSpaceOnUse"><stop offset=".011" style="stop-color:#fcf84a"/><stop offset=".112" style="stop-color:#a7eb62"/><stop offset=".206" style="stop-color:#5fe077"/><stop offset=".273" style="stop-color:#32da84"/><stop offset=".306" style="stop-color:#21d789"/><stop offset=".577" style="stop-color:#21d789"/><stop offset=".597" style="stop-color:#21d789"/><stop offset=".686" style="stop-color:#20d68c"/><stop offset=".763" style="stop-color:#1ed497"/><stop offset=".835" style="stop-color:#19d1a9"/><stop offset=".904" style="stop-color:#13ccc2"/><stop offset=".971" style="stop-color:#0bc6e1"/><stop offset="1" style="stop-color:#07c3f2"/></linearGradient><polygon style="fill:url(#SVGID_2_)" points="28.5 22.1 24.5 43 24.1 50.2 14.2 54.5 0 56 4.3 10.7 29.9 0 45.7 10.4"/><linearGradient id="SVGID_3_" x1="9.33" x2="23.637" y1="77.654" y2="32.76" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#21d789"/><stop offset=".164" style="stop-color:#24d788"/><stop offset=".305" style="stop-color:#2fd886"/><stop offset=".437" style="stop-color:#41da82"/><stop offset=".564" style="stop-color:#5adc7d"/><stop offset=".688" style="stop-color:#7ae077"/><stop offset=".809" style="stop-color:#a1e36e"/><stop offset=".925" style="stop-color:#cfe865"/><stop offset="1" style="stop-color:#f1eb5e"/></linearGradient><polygon style="fill:url(#SVGID_3_)" points="28.5 22.1 30.4 62.5 24 70 0 56 19.7 26.6"/><linearGradient id="SVGID_4_" x1="28.275" x2="59.409" y1="38.623" y2="-3.236" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#21d789"/><stop offset=".061" style="stop-color:#24d788"/><stop offset=".113" style="stop-color:#2fd886"/><stop offset=".162" style="stop-color:#41da82"/><stop offset=".209" style="stop-color:#5add7d"/><stop offset=".255" style="stop-color:#79e077"/><stop offset=".258" style="stop-color:#7ce076"/><stop offset=".499" style="stop-color:#8ce173"/><stop offset=".925" style="stop-color:#b2e56b"/></linearGradient><polygon style="fill:url(#SVGID_4_)" points="54.9 19.1 30.6 19.1 52.1 0"/><linearGradient id="SVGID_5_" x1="75.889" x2="13.158" y1="43.95" y2="43.369" gradientUnits="userSpaceOnUse"><stop offset=".387" style="stop-color:#fcf84a"/><stop offset=".536" style="stop-color:#ecf451"/><stop offset=".826" style="stop-color:#c2e964"/><stop offset=".925" style="stop-color:#b2e56b"/></linearGradient><polygon style="fill:url(#SVGID_5_)" points="70 62.6 48.6 69.9 20.2 61.9 28.5 22.1 31.8 19.1 49.1 17.5 47.5 34.9 61.3 29.6"/></g><g><rect style="fill:#000" width="43.2" height="43.2" x="13.4" y="13.4"/><rect style="fill:#fff" width="16.2" height="2.7" x="17.5" y="48.5"/><path style="fill:#fff" d="M17.3,19.1h7.3c4.3,0,6.9,2.5,6.9,6.2v0.1c0,4.1-3.2,6.3-7.2,6.3h-3V37h-3.9V19.1z M24.4,28.1 c2,0,3.1-1.2,3.1-2.7v-0.1c0-1.8-1.2-2.7-3.2-2.7h-3v5.5H24.4z"/><path style="fill:#fff" d="M33.1,28.1L33.1,28.1c0-5.1,3.8-9.3,9.3-9.3c3.4,0,5.4,1.1,7.1,2.8l-2.5,2.9c-1.4-1.3-2.8-2-4.6-2 c-3,0-5.2,2.5-5.2,5.6V28c0,3.1,2.1,5.6,5.2,5.6c2,0,3.3-0.8,4.7-2.1l2.5,2.5c-1.8,2-3.9,3.2-7.3,3.2C37,37.3,33.1,33.2,33.1,28.1"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

+1
View File
@@ -2,6 +2,7 @@
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="90.3px" height="109.1px"
viewBox="0.6 1067.9 90.3 109.1" enable-background="new 0.6 1067.9 90.3 109.1" xml:space="preserve">
<g>
<path fill="#EE4C2C" d="M77.6,1099.6l-8.1,8.1c13.3,13.3,13.3,34.7,0,47.8c-13.3,13.3-34.7,13.3-47.8,0

Before

Width:  |  Height:  |  Size: 801 B

After

Width:  |  Height:  |  Size: 835 B

+1 -1
View File
@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 70 70" xml:space="preserve" style="enable-background:new 0 0 70 70"><defs><linearGradient id="linear-gradient" x1="70.226" x2="-5.13" y1="27.799" y2="63.122" gradientTransform="matrix(1, 0, 0, -1, 0, 71.27997)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#c90f5e"/><stop offset=".221" stop-color="#c90f5e"/><stop offset=".236" stop-color="#c90f5e"/><stop offset=".356" stop-color="#ca135c"/><stop offset=".466" stop-color="#ce1e57"/><stop offset=".574" stop-color="#d4314e"/><stop offset=".678" stop-color="#dc4b41"/><stop offset=".782" stop-color="#e66d31"/><stop offset=".883" stop-color="#f3961d"/><stop offset=".942" stop-color="#fcb20f"/></linearGradient><linearGradient id="linear-gradient-2" x1="24.659" x2="46.048" y1="61.996" y2="2.934" gradientTransform="matrix(1, 0, 0, -1, 0, 71.27997)" gradientUnits="userSpaceOnUse"><stop offset=".042" stop-color="#077cfb"/><stop offset=".445" stop-color="#c90f5e"/><stop offset=".958" stop-color="#077cfb"/></linearGradient><linearGradient id="linear-gradient-3" x1="17.396" x2="33.194" y1="63.346" y2="7.201" gradientTransform="matrix(1, 0, 0, -1, 0, 71.27997)" gradientUnits="userSpaceOnUse"><stop offset=".277" stop-color="#c90f5e"/><stop offset=".974" stop-color="#fcb20f"/></linearGradient></defs><title>rider</title><g><polygon fill="url(#linear-gradient)" points="70 27.237 63.391 23.75 20.926 0 3.827 17.921 21.619 41.068 60.537 44.397 70 27.237"/><polygon fill="url(#linear-gradient-2)" points="50.423 16.132 44.271 1.107 27.643 17.471 11.768 50.194 49.411 70 70 57.98 50.423 16.132"/><polygon fill="url(#linear-gradient-3)" points="20.926 0 0 14.095 7.779 62.172 27.848 69.889 53.78 48.823 20.926 0"/></g><g><rect width="43.614" height="43.614" x="13.302" y="13.193"/><g><path fill="#fff" d="M17.22741,18.86293h8.39564a7.38416,7.38416,0,0,1,5.34268,1.85358,5.86989,5.86989,0,0,1,1.52648,4.1433h0A5.74339,5.74339,0,0,1,28.567,30.5296l4.47041,6.54206H28.34891L24.42368,31.1838h-3.162v5.88785H17.22741V18.86293h0ZM25.296,27.69471c1.96262,0,3.053-1.09034,3.053-2.61682h0c0-1.74455-1.19938-2.61682-3.162-2.61682H21.15265v5.23365H25.296Z"/><path fill="#fff" d="M36.09034,18.86293H43.2866c5.77882,0,9.70405,3.92523,9.70405,9.15888h0c0,5.12461-3.92523,9.15888-9.70405,9.15888H36.09034V18.86293Zm4.03427,3.59813V33.47352h3.162a5.23727,5.23727,0,0,0,5.56075-5.45171h0a5.26493,5.26493,0,0,0-5.56075-5.56075h-3.162Z"/></g><rect width="16.355" height="2.726" x="17.227" y="48.629" fill="#fff"/></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 70 70" width="70px" height="70px" xml:space="preserve" style="enable-background:new 0 0 70 70"><defs><linearGradient id="linear-gradient" x1="70.226" x2="-5.13" y1="27.799" y2="63.122" gradientTransform="matrix(1, 0, 0, -1, 0, 71.27997)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#c90f5e"/><stop offset=".221" stop-color="#c90f5e"/><stop offset=".236" stop-color="#c90f5e"/><stop offset=".356" stop-color="#ca135c"/><stop offset=".466" stop-color="#ce1e57"/><stop offset=".574" stop-color="#d4314e"/><stop offset=".678" stop-color="#dc4b41"/><stop offset=".782" stop-color="#e66d31"/><stop offset=".883" stop-color="#f3961d"/><stop offset=".942" stop-color="#fcb20f"/></linearGradient><linearGradient id="linear-gradient-2" x1="24.659" x2="46.048" y1="61.996" y2="2.934" gradientTransform="matrix(1, 0, 0, -1, 0, 71.27997)" gradientUnits="userSpaceOnUse"><stop offset=".042" stop-color="#077cfb"/><stop offset=".445" stop-color="#c90f5e"/><stop offset=".958" stop-color="#077cfb"/></linearGradient><linearGradient id="linear-gradient-3" x1="17.396" x2="33.194" y1="63.346" y2="7.201" gradientTransform="matrix(1, 0, 0, -1, 0, 71.27997)" gradientUnits="userSpaceOnUse"><stop offset=".277" stop-color="#c90f5e"/><stop offset=".974" stop-color="#fcb20f"/></linearGradient></defs><title>rider</title><g><polygon fill="url(#linear-gradient)" points="70 27.237 63.391 23.75 20.926 0 3.827 17.921 21.619 41.068 60.537 44.397 70 27.237"/><polygon fill="url(#linear-gradient-2)" points="50.423 16.132 44.271 1.107 27.643 17.471 11.768 50.194 49.411 70 70 57.98 50.423 16.132"/><polygon fill="url(#linear-gradient-3)" points="20.926 0 0 14.095 7.779 62.172 27.848 69.889 53.78 48.823 20.926 0"/></g><g><rect width="43.614" height="43.614" x="13.302" y="13.193"/><g><path fill="#fff" d="M17.22741,18.86293h8.39564a7.38416,7.38416,0,0,1,5.34268,1.85358,5.86989,5.86989,0,0,1,1.52648,4.1433h0A5.74339,5.74339,0,0,1,28.567,30.5296l4.47041,6.54206H28.34891L24.42368,31.1838h-3.162v5.88785H17.22741V18.86293h0ZM25.296,27.69471c1.96262,0,3.053-1.09034,3.053-2.61682h0c0-1.74455-1.19938-2.61682-3.162-2.61682H21.15265v5.23365H25.296Z"/><path fill="#fff" d="M36.09034,18.86293H43.2866c5.77882,0,9.70405,3.92523,9.70405,9.15888h0c0,5.12461-3.92523,9.15888-9.70405,9.15888H36.09034V18.86293Zm4.03427,3.59813V33.47352h3.162a5.23727,5.23727,0,0,0,5.56075-5.45171h0a5.26493,5.26493,0,0,0-5.56075-5.56075h-3.162Z"/></g><rect width="16.355" height="2.726" x="17.227" y="48.629" fill="#fff"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

+1 -1
View File
@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 70 70" xml:space="preserve" style="enable-background:new 0 0 70 70"><g><g><linearGradient id="SVGID_1_" x1="49.609" x2="30.346" y1="52.554" y2="7.163" gradientUnits="userSpaceOnUse"><stop offset=".172" style="stop-color:#ff1f51"/><stop offset=".28" style="stop-color:#ff3648"/><stop offset=".468" style="stop-color:#ff593b"/><stop offset=".646" style="stop-color:#ff7231"/><stop offset=".809" style="stop-color:#ff812b"/><stop offset=".941" style="stop-color:#ff8629"/></linearGradient><polygon style="fill:url(#SVGID_1_)" points="58.2 0 38.2 7.2 22.4 0 6.9 38.9 24.7 31.8 24.4 51.5 62.5 52.2 70 13.7"/><linearGradient id="SVGID_2_" x1="33.259" x2="25.105" y1="12.887" y2="33.436" gradientUnits="userSpaceOnUse"><stop offset=".022" style="stop-color:#9039d0"/><stop offset=".629" style="stop-color:#ff1f51"/></linearGradient><polygon style="fill:url(#SVGID_2_)" points="50.8 22.7 25.6 6.2 5.3 18.7 49.8 35.9"/><linearGradient id="SVGID_3_" x1=".29" x2="45.284" y1="11.224" y2="68.42" gradientUnits="userSpaceOnUse"><stop offset=".107" style="stop-color:#9039d0"/><stop offset=".387" style="stop-color:#ff1f51"/><stop offset=".629" style="stop-color:#ff1f51"/><stop offset=".66" style="stop-color:#ff3648"/><stop offset=".714" style="stop-color:#ff593b"/><stop offset=".765" style="stop-color:#ff7231"/><stop offset=".812" style="stop-color:#ff812b"/><stop offset=".85" style="stop-color:#ff8629"/></linearGradient><polygon style="fill:url(#SVGID_3_)" points="29.1 68.2 55.3 64.7 47 48.7 52.5 42 53.1 37.9 25.6 6.1 0 12.4 0 49.1 14.8 70 29.1 68.2 29.1 68.2 29.1 68.2 29.1 68.2"/></g><g><rect style="fill:#000" width="43.2" height="43.2" x="13.4" y="13.4"/><rect style="fill:#fff" width="16.2" height="2.7" x="17.5" y="48.5"/><polygon style="fill:#fff" points="34.6 19 38.9 19 43.6 26.6 48.3 19 52.6 19 52.6 36.9 48.6 36.9 48.6 25.2 43.6 32.9 43.5 32.9 38.5 25.3 38.5 36.9 34.6 36.9"/><path style="fill:#fff" d="M17.4,19h8.2c2.3,0,4,0.6,5.2,1.8c1,1,1.5,2.4,1.5,4.1v0.1c0,1.5-0.4,2.6-1.1,3.5 c-0.7,0.9-1.6,1.6-2.8,2l4.4,6.4h-4.6l-3.7-5.5h-3.3l0,5.5h-3.9V19z M25.4,27.7c1,0,1.7-0.2,2.2-0.7c0.5-0.5,0.8-1.1,0.8-1.8v-0.1 c0-0.9-0.3-1.5-0.8-1.9c-0.5-0.4-1.3-0.6-2.3-0.6h-3.9v5.1H25.4z"/></g></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 70 70" width="70px" height="70px" xml:space="preserve" style="enable-background:new 0 0 70 70"><g><g><linearGradient id="SVGID_1_" x1="49.609" x2="30.346" y1="52.554" y2="7.163" gradientUnits="userSpaceOnUse"><stop offset=".172" style="stop-color:#ff1f51"/><stop offset=".28" style="stop-color:#ff3648"/><stop offset=".468" style="stop-color:#ff593b"/><stop offset=".646" style="stop-color:#ff7231"/><stop offset=".809" style="stop-color:#ff812b"/><stop offset=".941" style="stop-color:#ff8629"/></linearGradient><polygon style="fill:url(#SVGID_1_)" points="58.2 0 38.2 7.2 22.4 0 6.9 38.9 24.7 31.8 24.4 51.5 62.5 52.2 70 13.7"/><linearGradient id="SVGID_2_" x1="33.259" x2="25.105" y1="12.887" y2="33.436" gradientUnits="userSpaceOnUse"><stop offset=".022" style="stop-color:#9039d0"/><stop offset=".629" style="stop-color:#ff1f51"/></linearGradient><polygon style="fill:url(#SVGID_2_)" points="50.8 22.7 25.6 6.2 5.3 18.7 49.8 35.9"/><linearGradient id="SVGID_3_" x1=".29" x2="45.284" y1="11.224" y2="68.42" gradientUnits="userSpaceOnUse"><stop offset=".107" style="stop-color:#9039d0"/><stop offset=".387" style="stop-color:#ff1f51"/><stop offset=".629" style="stop-color:#ff1f51"/><stop offset=".66" style="stop-color:#ff3648"/><stop offset=".714" style="stop-color:#ff593b"/><stop offset=".765" style="stop-color:#ff7231"/><stop offset=".812" style="stop-color:#ff812b"/><stop offset=".85" style="stop-color:#ff8629"/></linearGradient><polygon style="fill:url(#SVGID_3_)" points="29.1 68.2 55.3 64.7 47 48.7 52.5 42 53.1 37.9 25.6 6.1 0 12.4 0 49.1 14.8 70 29.1 68.2 29.1 68.2 29.1 68.2 29.1 68.2"/></g><g><rect style="fill:#000" width="43.2" height="43.2" x="13.4" y="13.4"/><rect style="fill:#fff" width="16.2" height="2.7" x="17.5" y="48.5"/><polygon style="fill:#fff" points="34.6 19 38.9 19 43.6 26.6 48.3 19 52.6 19 52.6 36.9 48.6 36.9 48.6 25.2 43.6 32.9 43.5 32.9 38.5 25.3 38.5 36.9 34.6 36.9"/><path style="fill:#fff" d="M17.4,19h8.2c2.3,0,4,0.6,5.2,1.8c1,1,1.5,2.4,1.5,4.1v0.1c0,1.5-0.4,2.6-1.1,3.5 c-0.7,0.9-1.6,1.6-2.8,2l4.4,6.4h-4.6l-3.7-5.5h-3.3l0,5.5h-3.9V19z M25.4,27.7c1,0,1.7-0.2,2.2-0.7c0.5-0.5,0.8-1.1,0.8-1.8v-0.1 c0-0.9-0.3-1.5-0.8-1.9c-0.5-0.4-1.3-0.6-2.3-0.6h-3.9v5.1H25.4z"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 340 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

+2 -2
View File
@@ -1,8 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 100 100">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 100 100" width="100px" height="100px">
<circle fill="#f47421" cy="50" cx="50" r="45"/>
<circle fill="none" stroke="#ffffff" stroke-width="8.55" cx="50" cy="50" r="21.825"/>
<g id="friend"><circle fill="#f47421" cx="19.4" cy="50" r="8.4376"/>
<path stroke="#f47421" stroke-width="3.2378" d="M67,50H77"/>
<circle fill="#ffffff" cx="19.4" cy="50" r="6.00745"/></g>
<use xlink:href="#friend" transform="rotate(120,50,50)"/>
<use xlink:href="#friend" transform="rotate(240,50,50)"/></svg>
<use xlink:href="#friend" transform="rotate(240,50,50)"/></svg>

Before

Width:  |  Height:  |  Size: 550 B

After

Width:  |  Height:  |  Size: 580 B

+1 -1
View File
@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 70 70" xml:space="preserve" style="enable-background:new 0 0 70 70"><g><g><linearGradient id="SVGID_1_" x1="25.068" x2="43.183" y1="1.46" y2="66.675" gradientUnits="userSpaceOnUse"><stop offset=".285" style="stop-color:#00cdd7"/><stop offset=".941" style="stop-color:#2086d7"/></linearGradient><polygon style="fill:url(#SVGID_1_)" points="9.4 63.3 0 7.3 17.5 .1 28.6 6.7 38.8 1.2 60.1 9.4 48.1 70"/><linearGradient id="SVGID_2_" x1="30.72" x2="61.365" y1="9.734" y2="54.671" gradientUnits="userSpaceOnUse"><stop offset=".14" style="stop-color:#fff045"/><stop offset=".366" style="stop-color:#00cdd7"/></linearGradient><polygon style="fill:url(#SVGID_2_)" points="70 23.7 61 1.4 44.6 0 19.3 24.3 26.1 55.6 38.8 64.6 70 46 62.3 31.7"/><linearGradient id="SVGID_3_" x1="61.082" x2="65.106" y1="15.29" y2="29.544" gradientUnits="userSpaceOnUse"><stop offset=".285" style="stop-color:#00cdd7"/><stop offset=".941" style="stop-color:#2086d7"/></linearGradient><polygon style="fill:url(#SVGID_3_)" points="56 20.4 62.3 31.7 70 23.7 64.4 9.8"/></g><g><g><rect style="fill:#000" width="43.2" height="43.2" x="13.4" y="13.4"/><rect style="fill:#fff" width="16.2" height="2.7" x="17.5" y="48.5"/><path style="fill:#fff" d="M38.7,34.3l2.3-2.8c1.6,1.3,3.3,2.2,5.3,2.2c1.6,0,2.5-0.6,2.5-1.7v-0.1c0-1-0.6-1.5-3.6-2.3 c-3.6-0.9-5.8-1.9-5.8-5.5v-0.1c0-3.3,2.6-5.4,6.2-5.4c2.6,0,4.8,0.8,6.6,2.3l-2,3c-1.6-1.1-3.1-1.8-4.6-1.8 c-1.5,0-2.3,0.7-2.3,1.6v0.1c0,1.2,0.8,1.6,3.8,2.4c3.6,1,5.6,2.3,5.6,5.4v0.1c0,3.6-2.7,5.6-6.5,5.6 C43.5,37.2,40.8,36.2,38.7,34.3"/></g><polygon style="fill:#fff" points="35.2 19 32.5 29.4 29.5 19 26.5 19 23.4 29.4 20.7 19 16.6 19 21.7 36.9 25 36.9 28 26.5 30.9 36.9 34.3 36.9 39.4 19"/></g></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 70 70" width="70px" height="70px" xml:space="preserve" style="enable-background:new 0 0 70 70"><g><g><linearGradient id="SVGID_1_" x1="25.068" x2="43.183" y1="1.46" y2="66.675" gradientUnits="userSpaceOnUse"><stop offset=".285" style="stop-color:#00cdd7"/><stop offset=".941" style="stop-color:#2086d7"/></linearGradient><polygon style="fill:url(#SVGID_1_)" points="9.4 63.3 0 7.3 17.5 .1 28.6 6.7 38.8 1.2 60.1 9.4 48.1 70"/><linearGradient id="SVGID_2_" x1="30.72" x2="61.365" y1="9.734" y2="54.671" gradientUnits="userSpaceOnUse"><stop offset=".14" style="stop-color:#fff045"/><stop offset=".366" style="stop-color:#00cdd7"/></linearGradient><polygon style="fill:url(#SVGID_2_)" points="70 23.7 61 1.4 44.6 0 19.3 24.3 26.1 55.6 38.8 64.6 70 46 62.3 31.7"/><linearGradient id="SVGID_3_" x1="61.082" x2="65.106" y1="15.29" y2="29.544" gradientUnits="userSpaceOnUse"><stop offset=".285" style="stop-color:#00cdd7"/><stop offset=".941" style="stop-color:#2086d7"/></linearGradient><polygon style="fill:url(#SVGID_3_)" points="56 20.4 62.3 31.7 70 23.7 64.4 9.8"/></g><g><g><rect style="fill:#000" width="43.2" height="43.2" x="13.4" y="13.4"/><rect style="fill:#fff" width="16.2" height="2.7" x="17.5" y="48.5"/><path style="fill:#fff" d="M38.7,34.3l2.3-2.8c1.6,1.3,3.3,2.2,5.3,2.2c1.6,0,2.5-0.6,2.5-1.7v-0.1c0-1-0.6-1.5-3.6-2.3 c-3.6-0.9-5.8-1.9-5.8-5.5v-0.1c0-3.3,2.6-5.4,6.2-5.4c2.6,0,4.8,0.8,6.6,2.3l-2,3c-1.6-1.1-3.1-1.8-4.6-1.8 c-1.5,0-2.3,0.7-2.3,1.6v0.1c0,1.2,0.8,1.6,3.8,2.4c3.6,1,5.6,2.3,5.6,5.4v0.1c0,3.6-2.7,5.6-6.5,5.6 C43.5,37.2,40.8,36.2,38.7,34.3"/></g><polygon style="fill:#fff" points="35.2 19 32.5 29.4 29.5 19 26.5 19 23.4 29.4 20.7 19 16.6 19 21.7 36.9 25 36.9 28 26.5 30.9 36.9 34.3 36.9 39.4 19"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB