Merge branch 'main' into logo/json

This commit is contained in:
Pablo Hdez 2024-12-09 10:15:45 +00:00 committed by GitHub
commit 35a173b224
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
31 changed files with 247 additions and 16 deletions

View File

@ -15,11 +15,13 @@
import { buttonStyles } from '@/ui/styles';
import { cn } from '@/utils/cn';
import { componentTemplate } from '@/utils/componentTemplate';
import { generateAngularComponent } from '@/utils/generateAngularComponent';
//Icons:
import ReactIcon from './icons/reactIcon.svelte';
import VueIcon from './icons/vueIcon.svelte';
import SvelteIcon from './icons/svelteIcon.svelte';
import AngularIcon from './icons/angularIcon.svelte';
// Props:
export let iconSize = 24;
@ -163,6 +165,33 @@
toast.error(`Failed to copy ${framework} component`);
}
};
// Copy SVG as Standalone Angular component:
const convertSvgAngularComponent = async () => {
isLoading = true;
optionsOpen = false;
const title = svgInfo.title.split(' ').join('');
const svgUrlToCopy = getSvgUrl();
const content = await getSvgContent(svgUrlToCopy);
if (!content) {
toast.error('Failed to fetch the SVG content', {
duration: 5000
});
isLoading = false;
return;
}
const angularComponent = generateAngularComponent(content, title);
await clipboard(angularComponent);
toast.success(`Copied as Standalone Angular component`, {
description: `${svgInfo.title} - ${svgInfo.category}`
});
isLoading = false;
};
</script>
<Popover.Root open={optionsOpen} onOpenChange={(isOpen) => (optionsOpen = isOpen)}>
@ -185,6 +214,7 @@
<Tabs.Trigger value="react">React</Tabs.Trigger>
<Tabs.Trigger value="vue">Vue</Tabs.Trigger>
<Tabs.Trigger value="svelte">Svelte</Tabs.Trigger>
<Tabs.Trigger value="angular">Angular</Tabs.Trigger>
</Tabs.List>
<Tabs.Content value="source">
<section class="flex flex-col space-y-2">
@ -265,6 +295,19 @@
</button>
</section>
</Tabs.Content>
<Tabs.Content value="angular">
<section class="flex flex-col space-y-2">
<button
class={cn(buttonStyles, 'w-full rounded-md')}
title="Copy as Standalone Component"
disabled={isLoading}
on:click={() => convertSvgAngularComponent()}
>
<AngularIcon iconSize={18} />
<span>Copy Standalone Component</span>
</button>
</section>
</Tabs.Content>
</Tabs.Root>
</Popover.Content>
</Popover.Root>

View File

@ -0,0 +1,46 @@
<script lang="ts">
export let iconSize: number;
</script>
<svg
xmlns="http://www.w3.org/2000/svg"
width={iconSize || 16}
height={iconSize || 16}
viewBox="0 0 242 256"
><g clip-path="url(#a)"
><mask
id="b"
width="242"
height="256"
x="0"
y="0"
maskUnits="userSpaceOnUse"
style="mask-type:luminance"><path fill="#fff" d="M0 0h242v256H0V0Z" /></mask
><g mask="url(#b)"
><path
fill="url(#c)"
d="m241 43-9 136L149 0l92 43Zm-58 176-62 36-63-36 12-31h101l12 31ZM121 68l32 80H88l33-80ZM9 179 0 43 92 0 9 179Z"
/><path
fill="url(#d)"
d="m241 43-9 136L149 0l92 43Zm-58 176-62 36-63-36 12-31h101l12 31ZM121 68l32 80H88l33-80ZM9 179 0 43 92 0 9 179Z"
/></g
></g
><defs
><linearGradient id="c" x1="53.2" x2="245" y1="231.9" y2="140.7" gradientUnits="userSpaceOnUse"
><stop stop-color="#E40035" /><stop offset=".2" stop-color="#F60A48" /><stop
offset=".4"
stop-color="#F20755"
/><stop offset=".5" stop-color="#DC087D" /><stop offset=".7" stop-color="#9717E7" /><stop
offset="1"
stop-color="#6C00F5"
/></linearGradient
>
<linearGradient id="d" x1="44.5" x2="170" y1="30.7" y2="174" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF31D9" /><stop
offset="1"
stop-color="#FF5BE1"
stop-opacity="0"
/></linearGradient
><clipPath id="a"><path fill="#fff" d="M0 0h242v256H0z" /></clipPath></defs
></svg
>

View File

@ -214,7 +214,7 @@ export const svgs: iSVG[] = [
},
{
title: 'JWT',
category: 'Library',
category: ['Library', 'Authentication'],
route: '/library/jwt.svg',
url: 'https://jwt.io/'
},
@ -239,7 +239,7 @@ export const svgs: iSVG[] = [
},
{
title: 'WorkOS',
category: 'Software',
category: ['Software', 'Authentication'],
route: {
light: '/library/workos.svg',
dark: '/library/workos-light.svg'
@ -575,7 +575,7 @@ export const svgs: iSVG[] = [
},
{
title: 'Twilio',
category: 'Software',
category: ['Software', 'Authentication'],
route: '/library/twilio.svg',
url: 'https://twilio.com'
},
@ -615,7 +615,7 @@ export const svgs: iSVG[] = [
},
{
title: 'Authy',
category: 'Software',
category: ['Software', 'Authentication'],
route: '/library/authy.svg',
url: 'https://authy.com/'
},
@ -736,7 +736,10 @@ export const svgs: iSVG[] = [
{
title: 'Amazon Web Services',
category: 'Software',
route: '/library/aws.svg',
route: {
light: '/library/aws_light.svg',
dark: '/library/aws_dark.svg'
},
url: 'https://aws.amazon.com/'
},
{
@ -810,7 +813,7 @@ export const svgs: iSVG[] = [
},
{
title: 'Auth0',
category: 'Library',
category: ['Library', 'Authentication'],
route: '/library/auth0.svg',
url: 'https://auth0.com/'
},
@ -3054,5 +3057,87 @@ export const svgs: iSVG[] = [
category: 'Language',
route: '/library/json.svg',
url: 'https://json.org/'
},
{
title: 'nuqs',
category: 'Library',
route: {
light: '/library/nuqs.svg',
dark: '/library/nuqs_dark.svg'
},
wordmark: {
light: '/library/nuqs-wordmark.svg',
dark: '/library/nuqs-wordmark_dark.svg'
},
url: 'https://nuqs.47ng.com/'
},
{
title: 'SoundCloud',
category: 'Entertainment',
route: {
light: '/library/soundcloud-logo.svg',
dark: '/library/soundcloud-logo_dark.svg'
},
wordmark: {
light: '/library/soundcloud-wordmark.svg',
dark: 'library/soundcloud-wordmark_dark.svg'
},
url: 'https://soundcloud.com/'
},
{
title: 'Clerk',
category: ['Software', 'Authentication'],
route: {
light: '/library/clerk-light.svg',
dark: '/library/clerk-dark.svg'
},
url: 'https://clerk.com/'
},
{
title: 'Mermaid',
category: ['Library'],
route: {
light: '/library/mermaid-logo-light.svg',
dark: '/library/mermaid-logo-dark.svg'
},
url: 'https://mermaid.js.org/'
},
{
title: 'Home Assistant',
category: ['IoT', 'Home Automation', 'Software'],
route: '/library/home-assistant.svg',
wordmark: {
light: '/library/home-assistant-wordmark.svg',
dark: '/library/home-assistant-wordmark-dark.svg'
},
url: 'https://github.com/home-assistant/assets/tree/master/logo'
},
{
title: 'UXAnaRangel',
category: ['Community'],
route: {
light: '/library/uxanarangel-light.svg',
dark: '/library/uxanarangel-dark.svg'
},
url: 'https://uxanarangel.com/'
},
{
title: 'UXCorpRangel',
category: ['Community'],
route: {
light: '/library/uxcorprangel-light.svg',
dark: '/library/uxcorprangel-dark.svg'
},
url: 'https://github.com/UXCorpRangel/'
},
{
title: 'PostHog',
category: 'Devtool',
route: '/library/posthog.svg',
wordmark: {
light: '/library/posthog-wordmark.svg',
dark: '/library/posthog-wordmark_dark.svg'
},
url: 'https://posthog.com/'
}
];

View File

@ -25,4 +25,7 @@ export type tCategory =
| 'Vercel'
| 'Google'
| 'Payment'
| 'void(0)';
| 'void(0)'
| 'Authentication'
| 'IoT'
| 'Home Automation';

View File

@ -9,7 +9,7 @@
</script>
<TabsPrimitive.List
class={cn('inline-flex h-9 items-center justify-center space-x-1 rounded-lg', className)}
class={cn('mb-2 flex flex-wrap items-center justify-center space-x-1 rounded-lg', className)}
{...$$restProps}
>
<slot />

View File

@ -0,0 +1,28 @@
export function generateAngularComponent(svgContent: string, componentName: string): string {
const updatedSvgContent = svgContent.replace(
/<svg([^>]*)>/,
`<svg$1 [attr.width]="size.width" [attr.height]="size.height">`
);
return `
/**
* -------------------------------------------------------------------------
* This Angular standalone component was generated by svgl.app
* 🧩 A beautiful library with SVG logos
* -------------------------------------------------------------------------
*/
import { Component, Input } from '@angular/core';
@Component({
selector: 'svg-${componentName}',
standalone: true,
template: \`
${updatedSvgContent.trim()}
\`,
})
export class ${componentName}Component {
@Input({ required: true }) size: { width: number; height: number };
}
`;
}

View File

@ -1,8 +0,0 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 304 182" style="enable-background:new 0 0 304 182" xml:space="preserve">
<style>
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#f90}
</style>
<path d="m86 66 2 9c0 3 1 5 3 8v2l-1 3-7 4-2 1-3-1-4-5-3-6c-8 9-18 14-29 14-9 0-16-3-20-8-5-4-8-11-8-19s3-15 9-20c6-6 14-8 25-8a79 79 0 0 1 22 3v-7c0-8-2-13-5-16-3-4-8-5-16-5l-11 1a80 80 0 0 0-14 5h-2c-1 0-2-1-2-3v-5l1-3c0-1 1-2 3-2l12-5 16-2c12 0 20 3 26 8 5 6 8 14 8 25v32zM46 82l10-2c4-1 7-4 10-7l3-6 1-9v-4a84 84 0 0 0-19-2c-6 0-11 1-15 4-3 2-4 6-4 11s1 8 3 11c3 2 6 4 11 4zm80 10-4-1-2-3-23-78-1-4 2-2h10l4 1 2 4 17 66 15-66 2-4 4-1h8l4 1 2 4 16 67 17-67 2-4 4-1h9c2 0 3 1 3 2v2l-1 2-24 78-2 4-4 1h-9l-4-1-1-4-16-65-15 64-2 4-4 1h-9zm129 3a66 66 0 0 1-27-6l-3-3-1-2v-5c0-2 1-3 2-3h2l3 1a54 54 0 0 0 23 5c6 0 11-2 14-4 4-2 5-5 5-9l-2-7-10-5-15-5c-7-2-13-6-16-10a24 24 0 0 1 5-34l10-5a44 44 0 0 1 20-2 110 110 0 0 1 12 3l4 2 3 2 1 4v4c0 3-1 4-2 4l-4-2c-6-2-12-3-19-3-6 0-11 0-14 2s-4 5-4 9c0 3 1 5 3 7s5 4 11 6l14 4c7 3 12 6 15 10s5 9 5 14l-3 12-7 8c-3 3-7 5-11 6l-14 2z" style="fill:#252f3e"/>
<path class="st1" d="M274 144A220 220 0 0 1 4 124c-4-3-1-6 2-4a300 300 0 0 0 263 16c5-2 10 4 5 8z"/>
<path class="st1" d="M287 128c-4-5-28-3-38-1-4 0-4-3-1-5 19-13 50-9 53-5 4 5-1 36-18 51-3 2-6 1-5-2 5-10 13-33 9-38z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" x="0" y="0" viewBox="0 0 304 182"><path fill="#ffffff" d="m86 66 2 9c0 3 1 5 3 8v2l-1 3-7 4-2 1-3-1-4-5-3-6c-8 9-18 14-29 14-9 0-16-3-20-8-5-4-8-11-8-19s3-15 9-20c6-6 14-8 25-8a79 79 0 0 1 22 3v-7c0-8-2-13-5-16-3-4-8-5-16-5l-11 1a80 80 0 0 0-14 5h-2c-1 0-2-1-2-3v-5l1-3c0-1 1-2 3-2l12-5 16-2c12 0 20 3 26 8 5 6 8 14 8 25v32zM46 82l10-2c4-1 7-4 10-7l3-6 1-9v-4a84 84 0 0 0-19-2c-6 0-11 1-15 4-3 2-4 6-4 11s1 8 3 11c3 2 6 4 11 4zm80 10-4-1-2-3-23-78-1-4 2-2h10l4 1 2 4 17 66 15-66 2-4 4-1h8l4 1 2 4 16 67 17-67 2-4 4-1h9c2 0 3 1 3 2v2l-1 2-24 78-2 4-4 1h-9l-4-1-1-4-16-65-15 64-2 4-4 1h-9zm129 3a66 66 0 0 1-27-6l-3-3-1-2v-5c0-2 1-3 2-3h2l3 1a54 54 0 0 0 23 5c6 0 11-2 14-4 4-2 5-5 5-9l-2-7-10-5-15-5c-7-2-13-6-16-10a24 24 0 0 1 5-34l10-5a44 44 0 0 1 20-2 110 110 0 0 1 12 3l4 2 3 2 1 4v4c0 3-1 4-2 4l-4-2c-6-2-12-3-19-3-6 0-11 0-14 2s-4 5-4 9c0 3 1 5 3 7s5 4 11 6l14 4c7 3 12 6 15 10s5 9 5 14l-3 12-7 8c-3 3-7 5-11 6l-14 2z"/><path d="M274 144A220 220 0 0 1 4 124c-4-3-1-6 2-4a300 300 0 0 0 263 16c5-2 10 4 5 8z" fill="#f90"/><path d="M287 128c-4-5-28-3-38-1-4 0-4-3-1-5 19-13 50-9 53-5 4 5-1 36-18 51-3 2-6 1-5-2 5-10 13-33 9-38z" fill="#f90"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" x="0" y="0" viewBox="0 0 304 182"><path fill="#252f3e" d="m86 66 2 9c0 3 1 5 3 8v2l-1 3-7 4-2 1-3-1-4-5-3-6c-8 9-18 14-29 14-9 0-16-3-20-8-5-4-8-11-8-19s3-15 9-20c6-6 14-8 25-8a79 79 0 0 1 22 3v-7c0-8-2-13-5-16-3-4-8-5-16-5l-11 1a80 80 0 0 0-14 5h-2c-1 0-2-1-2-3v-5l1-3c0-1 1-2 3-2l12-5 16-2c12 0 20 3 26 8 5 6 8 14 8 25v32zM46 82l10-2c4-1 7-4 10-7l3-6 1-9v-4a84 84 0 0 0-19-2c-6 0-11 1-15 4-3 2-4 6-4 11s1 8 3 11c3 2 6 4 11 4zm80 10-4-1-2-3-23-78-1-4 2-2h10l4 1 2 4 17 66 15-66 2-4 4-1h8l4 1 2 4 16 67 17-67 2-4 4-1h9c2 0 3 1 3 2v2l-1 2-24 78-2 4-4 1h-9l-4-1-1-4-16-65-15 64-2 4-4 1h-9zm129 3a66 66 0 0 1-27-6l-3-3-1-2v-5c0-2 1-3 2-3h2l3 1a54 54 0 0 0 23 5c6 0 11-2 14-4 4-2 5-5 5-9l-2-7-10-5-15-5c-7-2-13-6-16-10a24 24 0 0 1 5-34l10-5a44 44 0 0 1 20-2 110 110 0 0 1 12 3l4 2 3 2 1 4v4c0 3-1 4-2 4l-4-2c-6-2-12-3-19-3-6 0-11 0-14 2s-4 5-4 9c0 3 1 5 3 7s5 4 11 6l14 4c7 3 12 6 15 10s5 9 5 14l-3 12-7 8c-3 3-7 5-11 6l-14 2z"/><path d="M274 144A220 220 0 0 1 4 124c-4-3-1-6 2-4a300 300 0 0 0 263 16c5-2 10 4 5 8z" fill="#f90"/><path d="M287 128c-4-5-28-3-38-1-4 0-4-3-1-5 19-13 50-9 53-5 4 5-1 36-18 51-3 2-6 1-5-2 5-10 13-33 9-38z" fill="#f90"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,6 @@
<svg width="110" height="32" viewBox="0 0 110 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<ellipse cx="16.0003" cy="16" rx="4.99998" ry="5" fill="#9785FF" style="fill:#9785FF;fill:color(display-p3 0.5922 0.5216 1.0000);fill-opacity:1;"/>
<path d="M25.0091 27.8382C25.4345 28.2636 25.3918 28.9679 24.8919 29.3027C22.3488 31.0062 19.2899 31.9997 15.9991 31.9997C12.7082 31.9997 9.64935 31.0062 7.10616 29.3027C6.60633 28.9679 6.56361 28.2636 6.98901 27.8382L10.6429 24.1843C10.9732 23.854 11.4855 23.8019 11.9012 24.0148C13.1303 24.6445 14.5232 24.9997 15.9991 24.9997C17.4749 24.9997 18.8678 24.6445 20.0969 24.0148C20.5126 23.8019 21.0249 23.854 21.3552 24.1843L25.0091 27.8382Z" fill="#9785FF" style="fill:#9785FF;fill:color(display-p3 0.5922 0.5216 1.0000);fill-opacity:1;"/>
<path opacity="0.6" d="M24.8928 2.697C25.3926 3.0318 25.4353 3.73609 25.0099 4.16149L21.356 7.81544C21.0258 8.14569 20.5134 8.19785 20.0978 7.98491C18.8687 7.35525 17.4758 7 15.9999 7C11.0294 7 6.99997 11.0294 6.99997 16C6.99997 17.4759 7.35522 18.8688 7.98488 20.0979C8.19782 20.5136 8.14565 21.0259 7.81541 21.3561L4.16147 25.0101C3.73607 25.4355 3.03178 25.3927 2.69698 24.8929C0.993522 22.3497 0 19.2909 0 16C0 7.16344 7.16341 0 15.9999 0C19.2908 0 22.3496 0.993529 24.8928 2.697Z" fill="#9785FF" style="fill:#9785FF;fill:color(display-p3 0.5922 0.5216 1.0000);fill-opacity:1;"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M100.405 21.2489C100.421 21.2324 100.442 21.2231 100.465 21.2231C100.493 21.2231 100.518 21.2375 100.533 21.2613L105.275 28.8821C105.321 28.9554 105.401 29 105.487 29L109.75 29C109.946 29 110.066 28.7848 109.963 28.6183L103.457 18.1226C103.399 18.0278 103.41 17.9056 103.485 17.823L109.752 10.908C109.898 10.7473 109.784 10.4901 109.567 10.4901H105.12C105.05 10.4901 104.983 10.5194 104.936 10.5711L97.6842 18.4755C97.5301 18.6435 97.25 18.5345 97.25 18.3065V3.25C97.25 3.11193 97.138 3 97 3H93.25C93.1119 3 93 3.11193 93 3.25V28.75C93 28.8881 93.1119 29 93.25 29L97 29C97.138 29 97.25 28.8881 97.25 28.75V24.7373C97.25 24.6741 97.2739 24.6132 97.317 24.567L100.405 21.2489ZM52.2502 3.25C52.2502 3.11193 52.3621 3 52.5002 3H56.2501C56.3882 3 56.5001 3.11193 56.5001 3.25V28.75C56.5001 28.8881 56.3882 29 56.2501 29H52.5002C52.3621 29 52.2502 28.8881 52.2502 28.75V3.25ZM46.958 23.5912C46.8584 23.5052 46.7094 23.5117 46.6137 23.602C46.0293 24.1537 45.3447 24.595 44.5947 24.9028C43.7719 25.2407 42.8873 25.4108 41.995 25.4028C41.2415 25.4252 40.4913 25.2963 39.7906 25.0241C39.09 24.7519 38.4537 24.3422 37.9209 23.8202C36.9531 22.8322 36.396 21.4215 36.396 19.7399C36.396 16.3735 38.6356 14.0709 41.995 14.0709C42.896 14.0585 43.7888 14.241 44.6094 14.6052C45.3533 14.9355 46.0214 15.4077 46.5748 15.9934C46.6694 16.0936 46.8266 16.1052 46.9309 16.015L49.4625 13.8244C49.5659 13.7349 49.5785 13.5786 49.4873 13.4767C47.583 11.3488 44.5997 10.25 41.7627 10.25C36.0506 10.25 32.0003 14.1031 32.0003 19.7719C32.0003 22.5756 33.0069 24.9365 34.7044 26.6036C36.402 28.2707 38.8203 29.25 41.6108 29.25C45.1097 29.25 47.9259 27.9082 49.577 26.187C49.6739 26.086 49.6632 25.9252 49.5572 25.8338L46.958 23.5912ZM77.1575 20.9877C77.1436 21.1129 77.0371 21.2066 76.9111 21.2066H63.7746C63.615 21.2066 63.4961 21.3546 63.5377 21.5087C64.1913 23.9314 66.1398 25.3973 68.7994 25.3973C69.6959 25.4161 70.5846 25.2317 71.3968 24.8582C72.1536 24.5102 72.8249 24.0068 73.3659 23.3828C73.4314 23.3073 73.5454 23.2961 73.622 23.3602L76.2631 25.6596C76.3641 25.7476 76.3782 25.8999 76.2915 26.0021C74.697 27.8832 72.1135 29.25 68.5683 29.25C63.1142 29.25 59.0001 25.4731 59.0001 19.7348C59.0001 16.9197 59.9693 14.559 61.5847 12.8921C62.4374 12.0349 63.4597 11.3584 64.5882 10.9043C65.7168 10.4502 66.9281 10.2281 68.1473 10.2517C73.6753 10.2517 77.25 14.1394 77.25 19.5075C77.2431 20.0021 77.2123 20.4961 77.1575 20.9877ZM63.6166 17.5038C63.5702 17.6581 63.6894 17.8084 63.8505 17.8084H72.5852C72.7467 17.8084 72.8659 17.6572 72.8211 17.5021C72.2257 15.4416 70.7153 14.0666 68.3696 14.0666C67.6796 14.0447 66.993 14.1696 66.3565 14.4326C65.7203 14.6957 65.149 15.0908 64.6823 15.5907C64.1914 16.1473 63.8285 16.7998 63.6166 17.5038ZM90.2473 10.2527C90.3864 10.2512 90.5 10.3636 90.5 10.5027V14.7013C90.5 14.8469 90.3762 14.9615 90.2311 14.9508C89.8258 14.9207 89.4427 14.8952 89.1916 14.8952C85.9204 14.8952 84 17.1975 84 20.2195V28.75C84 28.8881 83.8881 29 83.75 29H80C79.862 29 79.75 28.8881 79.75 28.75V10.7623C79.75 10.6242 79.862 10.5123 80 10.5123H83.75C83.8881 10.5123 84 10.6242 84 10.7623V13.287C84 13.3013 84.0116 13.3128 84.0258 13.3128C84.034 13.3128 84.0416 13.3089 84.0465 13.3024C85.5124 11.3448 87.676 10.2559 89.9617 10.2559L90.2473 10.2527Z" fill="white" style="fill:white;fill:white;fill-opacity:1;"/>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -0,0 +1,6 @@
<svg width="110" height="32" viewBox="0 0 110 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<ellipse cx="16.0003" cy="16" rx="4.99998" ry="5" fill="#6C47FF" style="fill:#6C47FF;fill:color(display-p3 0.4235 0.2784 1.0000);fill-opacity:1;"/>
<path d="M25.0091 27.8382C25.4345 28.2636 25.3918 28.9679 24.8919 29.3027C22.3488 31.0062 19.2899 31.9997 15.999 31.9997C12.7082 31.9997 9.64934 31.0062 7.10615 29.3027C6.60632 28.9679 6.56361 28.2636 6.989 27.8382L10.6429 24.1843C10.9732 23.854 11.4855 23.8019 11.9012 24.0148C13.1302 24.6445 14.5232 24.9997 15.999 24.9997C17.4749 24.9997 18.8678 24.6445 20.0969 24.0148C20.5126 23.8019 21.0249 23.854 21.3552 24.1843L25.0091 27.8382Z" fill="#6C47FF" style="fill:#6C47FF;fill:color(display-p3 0.4235 0.2784 1.0000);fill-opacity:1;"/>
<path d="M24.8928 2.697C25.3926 3.0318 25.4353 3.73609 25.0099 4.16149L21.356 7.81544C21.0258 8.14569 20.5134 8.19785 20.0978 7.98491C18.8687 7.35525 17.4758 7 15.9999 7C11.0294 7 6.99997 11.0294 6.99997 16C6.99997 17.4759 7.35522 18.8688 7.98488 20.0979C8.19782 20.5136 8.14565 21.0259 7.81541 21.3561L4.16147 25.0101C3.73607 25.4355 3.03178 25.3927 2.69698 24.8929C0.993522 22.3497 0 19.2909 0 16C0 7.16344 7.16341 0 15.9999 0C19.2908 0 22.3496 0.993529 24.8928 2.697Z" fill="#BAB1FF" style="fill:#BAB1FF;fill:color(display-p3 0.7294 0.6941 1.0000);fill-opacity:1;"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M100.405 21.2489C100.421 21.2324 100.442 21.2231 100.465 21.2231C100.493 21.2231 100.518 21.2375 100.533 21.2613L105.275 28.8821C105.321 28.9554 105.401 29 105.487 29L109.75 29C109.946 29 110.066 28.7848 109.963 28.6183L103.457 18.1226C103.399 18.0278 103.41 17.9056 103.485 17.823L109.752 10.908C109.898 10.7473 109.784 10.4901 109.567 10.4901H105.12C105.05 10.4901 104.983 10.5194 104.936 10.5711L97.6842 18.4755C97.5301 18.6435 97.25 18.5345 97.25 18.3065V3.25C97.25 3.11193 97.138 3 97 3H93.25C93.1119 3 93 3.11193 93 3.25V28.75C93 28.8881 93.1119 29 93.25 29L97 29C97.138 29 97.25 28.8881 97.25 28.75V24.7373C97.25 24.6741 97.2739 24.6132 97.317 24.567L100.405 21.2489ZM52.2502 3.25C52.2502 3.11193 52.3621 3 52.5002 3H56.2501C56.3882 3 56.5001 3.11193 56.5001 3.25V28.75C56.5001 28.8881 56.3882 29 56.2501 29H52.5002C52.3621 29 52.2502 28.8881 52.2502 28.75V3.25ZM46.958 23.5912C46.8584 23.5052 46.7094 23.5117 46.6137 23.602C46.0293 24.1537 45.3447 24.595 44.5947 24.9028C43.7719 25.2407 42.8873 25.4108 41.995 25.4028C41.2415 25.4252 40.4913 25.2963 39.7906 25.0241C39.09 24.7519 38.4537 24.3422 37.9209 23.8202C36.9531 22.8322 36.396 21.4215 36.396 19.7399C36.396 16.3735 38.6356 14.0709 41.995 14.0709C42.896 14.0585 43.7888 14.241 44.6094 14.6052C45.3533 14.9355 46.0214 15.4077 46.5748 15.9934C46.6694 16.0936 46.8266 16.1052 46.9309 16.015L49.4625 13.8244C49.5659 13.7349 49.5785 13.5786 49.4873 13.4767C47.583 11.3488 44.5997 10.25 41.7627 10.25C36.0506 10.25 32.0003 14.1031 32.0003 19.7719C32.0003 22.5756 33.0069 24.9365 34.7044 26.6036C36.402 28.2707 38.8203 29.25 41.6108 29.25C45.1097 29.25 47.9259 27.9082 49.577 26.187C49.6739 26.086 49.6632 25.9252 49.5572 25.8338L46.958 23.5912ZM77.1575 20.9877C77.1436 21.1129 77.0371 21.2066 76.9111 21.2066H63.7746C63.615 21.2066 63.4961 21.3546 63.5377 21.5087C64.1913 23.9314 66.1398 25.3973 68.7994 25.3973C69.6959 25.4161 70.5846 25.2317 71.3968 24.8582C72.1536 24.5102 72.8249 24.0068 73.3659 23.3828C73.4314 23.3073 73.5454 23.2961 73.622 23.3602L76.2631 25.6596C76.3641 25.7476 76.3782 25.8999 76.2915 26.0021C74.697 27.8832 72.1135 29.25 68.5683 29.25C63.1142 29.25 59.0001 25.4731 59.0001 19.7348C59.0001 16.9197 59.9693 14.559 61.5847 12.8921C62.4374 12.0349 63.4597 11.3584 64.5882 10.9043C65.7168 10.4502 66.9281 10.2281 68.1473 10.2517C73.6753 10.2517 77.25 14.1394 77.25 19.5075C77.2431 20.0021 77.2123 20.4961 77.1575 20.9877ZM63.6166 17.5038C63.5702 17.6581 63.6894 17.8084 63.8505 17.8084H72.5852C72.7467 17.8084 72.8659 17.6572 72.8211 17.5021C72.2257 15.4416 70.7153 14.0666 68.3696 14.0666C67.6796 14.0447 66.993 14.1696 66.3565 14.4326C65.7203 14.6957 65.149 15.0908 64.6823 15.5907C64.1914 16.1473 63.8285 16.7998 63.6166 17.5038ZM90.2473 10.2527C90.3864 10.2512 90.5 10.3636 90.5 10.5027V14.7013C90.5 14.8469 90.3762 14.9615 90.2311 14.9508C89.8258 14.9207 89.4427 14.8952 89.1916 14.8952C85.9204 14.8952 84 17.1975 84 20.2195V28.75C84 28.8881 83.8881 29 83.75 29H80C79.862 29 79.75 28.8881 79.75 28.75V10.7623C79.75 10.6242 79.862 10.5123 80 10.5123H83.75C83.8881 10.5123 84 10.6242 84 10.7623V13.287C84 13.3013 84.0116 13.3128 84.0258 13.3128C84.034 13.3128 84.0416 13.3089 84.0465 13.3024C85.5124 11.3448 87.676 10.2559 89.9617 10.2559L90.2473 10.2527Z" fill="#131316" style="fill:#131316;fill:color(display-p3 0.0745 0.0745 0.0863);fill-opacity:1;"/>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.4 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 240 240"><path fill="#F2F4F9" d="M240 224.762c0 8.25-6.75 15-15 15H15c-8.25 0-15-6.75-15-15v-90c0-8.25 4.77-19.769 10.61-25.609l98.78-98.78c5.83-5.83 15.38-5.83 21.21 0l98.79 98.789c5.83 5.83 10.61 17.36 10.61 25.61v90-.01Z"/><path fill="#18BCF2" d="m229.39 109.153-98.78-98.78c-5.83-5.83-15.38-5.83-21.21 0l-98.79 98.78C4.78 114.983 0 126.512 0 134.762v90c0 8.25 6.75 15 15 15h92.27l-40.63-40.63c-2.09.72-4.32 1.13-6.64 1.13-11.3 0-20.5-9.2-20.5-20.5s9.2-20.5 20.5-20.5 20.5 9.2 20.5 20.5c0 2.33-.41 4.56-1.13 6.65l31.63 31.63v-115.88c-6.8-3.34-11.5-10.32-11.5-18.39 0-11.3 9.2-20.5 20.5-20.5s20.5 9.2 20.5 20.5c0 8.07-4.7 15.05-11.5 18.39v81.27l31.46-31.46c-.62-1.96-.96-4.04-.96-6.2 0-11.3 9.2-20.5 20.5-20.5s20.5 9.2 20.5 20.5-9.2 20.5-20.5 20.5c-2.5 0-4.88-.47-7.09-1.29L129 208.892v30.88h96c8.25 0 15-6.75 15-15v-90c0-8.25-4.77-19.77-10.61-25.61v-.009Z"/></svg>

After

Width:  |  Height:  |  Size: 920 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2" viewBox="0 0 491 491"><path d="M407.48 111.18c-71.893-3.077-137.907 41.158-162.4 108.82-24.493-67.662-90.507-111.897-162.4-108.82-2.395 57.049 24.897 111.452 72.06 143.64 24.168 16.599 38.61 44.131 38.53 73.45v50.86H296.9v-50.86c-.084-29.317 14.355-56.85 38.52-73.45 47.176-32.176 74.472-86.587 72.06-143.64Z" style="fill:#ffff;fill-rule:nonzero"/></svg>

After

Width:  |  Height:  |  Size: 501 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2" viewBox="0 0 491 491"><path d="M407.48 111.18c-71.893-3.077-137.907 41.158-162.4 108.82-24.493-67.662-90.507-111.897-162.4-108.82-2.395 57.049 24.897 111.452 72.06 143.64 24.168 16.599 38.61 44.131 38.53 73.45v50.86H296.9v-50.86c-.084-29.317 14.355-56.85 38.52-73.45 47.176-32.176 74.472-86.587 72.06-143.64Z" style="fill:#121212;fill-rule:nonzero"/></svg>

After

Width:  |  Height:  |  Size: 503 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 128 23.498" width="128" height="23.498"><path fill="#d4d4d8" d="M5.101 13.831q0-1.607.536-2.731.562-1.151 1.874-2.223l.589-.482q.803-.616 1.205-.991.402-.402.643-.91.268-.509.268-1.205.027-1.526-1.098-2.464-1.125-.964-2.946-.964-1.794 0-2.919 1.205-1.097 1.178-1.285 3.16L.013 6.092q.134-1.767.964-3.133T3.119.817Q4.459.04 6.092.04q1.767 0 3.133.669 1.392.669 2.169 1.874.777 1.178.777 2.705 0 .91-.375 1.714-.348.777-1.044 1.5-.696.696-1.821 1.526l-.027.027q-1.044.777-1.5 1.66-.455.857-.455 2.115zm2.115 3.106v2.544H4.753v-2.544z"/><path fill="#000" d="m18.458 5.289.161 3.99-.455-.241q.321-2.115 1.553-3.079 1.259-.991 3.106-.991 2.303 0 3.562 1.473 1.285 1.446 1.285 3.91v9.13h-3.454v-8.033q0-1.259-.241-2.035-.241-.803-.777-1.205-.536-.428-1.419-.428-1.419 0-2.196.937t-.777 2.731v8.033h-3.481V5.289z"/><path fill="#d4d4d8" d="M44.796 7.967v1.687H32.05V7.967zm0 5.516v1.687H32.05v-1.687z"/><path fill="#000" d="m58.241 19.481-.107-3.91.428.241q-.321 2.062-1.553 3.026t-3.026.964q-2.276 0-3.535-1.473t-1.259-3.91v-9.13h3.481v8.007q0 1.285.214 2.089.241.777.75 1.205.536.402 1.419.402 1.366 0 2.115-.937.777-.937.777-2.758V5.289h3.481v14.192z"/><path fill="#d4d4d8" d="M68.462.469a4.03 4.03 0 0 1 2.196-.455 4.16 4.16 0 0 1 2.223.803q.991.696 1.446 1.821.456 1.098.161 2.383-.267 1.178-1.205 2.276-.91 1.071-2.41 2.035l4.767 6.052q.456-.643.696-1.687.268-1.044.241-2.142l1.928.187a9.4 9.4 0 0 1-.536 2.812q-.455 1.339-1.178 2.249l2.196 2.678h-2.223l-1.125-1.419q-.856.83-2.115 1.285a7.7 7.7 0 0 1-2.678.455q-1.873 0-3.321-.616-1.446-.643-2.276-1.821-.803-1.178-.803-2.838 0-1.633.803-2.838c.803-1.205 1.401-1.625 2.597-2.464q.242-.16.455-.295l-.268-.348q-.91-1.232-1.365-2.249-.428-1.044-.428-2.089 0-1.312.589-2.276.616-.991 1.633-1.5m4.445 17.272q.938-.375 1.5-1.044l-5.008-6.346q-1.472.964-2.276 1.955-.776.964-.776 2.223 0 1.098.562 1.901.589.803 1.606 1.232t2.33.428q1.125 0 2.062-.348M68.489 5.932q.429.857 1.312 2.008 1.446-.804 2.196-1.687.777-.91.777-1.848 0-1.098-.616-1.821t-1.607-.75q-1.07-.027-1.767.669t-.696 1.794q0 .75.402 1.633"/><path fill="#000" d="M94.447 5.289v18.209h-3.481v-6.989l.348.268q-.348.991-.991 1.66t-1.526 1.018q-.883.348-1.982.348-1.955 0-3.347-.991-1.365-.991-2.062-2.651-.669-1.687-.669-3.776c0-2.089.224-2.642.669-3.749q.697-1.687 2.062-2.678 1.394-.991 3.347-.991 1.661 0 2.812.777 1.179.75 1.714 2.196l-.295.321.107-2.972zm-3.588 9.399q.375-1.044.375-2.303c0-1.259-.125-1.607-.375-2.303q-.375-1.044-1.151-1.687t-1.928-.643q-1.687 0-2.571 1.339t-.884 3.294q0 1.982.884 3.321.884 1.312 2.571 1.312 1.152 0 1.928-.643.777-.643 1.151-1.687"/><path fill="#d4d4d8" d="M111.559 7.967v1.687H98.813V7.967zm0 5.516v1.687H98.813v-1.687z"/><path fill="#000" d="M124.308 9.814a2.54 2.54 0 0 0-1.018-1.633q-.83-.616-1.848-.616t-1.687.509q-.67.482-.643 1.312.026.803.803 1.232.776.429 2.035.669 2.089.348 3.374.857 1.285.482 1.955 1.339.696.857.696 2.196 0 1.366-.803 2.303-.803.91-2.169 1.366-1.366.455-3.079.455-1.928 0-3.428-.562-1.473-.589-2.33-1.66-.858-1.098-.964-2.597l3.508-.187q.134.75.536 1.285c.402.535.625.634 1.071.83q.67.268 1.553.268 1.017 0 1.767-.375.776-.401.777-1.205-.027-.562-.348-.91t-.803-.509q-.482-.188-1.312-.348-.215-.027-.562-.134-2.008-.402-3.24-.857-1.205-.482-1.928-1.285-.697-.83-.696-2.115 0-1.366.723-2.383.75-1.017 2.115-1.553 1.392-.562 3.267-.562 2.49 0 4.151 1.285 1.687 1.259 2.035 3.428z"/></svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="23.498" fill="none" viewBox="0 0 128 23.498"><path fill="#3f3f46" d="M5.101 13.831q0-1.607.536-2.731.562-1.151 1.874-2.223l.589-.482q.803-.616 1.205-.991.402-.402.643-.91.268-.509.268-1.205.027-1.526-1.098-2.464-1.125-.964-2.946-.964-1.794 0-2.919 1.205-1.097 1.178-1.285 3.16L.013 6.092q.134-1.767.964-3.133T3.119.817Q4.459.04 6.092.04q1.767 0 3.133.669 1.392.669 2.169 1.874.777 1.178.777 2.705 0 .91-.375 1.714-.348.777-1.044 1.5-.696.696-1.821 1.526l-.027.027q-1.044.777-1.5 1.66-.455.857-.455 2.115zm2.115 3.106v2.544H4.753v-2.544z"/><path fill="#fff" d="m18.458 5.289.161 3.99-.455-.241q.321-2.115 1.553-3.079 1.259-.991 3.106-.991 2.303 0 3.562 1.473 1.285 1.446 1.285 3.91v9.13h-3.454v-8.033q0-1.259-.241-2.035-.241-.803-.777-1.205-.536-.428-1.419-.428-1.419 0-2.196.937t-.777 2.731v8.033h-3.481V5.289z"/><path fill="#3f3f46" d="M44.796 7.967v1.687H32.05V7.967zm0 5.516v1.687H32.05v-1.687z"/><path fill="#fff" d="m58.241 19.481-.107-3.91.428.241q-.321 2.062-1.553 3.026t-3.026.964q-2.276 0-3.535-1.473t-1.259-3.91v-9.13h3.481v8.007q0 1.285.214 2.089.241.777.75 1.205.536.402 1.419.402 1.366 0 2.115-.937.777-.937.777-2.758V5.289h3.481v14.192z"/><path fill="#3f3f46" d="M68.462.469a4.03 4.03 0 0 1 2.196-.455 4.16 4.16 0 0 1 2.223.803q.991.696 1.446 1.821.456 1.098.161 2.383-.267 1.178-1.205 2.276-.91 1.071-2.41 2.035l4.767 6.052q.456-.643.696-1.687.268-1.044.241-2.142l1.928.187a9.4 9.4 0 0 1-.536 2.812q-.455 1.339-1.178 2.249l2.196 2.678h-2.223l-1.125-1.419q-.856.83-2.115 1.285a7.7 7.7 0 0 1-2.678.455q-1.873 0-3.321-.616-1.446-.643-2.276-1.821-.803-1.178-.803-2.838 0-1.633.803-2.838c.803-1.205 1.401-1.625 2.597-2.464q.242-.16.455-.295l-.268-.348q-.91-1.232-1.365-2.249-.428-1.044-.428-2.089 0-1.312.589-2.276.616-.991 1.633-1.5m4.445 17.272q.938-.375 1.5-1.044l-5.008-6.346q-1.472.964-2.276 1.955-.776.964-.776 2.223 0 1.098.562 1.901.589.803 1.606 1.232t2.33.428q1.125 0 2.062-.348M68.489 5.932q.429.857 1.312 2.008 1.446-.804 2.196-1.687.777-.91.777-1.848 0-1.098-.616-1.821t-1.607-.75q-1.07-.027-1.767.669t-.696 1.794q0 .75.402 1.633"/><path fill="#fff" d="M94.447 5.289v18.209h-3.481v-6.989l.348.268q-.348.991-.991 1.66t-1.526 1.018q-.883.348-1.982.348-1.955 0-3.347-.991-1.365-.991-2.062-2.651-.669-1.687-.669-3.776c0-2.089.224-2.642.669-3.749q.697-1.687 2.062-2.678 1.394-.991 3.347-.991 1.661 0 2.812.777 1.179.75 1.714 2.196l-.295.321.107-2.972zm-3.588 9.399q.375-1.044.375-2.303c0-1.259-.125-1.607-.375-2.303q-.375-1.044-1.151-1.687t-1.928-.643q-1.687 0-2.571 1.339t-.884 3.294q0 1.982.884 3.321.884 1.312 2.571 1.312 1.152 0 1.928-.643.777-.643 1.151-1.687"/><path fill="#3f3f46" d="M111.559 7.967v1.687H98.813V7.967zm0 5.516v1.687H98.813v-1.687z"/><path fill="#fff" d="M124.308 9.814a2.54 2.54 0 0 0-1.018-1.633q-.83-.616-1.848-.616t-1.687.509q-.67.482-.643 1.312.026.803.803 1.232.776.429 2.035.669 2.089.348 3.374.857 1.285.482 1.955 1.339.696.857.696 2.196 0 1.366-.803 2.303-.803.91-2.169 1.366-1.366.455-3.079.455-1.928 0-3.428-.562-1.473-.589-2.33-1.66-.858-1.098-.964-2.597l3.508-.187q.134.75.536 1.285c.402.535.625.634 1.071.83q.67.268 1.553.268 1.017 0 1.767-.375.776-.401.777-1.205-.027-.562-.348-.91t-.803-.509q-.482-.188-1.312-.348-.215-.027-.562-.134-2.008-.402-3.24-.857-1.205-.482-1.928-1.285-.697-.83-.696-2.115 0-1.366.723-2.383.75-1.017 2.115-1.553 1.392-.562 3.267-.562 2.49 0 4.151 1.285 1.687 1.259 2.035 3.428z"/></svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

1
static/library/nuqs.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" fill="none" viewBox="0 0 128 128"><path fill="#000" d="M64 0a64 64 0 0 1 64 64 64 64 0 0 1-64 64A64 64 0 0 1 0 64 64 64 0 0 1 64 0"/><path fill="#fff" d="m35.524 25.45.42 9.36-1.14-.42q.66-5.1 3.42-7.38t7.02-2.28q5.16 0 8.04 3.24 2.94 3.24 2.94 8.82v20.46h-9.06V39.79q0-2.76-.48-4.44-.42-1.68-1.5-2.52-1.08-.9-2.88-.9-2.88 0-4.38 1.98-1.44 1.98-1.44 5.88v17.46h-9.12v-31.8zm57.831 31.8-.36-9.18 1.14.42q-.66 4.98-3.42 7.26-2.76 2.22-6.9 2.22-5.1 0-7.98-3.24t-2.88-8.82V25.45h9.12v17.46q0 2.76.42 4.44t1.44 2.58q1.08.84 2.88.84 2.76 0 4.2-1.98 1.5-1.98 1.5-5.88V25.45h9.06v31.8zm-36.568 13.2v40.8h-9.12v-15.6l.78.48q-.78 2.22-2.22 3.78-1.44 1.5-3.42 2.28t-4.38.78q-4.32 0-7.44-2.16-3.06-2.22-4.62-5.94-1.5-3.78-1.5-8.52t1.5-8.46q1.56-3.78 4.62-5.94 3.12-2.22 7.44-2.22 3.72 0 6.3 1.74t3.78 5.04l-.66.54.24-6.6zm-9.3 20.82q.78-2.22.78-4.92 0-2.64-.78-4.8-.78-2.22-2.4-3.54-1.56-1.38-3.84-1.38-3.42 0-5.28 2.82-1.8 2.76-1.8 6.9 0 4.2 1.8 6.96 1.86 2.76 5.28 2.76 2.28 0 3.84-1.32 1.62-1.32 2.4-3.48m46.244-10.5q-.36-2.16-2.04-3.42-1.62-1.32-3.72-1.32t-3.42 1.02-1.26 2.7q.06 1.62 1.62 2.52 1.56.84 4.2 1.32 4.92.78 7.92 1.98 3 1.14 4.5 3.06 1.56 1.92 1.56 4.92 0 3.12-1.86 5.22-1.8 2.1-4.98 3.18-3.18 1.02-7.32 1.02-4.62 0-8.1-1.26-3.42-1.32-5.4-3.72-1.98-2.46-2.22-5.82l9.12-.48q.3 1.56 1.08 2.7.84 1.08 2.16 1.68 1.38.54 3.18.54 2.04 0 3.54-.78 1.5-.84 1.5-2.46-.06-1.08-.72-1.8-.6-.72-1.62-1.08-.96-.36-2.64-.72-.48-.06-1.2-.24-4.86-.96-7.74-2.04-2.82-1.14-4.38-2.94-1.56-1.86-1.56-4.74 0-3.12 1.68-5.4 1.74-2.28 4.98-3.48 3.24-1.26 7.74-1.26 6 0 9.84 2.88 3.84 2.82 4.68 7.86z"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" fill="none" viewBox="0 0 128 128"><path fill="#fff" d="M64 0a64 64 0 0 1 64 64 64 64 0 0 1-64 64A64 64 0 0 1 0 64 64 64 0 0 1 64 0"/><path fill="#000" d="m35.524 25.45.42 9.36-1.14-.42q.66-5.1 3.42-7.38t7.02-2.28q5.16 0 8.04 3.24 2.94 3.24 2.94 8.82v20.46h-9.06V39.79q0-2.76-.48-4.44-.42-1.68-1.5-2.52-1.08-.9-2.88-.9-2.88 0-4.38 1.98-1.44 1.98-1.44 5.88v17.46h-9.12v-31.8zm57.831 31.8-.36-9.18 1.14.42q-.66 4.98-3.42 7.26-2.76 2.22-6.9 2.22-5.1 0-7.98-3.24t-2.88-8.82V25.45h9.12v17.46q0 2.76.42 4.44t1.44 2.58q1.08.84 2.88.84 2.76 0 4.2-1.98 1.5-1.98 1.5-5.88V25.45h9.06v31.8zm-36.568 13.2v40.8h-9.12v-15.6l.78.48q-.78 2.22-2.22 3.78-1.44 1.5-3.42 2.28t-4.38.78q-4.32 0-7.44-2.16-3.06-2.22-4.62-5.94-1.5-3.78-1.5-8.52t1.5-8.46q1.56-3.78 4.62-5.94 3.12-2.22 7.44-2.22 3.72 0 6.3 1.74t3.78 5.04l-.66.54.24-6.6zm-9.3 20.82q.78-2.22.78-4.92 0-2.64-.78-4.8-.78-2.22-2.4-3.54-1.56-1.38-3.84-1.38-3.42 0-5.28 2.82-1.8 2.76-1.8 6.9 0 4.2 1.8 6.96 1.86 2.76 5.28 2.76 2.28 0 3.84-1.32 1.62-1.32 2.4-3.48m46.245-10.5q-.36-2.16-2.04-3.42-1.62-1.32-3.72-1.32t-3.42 1.02-1.26 2.7q.06 1.62 1.62 2.52 1.56.84 4.2 1.32 4.92.78 7.92 1.98 3 1.14 4.5 3.06 1.56 1.92 1.56 4.92 0 3.12-1.86 5.22-1.8 2.1-4.98 3.18-3.18 1.02-7.32 1.02-4.62 0-8.1-1.26-3.42-1.32-5.4-3.72-1.98-2.46-2.22-5.82l9.12-.48q.3 1.56 1.08 2.7.84 1.08 2.16 1.68 1.38.54 3.18.54 2.04 0 3.54-.78 1.5-.84 1.5-2.46-.06-1.08-.72-1.8-.6-.72-1.62-1.08-.96-.36-2.64-.72-.48-.06-1.2-.24-4.86-.96-7.74-2.04-2.82-1.14-4.38-2.94-1.56-1.86-1.56-4.74 0-3.12 1.68-5.4 1.74-2.28 4.98-3.48 3.24-1.26 7.74-1.26 6 0 9.84 2.88 3.84 2.82 4.68 7.86z"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="157" height="30" fill="none" viewBox="0 0 157 30"><g fill="#000"><path d="M10.891 17.206a1 1 0 0 1-1.788 0l-.882-1.763a1 1 0 0 1 0-.894l.882-1.763a1 1 0 0 1 1.788 0l.882 1.763a1 1 0 0 1 0 .894l-.882 1.763zm0 9.997a1 1 0 0 1-1.788 0L8.22 25.44a1 1 0 0 1 0-.894l.882-1.763a1 1 0 0 1 1.788 0l.882 1.763a1 1 0 0 1 0 .894l-.882 1.763z"/><path d="M0 23.408c0-.89 1.077-1.337 1.707-.707l4.583 4.583c.63.63.184 1.708-.707 1.708H1a1 1 0 0 1-1-1v-4.584zm0-4.828a1 1 0 0 0 .293.708l9.411 9.41a1 1 0 0 0 .707.294h5.17c.89 0 1.337-1.077.707-1.707l-14.58-14.58C1.077 12.074 0 12.52 0 13.41v5.17zm0-9.997a1 1 0 0 0 .293.707L19.7 28.7a1 1 0 0 0 .707.293h5.17c.89 0 1.337-1.078.707-1.708L1.707 2.707C1.077 2.077 0 2.523 0 3.414v5.17zm9.997 0a1 1 0 0 0 .293.707l17.994 17.995c.63.63 1.707.183 1.707-.708v-5.169a1 1 0 0 0-.293-.707L11.704 2.707c-.63-.63-1.707-.184-1.707.707v5.17zm11.704-5.876c-.63-.63-1.707-.184-1.707.707v5.17a1 1 0 0 0 .293.706l7.997 7.998c.63.63 1.707.183 1.707-.708v-5.169a1 1 0 0 0-.293-.707l-7.997-7.997zm20.824 20.824-9.413-9.413c-.63-.63-1.707-.184-1.707.707v13.167a1 1 0 0 0 1 1h14.58a1 1 0 0 0 1-1v-1.2c0-.552-.449-.993-.997-1.064a7.723 7.723 0 0 1-4.463-2.197zm-6.321 2.262a1.6 1.6 0 1 1 0-3.2 1.6 1.6 0 0 1 0 3.2z"/><path d="M0 27.992a1 1 0 0 0 1 1h4.583c.891 0 1.337-1.078.707-1.708l-4.583-4.583c-.63-.63-1.707-.184-1.707.707v4.584zm9.997-16.995-8.29-8.29C1.077 2.077 0 2.523 0 3.414v5.17a1 1 0 0 0 .293.706l9.704 9.705v-7.998zm-8.29 1.707c-.63-.63-1.707-.184-1.707.707v5.17a1 1 0 0 0 .293.706l9.704 9.705v-7.998l-8.29-8.29zm18.287-1.293a1 1 0 0 0-.293-.707l-7.997-7.997c-.63-.63-1.707-.184-1.707.707v5.17a1 1 0 0 0 .293.706l9.704 9.705V11.41zm-9.997 17.58h5.583c.891 0 1.337-1.077.707-1.707l-6.29-6.29v7.998zm0-17.994v7.583a1 1 0 0 0 .293.708l9.704 9.704v-7.584a1 1 0 0 0-.293-.707l-9.704-9.704zM59.65 25h4.108v-6.812h3.432c3.77 0 6.188-2.236 6.188-5.694 0-3.458-2.418-5.694-6.188-5.694h-7.54V25zm4.108-10.322V10.31h3.016c1.56 0 2.496.832 2.496 2.184 0 1.352-.936 2.184-2.496 2.184h-3.016zm17.051 10.53c4.005 0 6.917-2.86 6.917-6.76s-2.913-6.76-6.917-6.76c-4.055 0-6.915 2.86-6.915 6.76s2.86 6.76 6.915 6.76zm-3.12-6.76c0-2.08 1.249-3.51 3.12-3.51 1.847 0 3.095 1.43 3.095 3.51s-1.249 3.51-3.095 3.51c-1.871 0-3.12-1.43-3.12-3.51zm16.61 6.76c3.068 0 5.148-1.924 5.148-4.186 0-5.304-7.046-3.588-7.046-5.668 0-.572.598-.936 1.456-.936.884 0 1.95.546 2.288 1.742l3.068-1.274c-.598-1.898-2.808-3.198-5.486-3.198-2.886 0-4.68 1.716-4.68 3.77 0 4.966 6.942 3.588 6.942 5.642 0 .728-.676 1.222-1.69 1.222-1.456 0-2.47-1.014-2.782-2.236l-3.067 1.196c.675 1.976 2.651 3.926 5.85 3.926zm15.031-.338-.26-3.302c-.442.234-1.014.312-1.482.312-.936 0-1.56-.676-1.56-1.846v-4.966h3.172v-3.172h-3.172V8.1h-3.822v3.796h-2.08v3.172h2.08v5.46c0 3.172 2.158 4.68 4.992 4.68.78 0 1.508-.13 2.132-.338zM122.656 6.8v7.072h-7.228V6.8h-4.108V25h4.108v-7.618h7.228V25h4.134V6.8h-4.134zm13.252 18.408c4.004 0 6.916-2.86 6.916-6.76s-2.912-6.76-6.916-6.76c-4.056 0-6.916 2.86-6.916 6.76s2.86 6.76 6.916 6.76zm-3.12-6.76c0-2.08 1.248-3.51 3.12-3.51 1.846 0 3.094 1.43 3.094 3.51s-1.248 3.51-3.094 3.51c-1.872 0-3.12-1.43-3.12-3.51zm17.413 6.136c1.43 0 2.704-.494 3.38-1.352v1.248c0 1.456-1.17 2.47-2.964 2.47-1.274 0-2.392-.624-2.574-1.69l-3.484.546c.468 2.47 2.99 4.134 6.058 4.134 4.03 0 6.708-2.366 6.708-5.876V11.896h-3.77v1.118c-.702-.806-1.898-1.326-3.432-1.326-3.64 0-5.928 2.496-5.928 6.448 0 3.952 2.288 6.448 6.006 6.448zm-2.288-6.448c0-1.95 1.144-3.198 2.912-3.198 1.794 0 2.938 1.248 2.938 3.198s-1.144 3.198-2.938 3.198c-1.768 0-2.912-1.248-2.912-3.198z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h157v30H0z"/></clipPath></defs></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="157" height="30" fill="none" viewBox="0 0 157 30"><g fill="#fff"><path d="M10.891 17.206a1 1 0 0 1-1.788 0l-.882-1.763a1 1 0 0 1 0-.894l.882-1.763a1 1 0 0 1 1.788 0l.882 1.763a1 1 0 0 1 0 .894l-.882 1.763zm0 9.997a1 1 0 0 1-1.788 0L8.22 25.44a1 1 0 0 1 0-.894l.882-1.763a1 1 0 0 1 1.788 0l.882 1.763a1 1 0 0 1 0 .894l-.882 1.763z"/><path d="M0 23.408c0-.89 1.077-1.337 1.707-.707l4.583 4.583c.63.63.184 1.708-.707 1.708H1a1 1 0 0 1-1-1v-4.584zm0-4.828a1 1 0 0 0 .293.708l9.411 9.41a1 1 0 0 0 .707.294h5.17c.89 0 1.337-1.077.707-1.707l-14.58-14.58C1.077 12.074 0 12.52 0 13.41v5.17zm0-9.997a1 1 0 0 0 .293.707L19.7 28.7a1 1 0 0 0 .707.293h5.17c.89 0 1.337-1.078.707-1.708L1.707 2.707C1.077 2.077 0 2.523 0 3.414v5.17zm9.997 0a1 1 0 0 0 .293.707l17.994 17.995c.63.63 1.707.183 1.707-.708v-5.169a1 1 0 0 0-.293-.707L11.704 2.707c-.63-.63-1.707-.184-1.707.707v5.17zm11.704-5.876c-.63-.63-1.707-.184-1.707.707v5.17a1 1 0 0 0 .293.706l7.997 7.998c.63.63 1.707.183 1.707-.708v-5.169a1 1 0 0 0-.293-.707l-7.997-7.997zm20.824 20.824-9.413-9.413c-.63-.63-1.707-.184-1.707.707v13.167a1 1 0 0 0 1 1h14.58a1 1 0 0 0 1-1v-1.2c0-.552-.449-.993-.997-1.064a7.723 7.723 0 0 1-4.463-2.197zm-6.321 2.262a1.6 1.6 0 1 1 0-3.2 1.6 1.6 0 0 1 0 3.2z"/><path d="M0 27.992a1 1 0 0 0 1 1h4.583c.891 0 1.337-1.078.707-1.708l-4.583-4.583c-.63-.63-1.707-.184-1.707.707v4.584zm9.997-16.995-8.29-8.29C1.077 2.077 0 2.523 0 3.414v5.17a1 1 0 0 0 .293.706l9.704 9.705v-7.998zm-8.29 1.707c-.63-.63-1.707-.184-1.707.707v5.17a1 1 0 0 0 .293.706l9.704 9.705v-7.998l-8.29-8.29zm18.287-1.293a1 1 0 0 0-.293-.707l-7.997-7.997c-.63-.63-1.707-.184-1.707.707v5.17a1 1 0 0 0 .293.706l9.704 9.705V11.41zm-9.997 17.58h5.583c.891 0 1.337-1.077.707-1.707l-6.29-6.29v7.998zm0-17.994v7.583a1 1 0 0 0 .293.708l9.704 9.704v-7.584a1 1 0 0 0-.293-.707l-9.704-9.704zM59.65 25h4.108v-6.812h3.432c3.77 0 6.188-2.236 6.188-5.694 0-3.458-2.418-5.694-6.188-5.694h-7.54V25zm4.108-10.322V10.31h3.016c1.56 0 2.496.832 2.496 2.184 0 1.352-.936 2.184-2.496 2.184h-3.016zm17.051 10.53c4.005 0 6.917-2.86 6.917-6.76s-2.913-6.76-6.917-6.76c-4.055 0-6.915 2.86-6.915 6.76s2.86 6.76 6.915 6.76zm-3.12-6.76c0-2.08 1.249-3.51 3.12-3.51 1.847 0 3.095 1.43 3.095 3.51s-1.249 3.51-3.095 3.51c-1.871 0-3.12-1.43-3.12-3.51zm16.61 6.76c3.068 0 5.148-1.924 5.148-4.186 0-5.304-7.046-3.588-7.046-5.668 0-.572.598-.936 1.456-.936.884 0 1.95.546 2.288 1.742l3.068-1.274c-.598-1.898-2.808-3.198-5.486-3.198-2.886 0-4.68 1.716-4.68 3.77 0 4.966 6.942 3.588 6.942 5.642 0 .728-.676 1.222-1.69 1.222-1.456 0-2.47-1.014-2.782-2.236l-3.067 1.196c.675 1.976 2.651 3.926 5.85 3.926zm15.031-.338-.26-3.302c-.442.234-1.014.312-1.482.312-.936 0-1.56-.676-1.56-1.846v-4.966h3.172v-3.172h-3.172V8.1h-3.822v3.796h-2.08v3.172h2.08v5.46c0 3.172 2.158 4.68 4.992 4.68.78 0 1.508-.13 2.132-.338zM122.656 6.8v7.072h-7.228V6.8h-4.108V25h4.108v-7.618h7.228V25h4.134V6.8h-4.134zm13.252 18.408c4.004 0 6.916-2.86 6.916-6.76s-2.912-6.76-6.916-6.76c-4.056 0-6.916 2.86-6.916 6.76s2.86 6.76 6.916 6.76zm-3.12-6.76c0-2.08 1.248-3.51 3.12-3.51 1.846 0 3.094 1.43 3.094 3.51s-1.248 3.51-3.094 3.51c-1.872 0-3.12-1.43-3.12-3.51zm17.413 6.136c1.43 0 2.704-.494 3.38-1.352v1.248c0 1.456-1.17 2.47-2.964 2.47-1.274 0-2.392-.624-2.574-1.69l-3.484.546c.468 2.47 2.99 4.134 6.058 4.134 4.03 0 6.708-2.366 6.708-5.876V11.896h-3.77v1.118c-.702-.806-1.898-1.326-3.432-1.326-3.64 0-5.928 2.496-5.928 6.448 0 3.952 2.288 6.448 6.006 6.448zm-2.288-6.448c0-1.95 1.144-3.198 2.912-3.198 1.794 0 2.938 1.248 2.938 3.198s-1.144 3.198-2.938 3.198c-1.768 0-2.912-1.248-2.912-3.198z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h157v30H0z"/></clipPath></defs></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="30" fill="none" viewBox="0 0 50 30"><path fill="#1D4AFF" d="M10.891 17.206a1 1 0 0 1-1.788 0l-.882-1.763a1 1 0 0 1 0-.894l.882-1.763a1 1 0 0 1 1.788 0l.882 1.763a1 1 0 0 1 0 .894l-.882 1.763zm0 9.997a1 1 0 0 1-1.788 0L8.22 25.44a1 1 0 0 1 0-.894l.882-1.763a1 1 0 0 1 1.788 0l.882 1.763a1 1 0 0 1 0 .894l-.882 1.763z"/><path fill="#F9BD2B" d="M0 23.408c0-.89 1.077-1.337 1.707-.707l4.583 4.583c.63.63.184 1.708-.707 1.708H1a1 1 0 0 1-1-1v-4.584zm0-4.828a1 1 0 0 0 .293.708l9.411 9.41a1 1 0 0 0 .707.294h5.17c.89 0 1.337-1.077.707-1.707l-14.58-14.58C1.077 12.074 0 12.52 0 13.41v5.17zm0-9.997a1 1 0 0 0 .293.707L19.7 28.7a1 1 0 0 0 .707.293h5.17c.89 0 1.337-1.078.707-1.708L1.707 2.707C1.077 2.077 0 2.523 0 3.414v5.17zm9.997 0a1 1 0 0 0 .293.707l17.994 17.995c.63.63 1.707.183 1.707-.708v-5.169a1 1 0 0 0-.293-.707L11.704 2.707c-.63-.63-1.707-.184-1.707.707v5.17zm11.704-5.876c-.63-.63-1.707-.184-1.707.707v5.17a1 1 0 0 0 .293.706l7.997 7.998c.63.63 1.707.183 1.707-.708v-5.169a1 1 0 0 0-.293-.707l-7.997-7.997z"/><path fill="#000" d="m42.525 23.53-9.413-9.412c-.63-.63-1.707-.184-1.707.707v13.167a1 1 0 0 0 1 1h14.58a1 1 0 0 0 1-1v-1.2c0-.552-.449-.993-.997-1.064a7.723 7.723 0 0 1-4.463-2.197zm-6.321 2.263a1.6 1.6 0 1 1 0-3.2 1.6 1.6 0 0 1 0 3.2z"/><path fill="#1D4AFF" d="M0 27.992a1 1 0 0 0 1 1h4.583c.891 0 1.337-1.078.707-1.708l-4.583-4.583c-.63-.63-1.707-.184-1.707.707v4.584zm9.997-16.995-8.29-8.29C1.077 2.077 0 2.523 0 3.414v5.17a1 1 0 0 0 .293.706l9.704 9.705v-7.998zm-8.29 1.707c-.63-.63-1.707-.184-1.707.707v5.17a1 1 0 0 0 .293.706l9.704 9.705v-7.998l-8.29-8.29z"/><path fill="#F54E00" d="M19.994 11.411a1 1 0 0 0-.293-.707l-7.997-7.997c-.63-.63-1.707-.184-1.707.707v5.17a1 1 0 0 0 .293.706l9.704 9.705V11.41zm-9.997 17.58h5.583c.891 0 1.337-1.077.707-1.707l-6.29-6.29v7.998zm0-17.994v7.583a1 1 0 0 0 .293.708l9.704 9.704v-7.584a1 1 0 0 0-.293-.707l-9.704-9.704z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 75 33.51"><g data-name="Layer 2"><path d="M75 23.6a10.5 10.5 0 0 1-10.63 9.91H38.82a2.14 2.14 0 0 1-2.12-2.13V3.87a2.34 2.34 0 0 1 1.41-2.24S40.46 0 45.41 0A16.74 16.74 0 0 1 54 2.36a17 17 0 0 1 8 11.08 9.8 9.8 0 0 1 2.71-.37A10.23 10.23 0 0 1 75 23.6ZM33.51 5.61a.83.83 0 1 0-1.65 0c-.7 9.25-1.24 17.92 0 27.14a.83.83 0 0 0 1.65 0c1.33-9.3.77-17.81 0-27.14ZM28.35 8.81a.87.87 0 0 0-1.73 0 103.7 103.7 0 0 0 0 23.95.87.87 0 0 0 1.72 0 93.2 93.2 0 0 0 .01-23.95ZM23.16 8a.84.84 0 0 0-1.67 0c-.79 8.44-1.19 16.32 0 24.74a.83.83 0 0 0 1.66 0c1.23-8.53.85-16.19.01-24.74ZM18 10.41a.86.86 0 0 0-1.72 0 87.61 87.61 0 0 0 0 22.36.85.85 0 0 0 1.69 0A81.68 81.68 0 0 0 18 10.41ZM12.79 16a.85.85 0 0 0-1.7 0c-1.23 5.76-.65 11 .05 16.83a.81.81 0 0 0 1.6 0c.77-5.91 1.36-11.03.05-16.83ZM7.62 15.12a.88.88 0 0 0-1.75 0C4.78 21 5.14 26.18 5.9 32.05c.08.89 1.59.88 1.69 0 .84-5.96 1.23-10.99.03-16.93ZM2.4 18a.88.88 0 0 0-1.75 0c-1 3.95-.69 7.22.07 11.18a.82.82 0 0 0 1.63 0c.88-4.04 1.31-7.24.05-11.18Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 75 33.51"><g id="Layer_2" data-name="Layer 2"><g id="Orange" fill="#ffffff"><path d="M75,23.6a10.5,10.5,0,0,1-10.63,9.91H38.82a2.14,2.14,0,0,1-2.12-2.13V3.87a2.34,2.34,0,0,1,1.41-2.24S40.46,0,45.41,0A16.74,16.74,0,0,1,54,2.36a17,17,0,0,1,8,11.08,9.8,9.8,0,0,1,2.71-.37A10.23,10.23,0,0,1,75,23.6Z"/><path d="M33.51,5.61a.83.83,0,1,0-1.65,0c-.7,9.25-1.24,17.92,0,27.14a.83.83,0,0,0,1.65,0C34.84,23.45,34.28,14.94,33.51,5.61Z"/><path d="M28.35,8.81a.87.87,0,0,0-1.73,0,103.7,103.7,0,0,0,0,23.95.87.87,0,0,0,1.72,0A93.2,93.2,0,0,0,28.35,8.81Z"/><path d="M23.16,8a.84.84,0,0,0-1.67,0c-.79,8.44-1.19,16.32,0,24.74a.83.83,0,0,0,1.66,0C24.38,24.21,24,16.55,23.16,8Z"/><path d="M18,10.41a.86.86,0,0,0-1.72,0,87.61,87.61,0,0,0,0,22.36.85.85,0,0,0,1.69,0A81.68,81.68,0,0,0,18,10.41Z"/><path d="M12.79,16a.85.85,0,0,0-1.7,0c-1.23,5.76-.65,11,.05,16.83a.81.81,0,0,0,1.6,0C13.51,26.92,14.1,21.8,12.79,16Z"/><path d="M7.62,15.12a.88.88,0,0,0-1.75,0C4.78,21,5.14,26.18,5.9,32.05c.08.89,1.59.88,1.69,0C8.43,26.09,8.82,21.06,7.62,15.12Z"/><path d="M2.4,18A.88.88,0,0,0,.65,18c-1,3.95-.69,7.22.07,11.18a.82.82,0,0,0,1.63,0C3.23,25.14,3.66,21.94,2.4,18Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 168 20.03"><g data-name="Layer 2"><path d="M57.7 16a5 5 0 0 1-4.29-2.12L55 12.41a3.51 3.51 0 0 0 2.83 1.33c1.31 0 1.93-.38 1.93-1.26s-.38-1.08-2.47-1.58-3.46-1.18-3.46-3.48c0-2.12 1.77-3.41 4-3.41a5.16 5.16 0 0 1 4 1.83l-1.6 1.63a3.28 3.28 0 0 0-2.51-1.2c-1.18 0-1.58.53-1.58 1.05 0 .73.48 1 2.23 1.4s3.7 1.06 3.7 3.59C62.05 14.53 60.72 16 57.7 16ZM68.94 16c-2.89 0-4.86-2.24-4.86-6s2-6 4.89-6 4.85 2.23 4.85 6-2.01 6-4.88 6Zm0-9.71c-1.54 0-2.57 1.31-2.57 3.68s1.07 3.71 2.62 3.71 2.56-1.28 2.56-3.68-1.08-3.68-2.63-3.68ZM81 16c-2.66 0-4.46-1.9-4.46-5.3V4.19h2.21v6.51c0 1.86.85 3 2.25 3s2.28-1.14 2.28-3V4.19h2.21v6.51c.03 3.38-1.64 5.3-4.49 5.3ZM95.92 15.84l-4.06-6.36c-.27-.43-.63-1-.78-1.31v7.67h-2.14V4.19h2.11L95 10.35c.27.43.63 1 .77 1.31V4.19h2.18v11.65ZM104.68 15.84h-3.3V4.19h3.46c3.16 0 5.49 1.56 5.49 5.83 0 4.09-2.81 5.82-5.65 5.82Zm.08-9.39h-1.17v7.13h1.09c2.32 0 3.38-1.43 3.38-3.56 0-2.39-.96-3.57-3.3-3.57ZM119.93 7.59a2.1 2.1 0 0 0-2-1.27c-1.66 0-2.61 1.53-2.61 3.7s1 3.69 2.62 3.69a2.32 2.32 0 0 0 2.17-1.48L122 13.4a4.23 4.23 0 0 1-4.14 2.6C115 16 113 13.69 113 10s2-6 4.91-6a4.15 4.15 0 0 1 4 2.58ZM125.15 15.84V4.19h2.22v9.35h5.54v2.3ZM138.92 16c-2.89 0-4.86-2.24-4.86-6s2-6 4.89-6 4.85 2.23 4.85 6-2 6-4.88 6Zm0-9.71c-1.55 0-2.58 1.31-2.58 3.68s1.08 3.71 2.62 3.71 2.58-1.31 2.58-3.68-1.08-3.68-2.63-3.68ZM151 16c-2.67 0-4.47-1.9-4.47-5.3V4.19h2.21v6.51c0 1.86.85 3 2.26 3s2.27-1.14 2.27-3V4.19h2.21v6.51c.02 3.38-1.65 5.3-4.48 5.3ZM162.35 15.91h-3.3V4.26h3.45c3.16 0 5.5 1.56 5.5 5.82 0 4.1-2.81 5.83-5.65 5.83Zm.08-9.39h-1.17v7.13h1.09c2.32 0 3.38-1.44 3.38-3.57 0-2.38-.97-3.56-3.3-3.56ZM44.83 14.1a6.27 6.27 0 0 1-6.35 5.9H23.2a1.27 1.27 0 0 1-1.26-1.27V2.32A1.39 1.39 0 0 1 22.78 1a8.08 8.08 0 0 1 4.36-1 10.06 10.06 0 0 1 5.17 1.41A10.2 10.2 0 0 1 37.11 8a5.47 5.47 0 0 1 1.62-.23 6.1 6.1 0 0 1 6.1 6.33ZM20 3.35a.5.5 0 1 0-1 0 76.38 76.38 0 0 0 0 16.21.5.5 0 0 0 1 0c.82-5.56.49-10.63 0-16.21ZM17 5.27a.52.52 0 0 0-1 0 62.26 62.26 0 0 0 0 14.31.51.51 0 0 0 1 0 55.73 55.73 0 0 0 0-14.31ZM13.85 4.78a.5.5 0 0 0-1 0 62 62 0 0 0 0 14.79.5.5 0 0 0 1 0 59.51 59.51 0 0 0 0-14.79ZM10.77 6.22a.52.52 0 0 0-1 0 52.48 52.48 0 0 0 0 13.37.51.51 0 0 0 1 0 49.07 49.07 0 0 0 0-13.37ZM7.65 9.55a.51.51 0 0 0-1 0c-.74 3.44-.39 6.6 0 10.06a.48.48 0 0 0 1 0c.42-3.52.78-6.61 0-10.06ZM4.56 9a.53.53 0 0 0-1 0 31 31 0 0 0 0 10.12.51.51 0 0 0 1 0A28.21 28.21 0 0 0 4.56 9ZM1.44 10.74a.53.53 0 0 0-1 0 14.1 14.1 0 0 0 0 6.68.49.49 0 0 0 1 0 11.86 11.86 0 0 0 0-6.68Z"/></g></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 168 20.03"><g id="Layer_2" data-name="Layer 2"><g id="Orange" fill="#ffffff"><path d="M57.7,16a5,5,0,0,1-4.29-2.12L55,12.41a3.51,3.51,0,0,0,2.83,1.33c1.31,0,1.93-.38,1.93-1.26s-.38-1.08-2.47-1.58-3.46-1.18-3.46-3.48c0-2.12,1.77-3.41,4-3.41a5.16,5.16,0,0,1,4,1.83l-1.6,1.63a3.28,3.28,0,0,0-2.51-1.2c-1.18,0-1.58.53-1.58,1.05,0,.73.48,1,2.23,1.4s3.7,1.06,3.7,3.59C62.05,14.53,60.72,16,57.7,16Z"/><path d="M68.94,16c-2.89,0-4.86-2.24-4.86-6s2-6,4.89-6,4.85,2.23,4.85,6S71.81,16,68.94,16Zm0-9.71c-1.54,0-2.57,1.31-2.57,3.68s1.07,3.71,2.62,3.71S71.55,12.4,71.55,10,70.47,6.32,68.92,6.32Z"/><path d="M81,16c-2.66,0-4.46-1.9-4.46-5.3V4.19h2.21V10.7c0,1.86.85,3,2.25,3s2.28-1.14,2.28-3V4.19h2.21V10.7C85.52,14.08,83.85,16,81,16Z"/><path d="M95.92,15.84,91.86,9.48c-.27-.43-.63-1-.78-1.31,0,.43,0,1.9,0,2.54v5.13H88.94V4.19h2.11L95,10.35c.27.43.63,1,.77,1.31,0-.43,0-1.89,0-2.54V4.19h2.18V15.84Z"/><path d="M104.68,15.84h-3.3V4.19h3.46c3.16,0,5.49,1.56,5.49,5.83C110.33,14.11,107.52,15.84,104.68,15.84Zm.08-9.39h-1.17v7.13h1.09c2.32,0,3.38-1.43,3.38-3.56C108.06,7.63,107.1,6.45,104.76,6.45Z"/><path d="M119.93,7.59a2.1,2.1,0,0,0-2-1.27c-1.66,0-2.61,1.53-2.61,3.7s1,3.69,2.62,3.69a2.32,2.32,0,0,0,2.17-1.48L122,13.4A4.23,4.23,0,0,1,117.86,16C115,16,113,13.69,113,10s2-6,4.91-6a4.15,4.15,0,0,1,4,2.58Z"/><path d="M125.15,15.84V4.19h2.22v9.35h5.54v2.3Z"/><path d="M138.92,16c-2.89,0-4.86-2.24-4.86-6s2-6,4.89-6,4.85,2.23,4.85,6S141.8,16,138.92,16Zm0-9.71c-1.55,0-2.58,1.31-2.58,3.68s1.08,3.71,2.62,3.71,2.58-1.31,2.58-3.68S140.46,6.32,138.91,6.32Z"/><path d="M151,16c-2.67,0-4.47-1.9-4.47-5.3V4.19h2.21V10.7c0,1.86.85,3,2.26,3s2.27-1.14,2.27-3V4.19h2.21V10.7C155.5,14.08,153.83,16,151,16Z"/><path d="M162.35,15.91h-3.3V4.26h3.45c3.16,0,5.5,1.56,5.5,5.82C168,14.18,165.19,15.91,162.35,15.91Zm.08-9.39h-1.17v7.13h1.09c2.32,0,3.38-1.44,3.38-3.57C165.73,7.7,164.76,6.52,162.43,6.52Z"/><path d="M44.83,14.1A6.27,6.27,0,0,1,38.48,20H23.2a1.27,1.27,0,0,1-1.26-1.27V2.32A1.39,1.39,0,0,1,22.78,1a8.08,8.08,0,0,1,4.36-1,10.06,10.06,0,0,1,5.17,1.41A10.2,10.2,0,0,1,37.11,8a5.47,5.47,0,0,1,1.62-.23A6.1,6.1,0,0,1,44.83,14.1Z"/><path d="M20,3.35a.5.5,0,1,0-1,0,76.38,76.38,0,0,0,0,16.21.5.5,0,0,0,1,0C20.82,14,20.49,8.93,20,3.35Z"/><path d="M17,5.27a.52.52,0,0,0-1,0,62.26,62.26,0,0,0,0,14.31.51.51,0,0,0,1,0A55.73,55.73,0,0,0,17,5.27Z"/><path d="M13.85,4.78a.5.5,0,0,0-1,0,62,62,0,0,0,0,14.79.5.5,0,0,0,1,0A59.51,59.51,0,0,0,13.85,4.78Z"/><path d="M10.77,6.22a.52.52,0,0,0-1,0,52.48,52.48,0,0,0,0,13.37.51.51,0,0,0,1,0A49.07,49.07,0,0,0,10.77,6.22Z"/><path d="M7.65,9.55a.51.51,0,0,0-1,0c-.74,3.44-.39,6.6,0,10.06a.48.48,0,0,0,1,0C8.07,16.09,8.43,13,7.65,9.55Z"/><path d="M4.56,9a.53.53,0,0,0-1,0,31,31,0,0,0,0,10.12.51.51,0,0,0,1,0A28.21,28.21,0,0,0,4.56,9Z"/><path d="M1.44,10.74a.53.53,0,0,0-1,0,14.1,14.1,0,0,0,0,6.68.49.49,0,0,0,1,0A11.86,11.86,0,0,0,1.44,10.74Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 1491 970"><path fill="#fff" d="M350 340c-6-5-11-10-14-17-3-12-1-24 2-35 7-19 18-36 28-53 11-18 25-34 39-50 27-33 59-61 93-87 36-28 75-52 119-65 24-7 49-10 73-5 47 10 77 54 70 104-5 42-21 81-36 120l-53 127-1 1 2 1 51-16 13-3c19-5 38-5 53 11s15 36 10 56c-2 8-10 25-9 27l3-2c28-25 58-49 92-67l29-11c31-7 57 13 58 44 1 16-4 30-10 45-16 37-37 72-56 108l-12 25c-16 31-30 63-36 98l-4 26c-5 18-24 25-40 14-12-7-18-19-20-32-5-26-1-51 7-75 17-52 46-98 72-144l27-47c-15 5-27 14-38 24a863 863 0 0 0-178 233c-5 9-10 19-17 27-14 14-32 13-44-1-9-10-11-22-11-34 1-21 8-39 15-58 23-61 55-117 86-173l22-43c-30 6-59 12-87 22-5 2-7 6-9 10l-22 44c-38 77-76 153-117 228-2 5-2 8 2 12l32 31c68 64 147 94 241 89 69-5 135-19 201-38 71-20 139-49 205-81 7-4 9-7 3-13-10-10-14-22-15-35-1-19 2-38 7-56l7-23c-19 15-35 30-52 45-21 18-43 35-70 43-36 11-70-5-83-41-11-26-9-53-3-80l6-17c36-81 95-141 170-189l-46-16c-34-15-65-32-87-64-3-4-6-3-10-1-10 4-21 9-33 11l-14 1c-12 0-20-6-23-17-3-10 1-20 12-26l40-19c4-2 7-4 7-10-1-43 14-82 37-117 27-43 64-77 112-97 21-8 42-11 64-6 37 10 57 43 47 80-5 20-16 38-29 53-39 47-88 80-139 110-5 4-11 6-16 9-15 10-13 8-2 20 16 16 36 25 57 33 32 12 66 19 101 25l29 1c53 5 80 40 72 92-5 36-19 69-34 102-16 33-34 65-48 99-8 20-13 40-11 62 0 7 2 8 8 4 62-37 122-76 167-133 14-18 26-37 30-60 5-27-4-47-28-61-7-4-15-7-20-13-7-7-10-15-6-24 5-9 13-12 22-11 8 0 15 3 22 6 50 27 69 78 52 136-11 39-36 68-62 97-31 34-68 60-105 86l-3 3a1216 1216 0 0 1-413 168l-5 1c-7-1-13 3-20 4-32 5-65 8-98 10-105 6-196-27-274-97l-29-28c-6-6-9-5-13 1-28 40-60 76-93 110-33 33-69 59-113 74-15 5-31 6-46 7-14 1-28-1-41-4-9-3-18-9-26-15-27-18-38-45-43-76-7-36 1-71 15-104 6-15 12-30 20-43a915 915 0 0 1 142-168c3-2 6-4 2-8-26-29-51-60-86-80-22-12-45-20-70-21l-12-1c-13-2-21-10-22-21-1-10 5-20 16-25 16-6 32-5 48-3a774 774 0 0 1 53 16 433 433 0 0 1 57 41l5 5 7 6 25 26 9 8 9 12c3 5 5 2 7-1l8-8c4-1 7-4 9-7l28-24 86-69c68-54 132-111 189-177 25-30 47-63 55-103 6-32-6-46-39-44l-15 2c-24 5-45 16-66 29a522 522 0 0 0-190 210c-9 20-20 24-40 18Zm258 6c-5-3-7 2-9 4l-64 59c-1 2-4 3-4 6l38-6c7-1 12-5 14-11 8-18 16-36 25-52ZM204 912l16-2c36-7 64-28 90-51 43-40 79-86 110-136 3-4 2-6-1-10l-90-104c-4-5-7-5-11-1l-49 53c-35 40-67 82-90 130-12 27-21 55-16 85 3 24 16 36 41 36Zm828-288c0 22 4 25 21 18 18-8 33-21 47-34 41-38 79-80 116-121 21-24 42-46 58-73 11-18 4-30-18-30l-8 1c-19 2-36 10-52 20-58 38-105 87-138 148-13 23-24 47-26 71ZM553 461c-22 5-42 9-60 16-50 18-88 53-127 86-4 3-3 4 0 7l80 94c3 4 6 8 10 0l53-111 44-92Zm500-257c44-26 83-53 119-85 13-11 24-22 33-36 4-8 11-17 4-26-6-8-17-5-26-3a198 198 0 0 0-130 150Z"/><path fill="url(#a)" d="M1326 116c42 2 79 15 103 52 27 43 14 106-28 135-7 5-15 9-23 10-10 2-18-1-25-10-6-8-6-17-3-26 3-7 9-12 14-17 8-8 17-16 22-26 11-20 8-38-10-51a97 97 0 0 0-55-18l-20-1c-11-2-19-11-20-20-1-11 5-20 16-24l11-2c6-2 12-2 18-2Z"/><ellipse cx="29.1" cy="426.8" fill="url(#b)" rx="28.6" ry="27.8"/><defs><linearGradient id="a" x1="1281.2" x2="1481.8" y1="115.6" y2="168" gradientUnits="userSpaceOnUse"><stop stop-color="#FFC16F"/><stop offset="1" stop-color="#FA86CE"/></linearGradient><linearGradient id="b" x1="29.1" x2="29.1" y1="399" y2="454.5" gradientUnits="userSpaceOnUse"><stop stop-color="#2E58FF"/><stop offset="1" stop-color="#9452FF"/></linearGradient></defs></svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 1491 970"><path fill="#000" d="M350 340c-6-5-11-10-14-17-3-12-1-24 2-35 7-19 18-36 28-53 11-18 25-34 39-50 27-33 59-61 93-87 36-28 75-52 119-65 24-7 49-10 73-5 47 10 77 54 70 104-5 42-21 81-36 120l-53 127-1 1 2 1 51-16 13-3c19-5 38-5 53 11s15 36 10 56c-2 8-10 25-9 27l3-2c28-25 58-49 92-67l29-11c31-7 57 13 58 44 1 16-4 30-10 45-16 37-37 72-56 108l-12 25c-16 31-30 63-36 98l-4 26c-5 18-24 25-40 14-12-7-18-19-20-32-5-26-1-51 7-75 17-52 46-98 72-144l27-47c-15 5-27 14-38 24a863 863 0 0 0-178 233c-5 9-10 19-17 27-14 14-32 13-44-1-9-10-11-22-11-34 1-21 8-39 15-58 23-61 55-117 86-173l22-43c-30 6-59 12-87 22-5 2-7 6-9 10l-22 44c-38 77-76 153-117 228-2 5-2 8 2 12l32 31c68 64 147 94 241 89 69-5 135-19 201-38 71-20 139-49 205-81 7-4 9-7 3-13-10-10-14-22-15-35-1-19 2-38 7-56l7-23c-19 15-35 30-52 45-21 18-43 35-70 43-36 11-70-5-83-41-11-26-9-53-3-80l6-17c36-81 95-141 170-189l-46-16c-34-15-65-32-87-64-3-4-6-3-10-1-10 4-21 9-33 11l-14 1c-12 0-20-6-23-17-3-10 1-20 12-26l40-19c4-2 7-4 7-10-1-43 14-82 37-117 27-43 64-77 112-97 21-8 42-11 64-6 37 10 57 43 47 80-5 20-16 38-29 53-39 47-88 80-139 110-5 4-11 6-16 9-15 10-13 8-2 20 16 16 36 25 57 33 32 12 66 19 101 25l29 1c53 5 80 40 72 92-5 36-19 69-34 102-16 33-34 65-48 99-8 20-13 40-11 62 0 7 2 8 8 4 62-37 122-76 167-133 14-18 26-37 30-60 5-27-4-47-28-61-7-4-15-7-20-13-7-7-10-15-6-24 5-9 13-12 22-11 8 0 15 3 22 6 50 27 69 78 52 136-11 39-36 68-62 97-31 34-68 60-105 86l-3 3a1216 1216 0 0 1-413 168l-5 1c-7-1-13 3-20 4-32 5-65 8-98 10-105 6-196-27-274-97l-29-28c-6-6-9-5-13 1-28 40-60 76-93 110-33 33-69 59-113 74-15 5-31 6-46 7-14 1-28-1-41-4-9-3-18-9-26-15-27-18-38-45-43-76-7-36 1-71 15-104 6-15 12-30 20-43a915 915 0 0 1 142-168c3-2 6-4 2-8-26-29-51-60-86-80-22-12-45-20-70-21l-12-1c-13-2-21-10-22-21-1-10 5-20 16-25 16-6 32-5 48-3a774 774 0 0 1 53 16 433 433 0 0 1 57 41l5 5 7 6 25 26 9 8 9 12c3 5 5 2 7-1l8-8c4-1 7-4 9-7l28-24 86-69c68-54 132-111 189-177 25-30 47-63 55-103 6-32-6-46-39-44l-15 2c-24 5-45 16-66 29a522 522 0 0 0-190 210c-9 20-20 24-40 18Zm258 6c-5-3-7 2-9 4l-64 59c-1 2-4 3-4 6l38-6c7-1 12-5 14-11 8-18 16-36 25-52ZM204 912l16-2c36-7 64-28 90-51 43-40 79-86 110-136 3-4 2-6-1-10l-90-104c-4-5-7-5-11-1l-49 53c-35 40-67 82-90 130-12 27-21 55-16 85 3 24 16 36 41 36Zm828-288c0 22 4 25 21 18 18-8 33-21 47-34 41-38 79-80 116-121 21-24 42-46 58-73 11-18 4-30-18-30l-8 1c-19 2-36 10-52 20-58 38-105 87-138 148-13 23-24 47-26 71ZM553 461c-22 5-42 9-60 16-50 18-88 53-127 86-4 3-3 4 0 7l80 94c3 4 6 8 10 0l53-111 44-92Zm500-257c44-26 83-53 119-85 13-11 24-22 33-36 4-8 11-17 4-26-6-8-17-5-26-3a198 198 0 0 0-130 150Z"/><path fill="url(#a)" d="M1326 116c42 2 79 15 103 52 27 43 14 106-28 135-7 5-15 9-23 10-10 2-18-1-25-10-6-8-6-17-3-26 3-7 9-12 14-17 8-8 17-16 22-26 11-20 8-38-10-51a97 97 0 0 0-55-18l-20-1c-11-2-19-11-20-20-1-11 5-20 16-24l11-2c6-2 12-2 18-2Z"/><ellipse cx="29.1" cy="426.8" fill="url(#b)" rx="28.6" ry="27.8"/><defs><linearGradient id="a" x1="1281.2" x2="1481.8" y1="115.6" y2="168" gradientUnits="userSpaceOnUse"><stop stop-color="#FFC16F"/><stop offset="1" stop-color="#FA86CE"/></linearGradient><linearGradient id="b" x1="29.1" x2="29.1" y1="399" y2="454.5" gradientUnits="userSpaceOnUse"><stop stop-color="#2E58FF"/><stop offset="1" stop-color="#9452FF"/></linearGradient></defs></svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 13 KiB