Merge branch 'main' into logo/motion
@@ -0,0 +1,16 @@
|
||||
## 📝 About your SVG:
|
||||
|
||||
- **Title**:
|
||||
- **Category**:
|
||||
- **Website URL**:
|
||||
- **Description**:
|
||||
|
||||
## 📷 Screenshots:
|
||||
|
||||
✨ Add screenshots of the logo.
|
||||
|
||||
## ✅ Checklist
|
||||
|
||||
- [ ] I have permission to use this logo.
|
||||
- [ ] The ``.svg`` file is optimized for web use.
|
||||
- [ ] The ``.svg`` size is less than **20kb**.
|
||||
@@ -10,7 +10,7 @@
|
||||
Discover
|
||||
</a>
|
||||
<span> ✦ </span>
|
||||
<a href="https://github.com/pheralb/svgl/issues/new?assignees=pheralb&labels=request&projects=&template=request-svg-.md&title=%5BRequest%5D%3A">
|
||||
<a href="https://github.com/pheralb/svgl/issues/new?assignees=&labels=request&projects=&template=request-svg.yml&title=%5B%F0%9F%94%94+Request+SVG%5D%3A+">
|
||||
Request logo
|
||||
</a>
|
||||
<span> ✦ </span>
|
||||
@@ -138,6 +138,19 @@ pnpm install
|
||||
}
|
||||
```
|
||||
|
||||
- **Add brand guidelines**:
|
||||
|
||||
```json
|
||||
{
|
||||
"title": "Title",
|
||||
"category": "Category",
|
||||
"route": "/library/your_logo.svg",
|
||||
"wordmark": "/library/your_logo_wordmark.svg",
|
||||
"brandUrl": "https://assets.website.com/brand-guidelines",
|
||||
"url": "Website"
|
||||
}
|
||||
```
|
||||
|
||||
> [!NOTE]
|
||||
>
|
||||
> - The list of categories is here: [`src/types/categories.ts`](https://github.com/pheralb/svgl/blob/main/src/types/categories.ts). You can add a new category if you need it.
|
||||
|
||||
@@ -72,3 +72,12 @@
|
||||
src: url('/fonts/GeistMonoVariableVF.woff2') format('woff2');
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
html.dark .shiki,
|
||||
html.dark .shiki span {
|
||||
color: var(--shiki-dark) !important;
|
||||
background-color: transparent !important;
|
||||
font-style: var(--shiki-dark-font-style) !important;
|
||||
font-weight: var(--shiki-dark-font-weight) !important;
|
||||
text-decoration: var(--shiki-dark-text-decoration) !important;
|
||||
}
|
||||
|
||||
@@ -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,27 @@
|
||||
</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>
|
||||
<div
|
||||
class="mt-1 flex w-full items-center text-center text-[12px] text-neutral-600 dark:text-neutral-400"
|
||||
>
|
||||
<p>
|
||||
Remember to request permission from the creators for the use of the SVG. Modification is not
|
||||
allowed.
|
||||
</p>
|
||||
</div>
|
||||
</Popover.Content>
|
||||
</Popover.Root>
|
||||
|
||||
@@ -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
|
||||
>
|
||||
@@ -13,7 +13,8 @@
|
||||
Sparkles,
|
||||
EllipsisIcon,
|
||||
TagIcon,
|
||||
XIcon
|
||||
XIcon,
|
||||
PaletteIcon
|
||||
} from 'lucide-svelte';
|
||||
|
||||
// Components & styles:
|
||||
@@ -57,8 +58,10 @@
|
||||
let maxVisibleCategories = 1;
|
||||
let moreTagsOptions = false;
|
||||
|
||||
// Global Images Styles:
|
||||
// Global Styles:
|
||||
const globalImageStyles = 'mb-4 mt-2 h-10 select-none pointer-events-none';
|
||||
const btnStyles =
|
||||
'flex items-center space-x-2 rounded-md p-2 duration-100 hover:bg-neutral-200 dark:hover:bg-neutral-700/40';
|
||||
</script>
|
||||
|
||||
<div
|
||||
@@ -175,7 +178,7 @@
|
||||
: svgInfo.route
|
||||
);
|
||||
}}
|
||||
class="flex items-center space-x-2 rounded-md p-2 duration-100 hover:bg-neutral-200 dark:hover:bg-neutral-700/40"
|
||||
class={btnStyles}
|
||||
>
|
||||
<ChevronsRight size={iconSize} strokeWidth={iconStroke} />
|
||||
</button>
|
||||
@@ -200,7 +203,7 @@
|
||||
title="Website"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
class="flex items-center space-x-2 rounded-md p-2 duration-100 hover:bg-neutral-200 dark:hover:bg-neutral-700/40"
|
||||
class={btnStyles}
|
||||
>
|
||||
<LinkIcon size={iconSize} strokeWidth={iconStroke} />
|
||||
</a>
|
||||
@@ -210,7 +213,7 @@
|
||||
on:click={() => {
|
||||
wordmarkSvg = !wordmarkSvg;
|
||||
}}
|
||||
class="flex items-center space-x-2 rounded-md p-2 duration-100 hover:bg-neutral-200 dark:hover:bg-neutral-700/40"
|
||||
class={btnStyles}
|
||||
>
|
||||
{#if wordmarkSvg}
|
||||
<Sparkles size={iconSize} strokeWidth={iconStroke} />
|
||||
@@ -219,5 +222,16 @@
|
||||
{/if}
|
||||
</button>
|
||||
{/if}
|
||||
{#if svgInfo.brandUrl !== undefined}
|
||||
<a
|
||||
href={svgInfo.brandUrl}
|
||||
title="Brand Assets"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
class={btnStyles}
|
||||
>
|
||||
<PaletteIcon size={iconSize} strokeWidth={iconStroke} />
|
||||
</a>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5,28 +5,28 @@
|
||||
import { cn } from '@/utils/cn';
|
||||
|
||||
let warning = false;
|
||||
let warningName = 'svgl_warning_message';
|
||||
let warningName = 'svgl_warn_message';
|
||||
const initialValue = browser ? window.localStorage.getItem(warningName) : true;
|
||||
</script>
|
||||
|
||||
{#if !warning && !initialValue}
|
||||
<div
|
||||
class="flex items-center w-full justify-between md:flex-row flex-col md:space-x-2 space-x-0 space-y-2 md:space-y-0 py-2 px-3 bg-neutral-100/60 dark:bg-neutral-800/40 text-neutral-700 dark:text-neutral-300 border-b border-neutral-200 dark:border-neutral-800"
|
||||
class="flex w-full flex-col items-center justify-between space-x-0 space-y-2 border-b border-neutral-200 bg-neutral-100/60 px-3 py-2 text-neutral-700 dark:border-neutral-800 dark:bg-neutral-800/40 dark:text-neutral-300 md:flex-row md:space-x-2 md:space-y-0"
|
||||
>
|
||||
<div class="flex items-center space-x-2">
|
||||
<AlertTriangleIcon
|
||||
size={18}
|
||||
strokeWidth={2}
|
||||
class="mr-1 flex-shrink-0 text-yellow-600 dark:text-yellow-500 animate-pulse"
|
||||
class="mr-1 flex-shrink-0 animate-pulse text-yellow-600 dark:text-yellow-500"
|
||||
/>
|
||||
<p>
|
||||
All SVGs include links to the respective products or companies that own them. <strong
|
||||
>Please contact the owner directly if you intend to use their logo.</strong
|
||||
>Please contact the owner directly if you need to use their logo.</strong
|
||||
>
|
||||
If you are the owner of an SVG and prefer it not to be displayed here,
|
||||
If you are the owner of an SVG and would like it removed,
|
||||
<a
|
||||
target="_blank"
|
||||
class="underline underline-offset-4 decoration-dotted decoration-neutral-500"
|
||||
class="underline decoration-neutral-500 decoration-dotted underline-offset-4"
|
||||
href="https://github.com/pheralb/svgl/issues/new">create an issue</a
|
||||
> on GitHub.
|
||||
</p>
|
||||
|
||||
@@ -1,6 +1,13 @@
|
||||
import type { iSVG } from '../types/svg';
|
||||
|
||||
export const svgs: iSVG[] = [
|
||||
{
|
||||
title: 'PayPal',
|
||||
category: 'Payment',
|
||||
route: '/library/paypal.svg',
|
||||
wordmark: '/library/paypal-wordmark.svg',
|
||||
url: 'https://paypal.com'
|
||||
},
|
||||
{
|
||||
title: 'Google Drive',
|
||||
category: 'Google',
|
||||
@@ -214,7 +221,7 @@ export const svgs: iSVG[] = [
|
||||
},
|
||||
{
|
||||
title: 'JWT',
|
||||
category: 'Library',
|
||||
category: ['Library', 'Authentication'],
|
||||
route: '/library/jwt.svg',
|
||||
url: 'https://jwt.io/'
|
||||
},
|
||||
@@ -239,7 +246,7 @@ export const svgs: iSVG[] = [
|
||||
},
|
||||
{
|
||||
title: 'WorkOS',
|
||||
category: 'Software',
|
||||
category: ['Software', 'Authentication'],
|
||||
route: {
|
||||
light: '/library/workos.svg',
|
||||
dark: '/library/workos-light.svg'
|
||||
@@ -575,7 +582,7 @@ export const svgs: iSVG[] = [
|
||||
},
|
||||
{
|
||||
title: 'Twilio',
|
||||
category: 'Software',
|
||||
category: ['Software', 'Authentication'],
|
||||
route: '/library/twilio.svg',
|
||||
url: 'https://twilio.com'
|
||||
},
|
||||
@@ -615,7 +622,7 @@ export const svgs: iSVG[] = [
|
||||
},
|
||||
{
|
||||
title: 'Authy',
|
||||
category: 'Software',
|
||||
category: ['Software', 'Authentication'],
|
||||
route: '/library/authy.svg',
|
||||
url: 'https://authy.com/'
|
||||
},
|
||||
@@ -736,7 +743,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 +820,7 @@ export const svgs: iSVG[] = [
|
||||
},
|
||||
{
|
||||
title: 'Auth0',
|
||||
category: 'Library',
|
||||
category: ['Library', 'Authentication'],
|
||||
route: '/library/auth0.svg',
|
||||
url: 'https://auth0.com/'
|
||||
},
|
||||
@@ -1070,11 +1080,17 @@ export const svgs: iSVG[] = [
|
||||
url: 'https://es.wikipedia.org/wiki/HTML5'
|
||||
},
|
||||
{
|
||||
title: 'CSS',
|
||||
title: 'CSS (New)',
|
||||
category: 'Language',
|
||||
route: '/library/css.svg',
|
||||
url: 'https://es.wikipedia.org/wiki/CSS'
|
||||
},
|
||||
{
|
||||
title: 'CSS',
|
||||
category: 'Language',
|
||||
route: '/library/css_old.svg',
|
||||
url: 'https://es.wikipedia.org/wiki/CSS'
|
||||
},
|
||||
{
|
||||
title: 'midudev',
|
||||
category: 'Community',
|
||||
@@ -1399,6 +1415,13 @@ export const svgs: iSVG[] = [
|
||||
route: '/library/webkit.svg',
|
||||
url: 'https://webkit.org/'
|
||||
},
|
||||
{
|
||||
title: 'DuckDuckGo',
|
||||
category: ['Software', 'Browser'],
|
||||
route: '/library/duckduckgo.svg',
|
||||
wordmark: '/library/duckduckgo-wordmark.svg',
|
||||
url: 'https://duckduckgo.com/'
|
||||
},
|
||||
{
|
||||
title: 'Gemini',
|
||||
category: ['Google', 'AI'],
|
||||
@@ -2644,6 +2667,7 @@ export const svgs: iSVG[] = [
|
||||
light: '/library/vercel_wordmark.svg',
|
||||
dark: '/library/vercel_wordmark_dark.svg'
|
||||
},
|
||||
brandUrl: 'https://vercel.com/geist/brands',
|
||||
url: 'https://vercel.com/'
|
||||
},
|
||||
{
|
||||
@@ -3049,6 +3073,147 @@ export const svgs: iSVG[] = [
|
||||
},
|
||||
url: 'https://polar.sh/'
|
||||
},
|
||||
{
|
||||
title: 'bolt',
|
||||
category: 'Devtool',
|
||||
route: {
|
||||
light: '/library/bolt-new.svg',
|
||||
dark: '/library/bolt-new_dark.svg'
|
||||
},
|
||||
url: 'https://bolt.new/'
|
||||
},
|
||||
{
|
||||
title: 'JSON',
|
||||
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: 'Music',
|
||||
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/'
|
||||
},
|
||||
{
|
||||
title: 'Lottielab',
|
||||
category: 'Design',
|
||||
route: '/library/lottielab.svg',
|
||||
url: 'https://www.lottielab.com/'
|
||||
},
|
||||
{
|
||||
title: 'TanStack',
|
||||
category: ['Software', 'Library'],
|
||||
route: '/library/tanstack.svg',
|
||||
url: 'https://tanstack.com/'
|
||||
},
|
||||
{
|
||||
title: 'TypeGPU',
|
||||
category: ['Software', 'Library'],
|
||||
route: {
|
||||
light: '/library/typegpu-light.svg',
|
||||
dark: '/library/typegpu-dark.svg'
|
||||
},
|
||||
wordmark: {
|
||||
light: '/library/typegpu-wordmark-light.svg',
|
||||
dark: '/library/typegpu-wordmark-dark.svg'
|
||||
},
|
||||
url: 'https://typegpu.com'
|
||||
},
|
||||
{
|
||||
title: 'dotenv',
|
||||
category: ['Config', 'Library', 'Devtool'],
|
||||
route: '/library/dotenv.svg',
|
||||
url: 'https://github.com/motdotla/dotenv'
|
||||
},
|
||||
{
|
||||
title: 'dotenvx',
|
||||
category: ['Secrets', 'Config', 'Devtool'],
|
||||
route: '/library/dotenvx.svg',
|
||||
url: 'https://dotenvx.com'
|
||||
},
|
||||
{
|
||||
title: 'Apache Kafka',
|
||||
category: 'Software',
|
||||
route: '/library/apache-kafka.svg',
|
||||
wordmark: '/library/apache-kafka-wordmark.svg',
|
||||
url: 'https://kafka.apache.org'
|
||||
},
|
||||
{
|
||||
title: 'Motion',
|
||||
category: 'Library',
|
||||
|
||||
@@ -39,17 +39,18 @@ export interface Category {
|
||||
- For SVGs:
|
||||
|
||||
```ts
|
||||
type ThemeOptions = {
|
||||
light: string;
|
||||
export type ThemeOptions = {
|
||||
dark: string;
|
||||
light: string;
|
||||
};
|
||||
|
||||
export interface iSVG {
|
||||
id: number;
|
||||
id?: number;
|
||||
title: string;
|
||||
category: string | string[];
|
||||
category: tCategory | tCategory[];
|
||||
route: string | ThemeOptions;
|
||||
wordmark?: string | ThemeOptions;
|
||||
brandUrl?: string;
|
||||
url: string;
|
||||
}
|
||||
```
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
'prose dark:prose-invert',
|
||||
'mx-auto max-w-3xl px-4 py-10',
|
||||
'prose-h2:font-medium prose-h2:tracking-tight prose-h2:underline prose-h2:decoration-neutral-300 prose-h2:underline-offset-[6px] prose-h2:transition-opacity hover:prose-h2:opacity-70 dark:prose-h2:decoration-neutral-700/65',
|
||||
'prose-pre:m-0 prose-pre:border-neutral-200 dark:prose-pre:border dark:prose-pre:border-neutral-800/65'
|
||||
'prose-pre:m-0 prose-pre:border prose-pre:border-neutral-200 dark:prose-pre:border dark:prose-pre:border-neutral-800/65'
|
||||
)}
|
||||
>
|
||||
<svelte:component this={data.content} />
|
||||
|
||||
@@ -25,4 +25,9 @@ export type tCategory =
|
||||
| 'Vercel'
|
||||
| 'Google'
|
||||
| 'Payment'
|
||||
| 'void(0)';
|
||||
| 'void(0)'
|
||||
| 'Authentication'
|
||||
| 'IoT'
|
||||
| 'Home Automation'
|
||||
| 'Config'
|
||||
| 'Secrets';
|
||||
|
||||
@@ -11,5 +11,6 @@ export interface iSVG {
|
||||
category: tCategory | tCategory[];
|
||||
route: string | ThemeOptions;
|
||||
wordmark?: string | ThemeOptions;
|
||||
brandUrl?: string;
|
||||
url: string;
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
{sideOffset}
|
||||
{...$$restProps}
|
||||
class={cn(
|
||||
'z-50 w-auto rounded-md border border-neutral-200 bg-white p-3 shadow-md outline-none dark:border-neutral-800 dark:bg-neutral-900',
|
||||
'z-50 w-auto max-w-96 rounded-md border border-neutral-200 bg-white p-3 shadow-md outline-none dark:border-neutral-800 dark:bg-neutral-900',
|
||||
className
|
||||
)}
|
||||
>
|
||||
|
||||
@@ -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 />
|
||||
|
||||
@@ -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 };
|
||||
}
|
||||
`;
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="120" height="60" preserveAspectRatio="xMidYMid" viewBox="0 0 120 60"><path d="M20.689 11.348a2.7 2.7 0 0 0-1.94-.815c-.762 0-1.441.31-1.928.815h-.013a2.803 2.803 0 0 0-.796 1.97c0 .776.305 1.47.796 1.965l.013.014c.487.5 1.166.806 1.927.806a2.71 2.71 0 0 0 1.94-.806l.006-.014c.494-.495.795-1.189.795-1.965 0-.772-.3-1.47-.795-1.97h-.005zm-1.94 38.12c.762 0 1.447-.317 1.94-.811l.005-.015a2.764 2.764 0 0 0 .795-1.96c0-.775-.3-1.47-.795-1.973h-.005a2.683 2.683 0 0 0-1.94-.817c-.762 0-1.441.308-1.928.817h-.013a2.81 2.81 0 0 0-.796 1.974c0 .767.305 1.465.796 1.96l.013.014a2.695 2.695 0 0 0 1.927.81zm14.909-8.438a2.701 2.701 0 0 0 1.666-1.293l.05-.098a2.784 2.784 0 0 0 .216-2.017 2.744 2.744 0 0 0-1.276-1.695l-.038-.026a2.688 2.688 0 0 0-2.037-.25 2.683 2.683 0 0 0-1.665 1.298 2.819 2.819 0 0 0 1 3.81h.004a2.71 2.71 0 0 0 2.08.271zM21.555 27.147a3.932 3.932 0 0 0-2.807-1.186 3.919 3.919 0 0 0-2.8 1.186 4.047 4.047 0 0 0-1.156 2.849c0 1.116.44 2.125 1.155 2.862a3.929 3.929 0 0 0 5.608 0 4.089 4.089 0 0 0 1.157-2.862c0-1.117-.44-2.121-1.157-2.85zM19.977 22.4a7.48 7.48 0 0 1 4.115 2.164h.009c.174.176.343.37.5.564l2.732-1.608a6.011 6.011 0 0 1-.089-3.418 5.957 5.957 0 0 1 2.751-3.642l.046-.03a5.78 5.78 0 0 1 4.431-.579 5.91 5.91 0 0 1 3.586 2.802v.005a6.087 6.087 0 0 1 .591 4.552 5.95 5.95 0 0 1-2.75 3.647l-.374.224h-.038a5.836 5.836 0 0 1-4.07.379 5.902 5.902 0 0 1-2.86-1.784L25.83 27.28c.314.845.487 1.754.487 2.716 0 .956-.173 1.88-.487 2.728l2.728 1.6a5.808 5.808 0 0 1 2.86-1.785 5.74 5.74 0 0 1 4.481.604l.09.042v.005a5.987 5.987 0 0 1 2.661 3.603 6.081 6.081 0 0 1-.59 4.548l-.05.1-.005-.009a5.953 5.953 0 0 1-3.528 2.716 5.85 5.85 0 0 1-4.481-.6v-.012a5.97 5.97 0 0 1-2.75-3.644 5.994 5.994 0 0 1 .088-3.413l-2.732-1.604c-.157.194-.326.38-.5.556l-.009.009a7.434 7.434 0 0 1-4.115 2.15v3.213a5.836 5.836 0 0 1 2.947 1.63l.004.008a6.026 6.026 0 0 1 1.728 4.242c0 1.65-.661 3.147-1.728 4.233l-.004.017a5.858 5.858 0 0 1-4.176 1.758 5.852 5.852 0 0 1-4.168-1.758h-.005v-.017a6.023 6.023 0 0 1-1.73-4.233c0-1.656.662-3.161 1.73-4.242v-.009h.005a5.84 5.84 0 0 1 2.944-1.629v-3.212a7.417 7.417 0 0 1-4.112-2.151l-.01-.009a7.749 7.749 0 0 1-2.218-5.435c0-2.121.854-4.04 2.217-5.431h.011a7.462 7.462 0 0 1 4.112-2.164v-3.2a5.942 5.942 0 0 1-2.944-1.632h-.005v-.009a6.041 6.041 0 0 1-1.73-4.242c0-1.647.662-3.155 1.73-4.242l.005-.004a5.837 5.837 0 0 1 4.168-1.762c1.627 0 3.1.672 4.176 1.762v.004h.004a6.052 6.052 0 0 1 1.728 4.242c0 1.656-.661 3.151-1.728 4.242l-.004.009a5.937 5.937 0 0 1-2.947 1.633V22.4zm15.347-2.134-.023-.035a2.75 2.75 0 0 0-1.643-1.263 2.698 2.698 0 0 0-2.084.276h.004c-.657.38-1.096 1-1.28 1.694-.18.69-.102 1.453.276 2.117l.012.017a2.7 2.7 0 0 0 1.653 1.272 2.64 2.64 0 0 0 2.075-.272l.035-.017c.639-.388 1.064-1 1.241-1.673a2.832 2.832 0 0 0-.266-2.116M47.447 21.207h3.049v9.47l4.396-4.949h3.656l-5.308 5.733 5.33 7.268h-3.491l-4.583-6.492v6.492h-3.05V21.207M62.09 32.285c0 1.612 1.139 3.957 3.885 3.957 1.7 0 2.817-.901 3.397-2.082.304-.573.444-1.186.49-1.823a4.14 4.14 0 0 0-.35-1.829c-.535-1.228-1.721-2.293-3.56-2.293-2.465 0-3.863 2.035-3.863 4.048v.022zm10.797 6.444h-3.05v-1.87c-.812 1.512-2.511 2.27-4.304 2.27-4.096 0-6.492-3.245-6.492-6.913 0-4.096 2.908-6.889 6.492-6.889 2.327 0 3.746 1.255 4.304 2.298v-1.897h3.05v13M76.34 28.12h-1.58v-2.392h1.58v-.732c0-3.863 2.885-4.096 5.074-4.122v2.388c-.77 0-2.025 0-2.025 1.828v.638h2.025v2.392H79.39V38.73h-3.05V28.12M83.487 21.207h3.048v9.47l4.397-4.949h3.656l-5.308 5.733 5.329 7.268h-3.49l-4.584-6.492v6.492h-3.048V21.207M98.13 32.285c0 1.612 1.139 3.957 3.885 3.957 1.697 0 2.815-.901 3.396-2.082.305-.573.445-1.186.491-1.823a4.133 4.133 0 0 0-.351-1.829c-.534-1.228-1.72-2.293-3.558-2.293-2.466 0-3.864 2.035-3.864 4.048v.022zm10.796 6.444h-3.049v-1.87c-.814 1.512-2.512 2.27-4.304 2.27-4.096 0-6.49-3.245-6.49-6.913 0-4.096 2.908-6.889 6.49-6.889 2.326 0 3.746 1.255 4.304 2.298v-1.897h3.05v13" style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none" transform="matrix(1.14583 0 0 1.14583 -8.815 -4.376)"/></svg>
|
||||
|
After Width: | Height: | Size: 4.0 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="154" height="250" preserveAspectRatio="xMidYMid" viewBox="0 0 256 416"><path d="M201.816 230.216c-16.186 0-30.697 7.171-40.634 18.461l-25.463-18.026c2.703-7.442 4.255-15.433 4.255-23.797 0-8.219-1.498-16.076-4.112-23.408l25.406-17.835c9.936 11.233 24.409 18.365 40.548 18.365 29.875 0 54.184-24.305 54.184-54.184 0-29.879-24.309-54.184-54.184-54.184-29.875 0-54.184 24.305-54.184 54.184 0 5.348.808 10.505 2.258 15.389l-25.423 17.844c-10.62-13.175-25.911-22.374-43.333-25.182v-30.64c24.544-5.155 43.037-26.962 43.037-53.019C124.171 24.305 99.862 0 69.987 0 40.112 0 15.803 24.305 15.803 54.184c0 25.708 18.014 47.246 42.067 52.769v31.038C25.044 143.753 0 172.401 0 206.854c0 34.621 25.292 63.374 58.355 68.94v32.774c-24.299 5.341-42.552 27.011-42.552 52.894 0 29.879 24.309 54.184 54.184 54.184 29.875 0 54.184-24.305 54.184-54.184 0-25.883-18.253-47.553-42.552-52.894v-32.775a69.965 69.965 0 0 0 42.6-24.776l25.633 18.143c-1.423 4.84-2.22 9.946-2.22 15.24 0 29.879 24.309 54.184 54.184 54.184 29.875 0 54.184-24.305 54.184-54.184 0-29.879-24.309-54.184-54.184-54.184zm0-126.695c14.487 0 26.27 11.788 26.27 26.271s-11.783 26.27-26.27 26.27-26.27-11.787-26.27-26.27c0-14.483 11.783-26.271 26.27-26.271zm-158.1-49.337c0-14.483 11.784-26.27 26.271-26.27s26.27 11.787 26.27 26.27c0 14.483-11.783 26.27-26.27 26.27s-26.271-11.787-26.271-26.27zm52.541 307.278c0 14.483-11.783 26.27-26.27 26.27s-26.271-11.787-26.271-26.27c0-14.483 11.784-26.27 26.271-26.27s26.27 11.787 26.27 26.27zm-26.272-117.97c-20.205 0-36.642-16.434-36.642-36.638 0-20.205 16.437-36.642 36.642-36.642 20.204 0 36.641 16.437 36.641 36.642 0 20.204-16.437 36.638-36.641 36.638zm131.831 67.179c-14.487 0-26.27-11.788-26.27-26.271s11.783-26.27 26.27-26.27 26.27 11.787 26.27 26.27c0 14.483-11.783 26.271-26.27 26.271z" style="fill:#231f20"/></svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 45.65 160 68.7" fill="#0000000"><path d="M75.61 106.195c-14.747 0-21.962-8.468-21.962-19.136s10.04-24.157 24.782-24.157c14.746 0 21.96 8.47 21.96 19.137 0 10.668-10.038 24.156-24.78 24.156Zm.624-13.488c5.02 0 8.473-4.707 8.473-9.727 0-5.02-2.512-6.273-6.902-6.273-4.395 0-8.473 4.703-8.473 9.723 0 5.02 2.512 6.277 6.902 6.277Zm39.844 12.547h-15.371l12.547-57.098h15.375l-12.55 56.785Zm0 0"/><path fill-rule="evenodd" d="M30.117 106.195c-4.707 0-9.41-1.566-11.922-5.332l-.941 4.39L0 114.353l1.883-9.098L14.43 48.156h15.375L25.41 68.234c3.453-3.765 6.902-5.332 11.297-5.332 9.41 0 15.371 5.961 15.371 17.254 0 11.293-7.215 26.04-21.96 26.04Zm5.961-22.902c0 5.336-3.766 9.414-8.785 9.414-5.02 0-5.332-.941-6.902-2.824l2.511-10.352c1.883-1.883 3.766-2.824 6.274-2.824 3.765 0 6.902 2.824 6.902 6.902Zm0 0"/><path d="M144.629 106.195c-8.785 0-15.375-3.136-15.375-10.351 0-7.215 0-2.196.316-3.137l3.45-15.375h-6.903l3.137-13.176h6.902l2.512-11.293 17.254-7.215-1.883 7.215-2.508 11.293H160l-3.137 13.176h-8.472l-2.196 10.04v1.882c0 1.883 1.254 3.453 3.766 3.453 2.508 0 1.883 0 2.195-.316v12.238c-1.566 1.254-4.39 1.566-7.215 1.566Zm0 0"/></svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 45.65 160 68.7" fill="#ffffff"><path d="M75.61 106.195c-14.747 0-21.962-8.468-21.962-19.136s10.04-24.157 24.782-24.157c14.746 0 21.96 8.47 21.96 19.137 0 10.668-10.038 24.156-24.78 24.156Zm.624-13.488c5.02 0 8.473-4.707 8.473-9.727 0-5.02-2.512-6.273-6.902-6.273-4.395 0-8.473 4.703-8.473 9.723 0 5.02 2.512 6.277 6.902 6.277Zm39.844 12.547h-15.371l12.547-57.098h15.375l-12.55 56.785Zm0 0"/><path fill-rule="evenodd" d="M30.117 106.195c-4.707 0-9.41-1.566-11.922-5.332l-.941 4.39L0 114.353l1.883-9.098L14.43 48.156h15.375L25.41 68.234c3.453-3.765 6.902-5.332 11.297-5.332 9.41 0 15.371 5.961 15.371 17.254 0 11.293-7.215 26.04-21.96 26.04Zm5.961-22.902c0 5.336-3.766 9.414-8.785 9.414-5.02 0-5.332-.941-6.902-2.824l2.511-10.352c1.883-1.883 3.766-2.824 6.274-2.824 3.765 0 6.902 2.824 6.902 6.902Zm0 0"/><path d="M144.629 106.195c-8.785 0-15.375-3.136-15.375-10.351 0-7.215 0-2.196.316-3.137l3.45-15.375h-6.903l3.137-13.176h6.902l2.512-11.293 17.254-7.215-1.883 7.215-2.508 11.293H160l-3.137 13.176h-8.472l-2.196 10.04v1.882c0 1.883 1.254 3.453 3.766 3.453 2.508 0 1.883 0 2.195-.316v12.238c-1.566 1.254-4.39 1.566-7.215 1.566Zm0 0"/></svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -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 |
@@ -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 |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><path fill="#264de4" d="M71.357 460.819 30.272 0h451.456l-41.129 460.746L255.724 512z"/><path fill="#2965f1" d="m405.388 431.408 35.148-393.73H256v435.146z"/><path fill="#ebebeb" d="m124.46 208.59 5.065 56.517H256V208.59zm-5.041-57.875H256V94.197H114.281zM256 355.372l-.248.066-62.944-16.996-4.023-45.076h-56.736l7.919 88.741 115.772 32.14.26-.073z"/><path fill="#fff" d="M255.805 208.59v56.517H325.4l-6.56 73.299-63.035 17.013v58.8l115.864-32.112.85-9.549 13.28-148.792 1.38-15.176 10.203-114.393H255.805v56.518h79.639L330.3 208.59z"/></svg>
|
||||
|
After Width: | Height: | Size: 629 B |
@@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>.ENV</title><rect width="24" height="24" fill="#09090B"></rect><path fill="#ECD53F" d="M24 0v24H0V0h24ZM10.933 15.89H6.84v5.52h4.198v-.93H7.955v-1.503h2.77v-.93h-2.77v-1.224h2.978v-.934Zm2.146 0h-1.084v5.52h1.035v-3.6l2.226 3.6h1.118v-5.52h-1.036v3.686l-2.259-3.687Zm5.117 0h-1.208l1.973 5.52h1.19l1.976-5.52h-1.182l-1.352 4.085-1.397-4.086ZM5.4 19.68H3.72v1.68H5.4v-1.68Z"/></svg>
|
||||
|
After Width: | Height: | Size: 460 B |
@@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>dotenvx</title><rect width="24" height="24" fill="#ECD53F"></rect><path fill="#09090B" d="M24 0v24H0V0h24ZM10.933 15.89H6.84v5.52h4.198v-.93H7.955v-1.503h2.77v-.93h-2.77v-1.224h2.978v-.934Zm2.146 0h-1.084v5.52h1.035v-3.6l2.226 3.6h1.118v-5.52h-1.036v3.686l-2.259-3.687Zm5.117 0h-1.208l1.973 5.52h1.19l1.976-5.52h-1.182l-1.352 4.085-1.397-4.086ZM5.4 19.68H3.72v1.68H5.4v-1.68Z"/></svg>
|
||||
|
After Width: | Height: | Size: 463 B |
|
After Width: | Height: | Size: 6.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" fill="none"><path fill="#DE5833" fill-rule="evenodd" d="M64 128c35.346 0 64-28.654 64-64S99.346 0 64 0 0 28.654 0 64s28.654 64 64 64" clip-rule="evenodd"/><path fill="#DDD" fill-rule="evenodd" d="M73 111.75c0-.5.123-.614-1.466-3.782-4.224-8.459-8.47-20.384-6.54-28.075.353-1.397-3.978-51.744-7.04-53.365-3.402-1.813-7.588-4.69-11.418-5.33-1.943-.31-4.49-.164-6.482.105-.353.047-.368.683-.03.798 1.308.443 2.895 1.212 3.83 2.375.178.22-.06.566-.342.577-.882.032-2.482.402-4.593 2.195-.244.207-.041.592.273.53 4.536-.897 9.17-.455 11.9 2.027.177.16.084.45-.147.512-23.694 6.44-19.003 27.05-12.696 52.344 5.619 22.53 7.733 29.792 8.4 32.004a.72.72 0 0 0 .423.467C55.228 118.38 73 118.524 73 113z" clip-rule="evenodd"/><path fill="#fff" fill-rule="evenodd" d="M122.75 64c0 32.447-26.303 58.75-58.75 58.75S5.25 96.447 5.25 64 31.553 5.25 64 5.25 122.75 31.553 122.75 64m-72.46 51.986c-1.624-5.016-6.161-19.551-10.643-37.92l-.447-1.828-.003-.016c-5.425-22.155-9.855-40.252 14.427-45.937.222-.052.33-.317.183-.492-2.786-3.305-8.005-4.388-14.604-2.111-.27.093-.506-.18-.338-.412 1.294-1.783 3.823-3.155 5.072-3.756.258-.124.242-.502-.031-.588a28 28 0 0 0-3.771-.9c-.37-.059-.404-.693-.032-.743 9.356-1.259 19.125 1.55 24.028 7.726a.33.33 0 0 0 .185.114c17.953 3.855 19.239 32.235 17.17 33.528-.407.255-1.714.108-3.438-.085-6.985-.781-20.818-2.329-9.401 18.948.113.21-.037.488-.272.525-6.416.997 1.755 21.034 7.812 34.323 23.815-5.52 41.563-26.868 41.563-52.362 0-29.685-24.065-53.75-53.75-53.75S10.25 34.315 10.25 64c0 24.947 16.995 45.924 40.04 51.986" clip-rule="evenodd"/><path fill="#3CA82B" d="M84.28 90.698c-1.367-.633-6.621 3.135-10.11 6.028-.728-1.031-2.103-1.78-5.203-1.242-2.713.472-4.211 1.126-4.88 2.254-4.283-1.623-11.488-4.13-13.229-1.71-1.902 2.646.476 15.161 3.003 16.786 1.32.849 7.63-3.208 10.926-6.005.532.749 1.388 1.178 3.148 1.137 2.662-.062 6.979-.681 7.649-1.921q.06-.113.105-.266c3.388 1.266 9.35 2.606 10.682 2.406 3.47-.521-.484-16.723-2.09-17.467"/><path fill="#4CBA3C" d="M74.49 97.097c.144.256.26.526.358.8.483 1.352 1.27 5.648.674 6.709-.595 1.062-4.459 1.574-6.843 1.615s-2.92-.831-3.403-2.181c-.387-1.081-.577-3.621-.572-5.075-.098-2.158.69-2.916 4.334-3.506 2.696-.436 4.121.071 4.944.94 3.828-2.857 10.215-6.889 10.838-6.152 3.106 3.674 3.499 12.42 2.826 15.939-.22 1.151-10.505-1.139-10.505-2.38 0-5.152-1.337-6.565-2.65-6.71M51.96 95.488c.843-1.333 7.674.325 11.424 1.993 0 0-.77 3.491.456 7.604.359 1.203-8.627 6.558-9.8 5.637-1.355-1.065-3.85-12.432-2.08-15.234"/><path fill="#FC3" fill-rule="evenodd" d="M55.269 68.407c.553-2.404 3.127-6.933 12.321-6.823 4.648-.019 10.422-.002 14.25-.436 5.689-.647 9.912-2.023 12.726-3.095 3.98-1.519 5.392-1.18 5.887-.272.544.999-.097 2.722-1.488 4.309-2.656 3.03-7.431 5.38-15.865 6.076-8.433.698-14.02-1.565-16.425 2.118-1.038 1.589-.236 5.333 7.92 6.512 11.02 1.59 20.072-1.917 21.19.201s-5.323 6.428-16.362 6.518-17.934-3.865-20.379-5.83c-3.102-2.495-4.49-6.133-3.775-9.279" clip-rule="evenodd"/><g fill="#14307E" opacity=".8"><path d="M69.327 42.127c.616-1.008 1.981-1.786 4.216-1.786 2.234 0 3.285.889 4.013 1.88.148.202-.076.44-.306.34l-.168-.073c-.817-.357-1.82-.795-3.54-.82-1.838-.026-2.997.435-3.727.831-.246.134-.634-.133-.488-.372M44.17 43.417c2.17-.907 3.876-.79 5.081-.504.254.06.43-.213.227-.377-.935-.755-3.03-1.692-5.76-.674-2.437.909-3.585 2.796-3.592 4.038-.002.292.6.317.756.07.42-.67 1.12-1.646 3.289-2.553"/><path fill-rule="evenodd" d="M75.44 55.92a3.47 3.47 0 0 1-3.474-3.462 3.47 3.47 0 0 1 3.475-3.46 3.47 3.47 0 0 1 3.474 3.46 3.47 3.47 0 0 1-3.475 3.462m2.447-4.608a.899.899 0 0 0-1.799 0c0 .494.405.895.9.895.499 0 .9-.4.9-.895M52.423 54.854a4.04 4.04 0 0 1-4.049 4.037 4.045 4.045 0 0 1-4.05-4.037 4.045 4.045 0 0 1 4.05-4.037 4.045 4.045 0 0 1 4.05 4.037m-1.193-1.338a1.05 1.05 0 0 0-2.097 0c0 .575.469 1.044 1.048 1.044s1.049-.47 1.049-1.044" clip-rule="evenodd"/></g></svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 7.4 KiB |
|
After Width: | Height: | Size: 7.4 KiB |
@@ -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 |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="160" height="160"><defs><linearGradient id="a"><stop offset="0"/><stop offset="1" stop-color="#fff"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="-553.27" x2="-666.12" y1="525.91" y2="413.05" gradientTransform="matrix(.99884 0 0 .9987 689.01 -388.84)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#a" id="b" x1="-666.12" x2="-553.27" y1="413.04" y2="525.91" gradientTransform="matrix(.99884 0 0 .9987 689.01 -388.84)" gradientUnits="userSpaceOnUse"/></defs><g fill-rule="evenodd" color="#000"><path fill="url(#b)" d="M79.865 119.1c35.398 48.255 70.04-13.469 69.989-50.587C149.794 24.627 105.313.099 79.836.099 38.944.099 0 33.895 0 80.135 0 131.531 44.64 160 79.836 160c-7.965-1.147-34.506-6.834-34.863-67.967-.24-41.347 13.488-57.866 34.805-50.599.477.177 23.514 9.265 23.514 38.951 0 29.56-23.427 38.715-23.427 38.715z"/><path fill="url(#c)" d="M79.823 41.401C56.433 33.339 27.78 52.617 27.78 91.23c0 63.048 46.721 68.77 52.384 68.77C121.056 160 160 126.204 160 79.964 160 28.568 115.36.099 80.164.099c9.748-1.35 52.541 10.55 52.541 69.037 0 38.141-31.953 58.905-52.735 50.033-.477-.177-23.514-9.264-23.514-38.951 0-29.56 23.367-38.818 23.367-38.818z"/></g></svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="276" height="276" fill="none"><rect width="274" height="274" x="1" y="1" fill="url(#a)" rx="81"/><path stroke="url(#b)" stroke-linecap="round" stroke-linejoin="round" stroke-width="20" d="M142.892 59.721c-30.057-5.67-40.834 99.13-23.051 131.821"/><path stroke="#D7D5FF" stroke-linecap="round" stroke-linejoin="round" stroke-width="20" d="M119.577 191.219c17.747 32.552 50.284 32.552 65.206-4.71"/><path stroke="#F4F3FF" stroke-linecap="round" stroke-linejoin="round" stroke-width="20" d="M142.892 59.729c30.057 5.656-2.582 97.684-50.401 145.51"/><rect width="274" height="274" x="1" y="1" stroke="url(#c)" stroke-width="2" rx="81"/><defs><linearGradient id="a" x1="2" x2="274" y1="2" y2="274" gradientUnits="userSpaceOnUse"><stop stop-color="#9688FD"/><stop offset="1" stop-color="#607EF4"/></linearGradient><linearGradient id="b" x1="132.555" x2="94.765" y1="62.627" y2="82.582" gradientUnits="userSpaceOnUse"><stop stop-color="#F4F3FF"/><stop offset="1" stop-color="#D7D5FF"/></linearGradient><linearGradient id="c" x1="2" x2="274" y1="2" y2="274" gradientUnits="userSpaceOnUse"><stop stop-color="#9688FD"/><stop offset="1" stop-color="#607EF4"/></linearGradient></defs></svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 404.65 98.18">
|
||||
<g>
|
||||
<path d="M311.63,21.96h-22.25c-1.52,0-2.82,1.11-3.05,2.61l-9,57.05c-.18,1.13.69,2.14,1.83,2.14h11.42c1.06,0,1.97-.77,2.14-1.83l2.55-16.17c.24-1.5,1.53-2.61,3.05-2.61h7.04c14.66,0,23.11-7.09,25.32-21.15.99-6.15.04-10.98-2.84-14.36-3.16-3.72-8.77-5.68-16.22-5.68ZM314.2,42.79c-1.22,7.99-7.32,7.99-13.22,7.99h-3.36l2.35-14.91c.14-.9.92-1.57,1.83-1.57h1.54c4.02,0,7.81,0,9.77,2.29,1.17,1.37,1.52,3.4,1.08,6.2Z" style="fill: #009cde;"/>
|
||||
<path d="M152.93,21.96h-22.25c-1.52,0-2.82,1.11-3.05,2.61l-9,57.05c-.18,1.13.69,2.14,1.83,2.14h10.62c1.52,0,2.82-1.11,3.05-2.61l2.43-15.39c.24-1.5,1.53-2.61,3.05-2.61h7.04c14.66,0,23.11-7.09,25.32-21.15.99-6.15.04-10.98-2.84-14.36-3.16-3.72-8.77-5.68-16.22-5.68ZM155.5,42.79c-1.22,7.99-7.32,7.99-13.22,7.99h-3.36l2.35-14.91c.14-.9.92-1.57,1.83-1.57h1.54c4.02,0,7.81,0,9.76,2.29,1.17,1.37,1.52,3.4,1.08,6.2Z" style="fill: #003087;"/>
|
||||
<path d="M219.44,42.54h-10.65c-.91,0-1.69.66-1.83,1.57l-.47,2.98-.74-1.08c-2.31-3.35-7.45-4.47-12.58-4.47-11.77,0-21.83,8.92-23.78,21.43-1.02,6.24.43,12.21,3.97,16.37,3.25,3.82,7.89,5.42,13.42,5.42,9.49,0,14.75-6.1,14.75-6.1l-.48,2.96c-.18,1.13.69,2.15,1.83,2.15h9.59c1.52,0,2.82-1.11,3.05-2.61l5.76-36.47c.18-1.13-.69-2.14-1.83-2.14ZM204.59,63.27c-1.03,6.09-5.86,10.17-12.03,10.17-3.09,0-5.56-.99-7.15-2.88-1.58-1.87-2.17-4.52-1.67-7.48.96-6.03,5.87-10.25,11.94-10.25,3.03,0,5.48,1,7.1,2.9,1.63,1.91,2.27,4.59,1.81,7.53Z" style="fill: #003087;"/>
|
||||
<path d="M378.13,42.54h-10.65c-.91,0-1.69.66-1.83,1.57l-.47,2.98-.74-1.08c-2.31-3.35-7.45-4.47-12.58-4.47-11.77,0-21.83,8.92-23.78,21.43-1.02,6.24.43,12.21,3.97,16.37,3.25,3.82,7.89,5.42,13.42,5.42,9.49,0,14.75-6.1,14.75-6.1l-.48,2.96c-.18,1.13.69,2.15,1.83,2.15h9.59c1.52,0,2.82-1.11,3.05-2.61l5.76-36.47c.18-1.13-.69-2.14-1.83-2.14ZM363.28,63.27c-1.03,6.09-5.86,10.17-12.03,10.17-3.09,0-5.56-.99-7.15-2.88-1.58-1.87-2.17-4.52-1.67-7.48.96-6.03,5.87-10.25,11.94-10.25,3.03,0,5.48,1,7.1,2.9,1.63,1.91,2.27,4.59,1.81,7.53Z" style="fill: #009cde;"/>
|
||||
<path d="M276.18,42.54h-10.71c-1.02,0-1.98.51-2.56,1.36l-14.77,21.76-6.26-20.91c-.39-1.31-1.6-2.21-2.96-2.21h-10.53c-1.27,0-2.17,1.25-1.76,2.45l11.79,34.61-11.09,15.65c-.87,1.23,0,2.93,1.51,2.93h10.7c1.01,0,1.96-.5,2.54-1.33l35.61-51.4c.85-1.23-.03-2.91-1.52-2.91Z" style="fill: #003087;"/>
|
||||
<path d="M390.69,23.52l-9.13,58.1c-.18,1.13.69,2.14,1.83,2.14h9.18c1.52,0,2.82-1.11,3.05-2.61l9-57.05c.18-1.13-.69-2.14-1.83-2.14h-10.28c-.91,0-1.69.66-1.83,1.57Z" style="fill: #009cde;"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M74.98,24.94c1.2-7.64,0-12.83-4.14-17.54-4.55-5.18-12.76-7.4-23.28-7.4h-30.51c-2.15,0-3.98,1.56-4.31,3.69L.03,84.26c-.25,1.59.98,3.03,2.59,3.03h18.84l-1.3,8.25c-.22,1.39.86,2.65,2.26,2.65h15.88c1.88,0,3.48-1.37,3.77-3.22l.16-.81,2.99-18.97.19-1.05c.29-1.86,1.89-3.22,3.77-3.22h2.38c15.38,0,27.43-6.25,30.95-24.32,1.47-7.55.71-13.86-3.18-18.29-1.18-1.34-2.64-2.45-4.35-3.35h0" style="fill: #009cde;"/>
|
||||
<path d="M74.98,24.94c1.2-7.64,0-12.83-4.14-17.54-4.55-5.18-12.76-7.4-23.28-7.4h-30.51c-2.15,0-3.98,1.56-4.31,3.69L.03,84.26c-.25,1.59.98,3.03,2.59,3.03h18.84l4.73-30.01-.15.94c.33-2.12,2.15-3.69,4.3-3.69h8.95c17.58,0,31.35-7.14,35.38-27.8.12-.61.22-1.2.31-1.79" style="fill: #012169;"/>
|
||||
<path d="M31.27,25.05c.2-1.28,1.02-2.32,2.12-2.85.5-.24,1.06-.37,1.65-.37h23.92c2.83,0,5.48.19,7.89.57.69.11,1.36.24,2.01.38s1.29.31,1.9.49c.31.09.61.18.9.28,1.19.39,2.29.86,3.31,1.4,1.2-7.64,0-12.83-4.14-17.54-4.55-5.18-12.76-7.4-23.28-7.4h-30.51c-2.15,0-3.98,1.56-4.31,3.69L.03,84.26c-.25,1.59.98,3.03,2.59,3.03h18.84l4.73-30.01,5.08-32.23Z" style="fill: #003087;"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="7.056000232696533 3 37.35095977783203 45"><g xmlns="http://www.w3.org/2000/svg" clip-path="url(#a)"><path fill="#002991" d="M38.914 13.35c0 5.574-5.144 12.15-12.927 12.15H18.49l-.368 2.322L16.373 39H7.056l5.605-36h15.095c5.083 0 9.082 2.833 10.555 6.77a9.687 9.687 0 0 1 .603 3.58z"></path><path fill="#60CDFF" d="M44.284 23.7A12.894 12.894 0 0 1 31.53 34.5h-5.206L24.157 48H14.89l1.483-9 1.75-11.178.367-2.322h7.497c7.773 0 12.927-6.576 12.927-12.15 3.825 1.974 6.055 5.963 5.37 10.35z"></path><path fill="#008CFF" d="M38.914 13.35C37.31 12.511 35.365 12 33.248 12h-12.64L18.49 25.5h7.497c7.773 0 12.927-6.576 12.927-12.15z"></path></g></svg>
|
||||
|
After Width: | Height: | Size: 692 B |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path fill="none" d="M0 0h256v256H0z"/><path fill="none" stroke="currentColor" d="M208 128l-80 80M192 40L40 192"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path fill="none" d="M0 0h256v256H0z"/><path fill="none" stroke="currentColor" stroke-width="25" stroke-linecap="round" d="M208 128l-80 80M192 40L40 192"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 182 B After Width: | Height: | Size: 224 B |
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path fill="none" d="M0 0h256v256H0z"/><path fill="none" stroke="#fff" d="M208 128l-80 80M192 40L40 192"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path fill="none" d="M0 0h256v256H0z"/><path fill="none" stroke="#fff" stroke-width="25" stroke-linecap="round" d="M208 128l-80 80M192 40L40 192"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 174 B After Width: | Height: | Size: 216 B |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><rect width="512" height="512" rx="15%" fill="#f50"/><path d="m59 270-3 22 3 22c0 2 3 2 3 0l3-22-3-22c0-3-3-3-3 0zm18-14c0-3-3-3-3 0l-5 36 4 35c0 3 4 3 4 0l4-35zm59-30-3 66 2 40c0 8 7 8 7 0l4-40-4-66c0-5-6-5-6 0zm-31 22-4 44 3 40c0 6 5 6 5 0l4-40-4-44c0-3-4-3-4 0zm70 84 3-40-3-88c0-6-7-6-7 0l-3 88 2 40c0 8 8 8 8 0zm68 0 2-40-2-102c0-7-10-7-10 0l-2 102 2 40c0 8 10 8 10 0zm-34 0 3-40-3-89c0-6-9-6-9 0l-2 89 2 40c0 8 9 8 9 0zm-83 0 3-40-3-41c0-3-6-3-6 0l-3 41 3 40c0 7 6 7 6 0zm-33 0 4-40-4-43c0-3-4-3-4 0l-4 43 4 40c0 4 4 4 4 0zm124-125-2 85 1 40c0 8 10 8 10 0l2-40-2-85c0-7-9-7-9 0zm-58 125 3-40-3-81c0-6-7-6-7 0l-3 81 2 40c0 8 8 8 8 0zm33 0 3-40-3-91c0-6-8-6-8 0l-3 91 3 40c0 8 8 8 8 0zm196-89c-5-57-64-94-118-73-4 2-5 3-5 6v156c0 3 2 6 5 6h137c27 0 49-22 49-49 0-37-35-57-68-46zm-138-62-3 111 3 40c0 8 10 8 10 0l3-40-3-111c0-7-10-7-10 0z" fill="#fff"/></svg>
|
||||
|
After Width: | Height: | Size: 924 B |
|
After Width: | Height: | Size: 8.6 KiB |
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" id="Layer_1" x="0" y="0" style="enable-background:new 0 0 2400 2800" version="1.1" viewBox="0 0 2400 2800"><style>.st1{fill:#9146ff}</style><path d="m2200 1300-400 400h-400l-350 350v-350H600V200h1600z" style="fill:#fff"/><g id="Layer_1-2"><path d="M500 0 0 500v1800h600v500l500-500h400l900-900V0H500zm1700 1300-400 400h-400l-350 350v-350H600V200h1600v1100z" class="st1"/><path d="M1700 550h200v600h-200zM1150 550h200v600h-200z" class="st1"/></g></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 2400 2800"><path fill="#fff" d="m2200 1300-400 400h-400l-350 350v-350H600V200h1600z"/><g fill="#9146ff"><path d="M500 0 0 500v1800h600v500l500-500h400l900-900V0H500zm1700 1300-400 400h-400l-350 350v-350H600V200h1600v1100z"/><path d="M1700 550h200v600h-200zm-550 0h200v600h-200z"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 512 B After Width: | Height: | Size: 364 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="166" height="166" viewBox="0 0 166 166" fill="none"><path fill="url(#a)" d="M70.1 78 47.2 59.2 28 84c-2 2.6-2.5 6-1.2 9.1L45 139.3c1.5 3.8 5 6.5 9 7l60.8 7.7-9.9-24.4c-9.4-21.4-18.5-38-34.8-51.6Z"/><path fill="url(#b)" d="M142.4 103.8 124 56.6a9.3 9.3 0 0 0-8-6l-51-4c-6.7-.4-8.8-4-9.5-5.9l-.3-1L45.3 3l-7.1 16.6a11 11 0 0 0 3 12.7L57 46l14.6 12c20.5 16.8 34 40.4 38.3 66.5l4.8 29.4 26.7-41.8a9.3 9.3 0 0 0 .9-8.4Z"/><defs><linearGradient id="a" x1="-4.3" x2="199.3" y1="-95.8" y2="225.6" gradientUnits="userSpaceOnUse"><stop offset=".3" stop-color="#D48DFF"/><stop offset=".6" stop-color="#7272FF"/><stop offset=".7" stop-color="#0059DF"/></linearGradient><linearGradient id="b" x1="45.6" x2="161.9" y1="-25.2" y2="196.7" gradientUnits="userSpaceOnUse"><stop offset=".3" stop-color="#D48DFF"/><stop offset=".5" stop-color="#5259EE"/><stop offset=".8" stop-color="#1E2FB6"/></linearGradient></defs></svg>
|
||||
|
After Width: | Height: | Size: 951 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="166" height="166" viewBox="0 0 166 166" fill="none"><path fill="url(#a)" d="M70.1 79 47.2 60.2 28 85c-2 2.6-2.5 6-1.2 9.1L45 140.3c1.5 3.8 5 6.5 9 7l60.8 7.7-9.9-24.4c-9.4-21.4-18.5-38-34.8-51.6Z"/><path fill="url(#b)" d="M142.4 104.8 124 57.6a9.3 9.3 0 0 0-8-6l-51-4c-6.7-.4-8.8-4-9.5-5.9l-.3-1L45.3 4l-7.1 16.6a11 11 0 0 0 3 12.7L57 47l14.6 12c20.5 16.8 34 40.4 38.3 66.5l4.8 29.4 26.7-41.8a9.3 9.3 0 0 0 .9-8.4Z"/><defs><linearGradient id="a" x1="-4.3" x2="199.3" y1="-94.8" y2="226.6" gradientUnits="userSpaceOnUse"><stop offset=".4" stop-color="#D48DFF"/><stop offset=".6" stop-color="#6C80FF"/><stop offset=".9" stop-color="#0059DF"/></linearGradient><linearGradient id="b" x1="45.6" x2="161.9" y1="-24.2" y2="197.7" gradientUnits="userSpaceOnUse"><stop offset=".3" stop-color="#D48DFF"/><stop offset=".8" stop-color="#273DE6"/></linearGradient></defs></svg>
|
||||
|
After Width: | Height: | Size: 911 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="329.5" height="97.5" fill="none" viewBox="0 0 659 195"><path fill="url(#a)" d="M480 88c-2-4.2-4.8-7.4-8.5-9.7-3.8-2.2-8.1-3.4-13-3.4-5 0-9.5 1.2-13.5 3.4-4 2.3-7.1 5.6-9.4 9.8a30.8 30.8 0 0 0-3.4 14.8c0 5.5 1.1 10.4 3.4 14.7 2.3 4.2 5.4 7.4 9.4 9.7 4 2.3 8.5 3.4 13.4 3.4 7 0 12.7-2 17.2-6.2 4.5-4.1 7-9.8 7.8-16.8h-28.3V100h38.2v7.2a35.4 35.4 0 0 1-17.8 27.6 34.6 34.6 0 0 1-17 4.2 36 36 0 0 1-18.1-4.6 34 34 0 0 1-13-13 36.9 36.9 0 0 1-4.7-18.6 37 37 0 0 1 4.7-18.7 34 34 0 0 1 13-13c5.4-3.1 11.4-4.6 18-4.6 7.6 0 14.3 1.8 20 5.6 5.9 3.7 10.1 9 12.8 15.8H480Z"/><path fill="url(#b)" d="M547 103c-4 3.8-10.2 5.8-18.5 5.8H515v29.7h-9.3V67.4h23c8 0 14 1.9 18.2 5.8 4.2 3.9 6.3 8.8 6.3 15 0 6.1-2 10.8-6 14.7Zm-7-5.2c2.4-2.3 3.6-5.5 3.6-9.6 0-8.8-5-13.2-15-13.2h-13.7v26.1h13.6c5.2 0 9-1.1 11.5-3.3Z"/><path fill="url(#c)" d="M573.7 67.4v45c0 6.3 1.6 11 4.7 14 3 3.1 7.4 4.6 12.9 4.6s9.7-1.5 12.8-4.6c3-3 4.6-7.7 4.6-14v-45h9.3v44.9c0 5.9-1.2 10.9-3.6 14.9-2.4 4-5.6 7-9.6 9s-8.6 3-13.6 3-9.6-1-13.7-3c-4-2-7.2-5-9.6-9-2.3-4-3.5-9-3.5-15V67.5h9.3Z"/><path fill="#fff" d="M225 67.4v7.5h-19.3v63.6h-9.3V74.9H177v-7.5h48.2ZM284.7 82.6 251 164.8h-9.6l11-27L230 82.7h10.3l17.5 45.3 17.4-45.3h9.6ZM311.4 84.9a26.6 26.6 0 0 1 26.2.4c4.1 2.3 7.3 5.6 9.6 10 2.3 4.3 3.5 9.3 3.5 15 0 5.7-1.2 10.7-3.5 15.1a25.6 25.6 0 0 1-23 14 24 24 0 0 1-21-11.2V165H294V82.6h9.3v10.3c1.9-3.2 4.6-5.9 8.2-8Zm27.2 14.4c-1.7-3.1-4-5.5-6.8-7.2a19 19 0 0 0-26 7.3 22.5 22.5 0 0 0-2.6 11c0 4.2 1 8 2.6 11a18.3 18.3 0 0 0 16.4 9.8 18 18 0 0 0 16.4-9.7c1.7-3.2 2.6-6.9 2.6-11.2 0-4.3-.9-7.9-2.6-11ZM413.6 114H369a18 18 0 0 0 5.7 12.9 18 18 0 0 0 12.5 4.6c4 0 7.4-1 10-2.8 2.7-1.8 4.6-4.3 5.7-7.5h10a24 24 0 0 1-9 13.1c-4.5 3.4-10 5-16.7 5-5.3 0-10-1.1-14.2-3.5a25.2 25.2 0 0 1-9.9-10.1 31.4 31.4 0 0 1-3.5-15.3 32 32 0 0 1 3.4-15.2c2.3-4.4 5.6-7.7 9.8-10a29 29 0 0 1 14.4-3.6c5.5 0 10 1.2 14 3.5a24 24 0 0 1 9.5 9.5c2.2 4 3.3 8.7 3.3 13.8 0 1.7 0 3.6-.3 5.6ZM402 97.3a15.3 15.3 0 0 0-6.4-5.8 20 20 0 0 0-8.9-2 17.2 17.2 0 0 0-17.7 17h35.3c0-3.6-.7-6.6-2.3-9.2Z"/><path fill="url(#d)" d="M73.1 86 50.2 67.2 31 92c-2 2.6-2.5 6-1.2 9.1L48 147.3c1.5 3.8 5 6.5 9 7l60.8 7.7-9.9-24.4c-9.4-21.4-18.5-38-34.8-51.6Z"/><path fill="url(#e)" d="M145.4 111.8 127 64.6a9.3 9.3 0 0 0-8-6l-51-4c-6.7-.4-8.8-4-9.5-5.9l-.3-1-10-36.7-7.1 16.6a11 11 0 0 0 3 12.7L60 54l14.6 12c20.5 16.8 34 40.4 38.3 66.5l4.8 29.4 26.7-41.8a9.3 9.3 0 0 0 .9-8.4Z"/><defs><linearGradient id="a" x1="484.1" x2="496.3" y1="91.8" y2="155.3" gradientUnits="userSpaceOnUse"><stop stop-color="#D48DFF"/><stop offset=".5" stop-color="#725EF8"/><stop offset="1" stop-color="#5885FF"/></linearGradient><linearGradient id="b" x1="484.1" x2="496.3" y1="91.8" y2="155.3" gradientUnits="userSpaceOnUse"><stop stop-color="#D48DFF"/><stop offset=".5" stop-color="#725EF8"/><stop offset="1" stop-color="#5885FF"/></linearGradient><linearGradient id="c" x1="484.1" x2="496.3" y1="91.8" y2="155.3" gradientUnits="userSpaceOnUse"><stop stop-color="#D48DFF"/><stop offset=".5" stop-color="#725EF8"/><stop offset="1" stop-color="#5885FF"/></linearGradient><linearGradient id="d" x1="-1.3" x2="202.3" y1="-87.8" y2="233.6" gradientUnits="userSpaceOnUse"><stop offset=".3" stop-color="#D48DFF"/><stop offset=".6" stop-color="#7272FF"/><stop offset=".7" stop-color="#0059DF"/></linearGradient><linearGradient id="e" x1="48.6" x2="164.9" y1="-17.2" y2="204.7" gradientUnits="userSpaceOnUse"><stop offset=".3" stop-color="#D48DFF"/><stop offset=".5" stop-color="#5259EE"/><stop offset=".8" stop-color="#1E2FB6"/></linearGradient></defs></svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="329.5" height="97.5" fill="none" viewBox="0 0 659 195"><path fill="url(#a)" d="M480 89c-2-4.2-4.8-7.4-8.5-9.7-3.8-2.2-8.1-3.4-13-3.4-5 0-9.5 1.2-13.5 3.4-4 2.3-7.1 5.6-9.4 9.8a30.8 30.8 0 0 0-3.4 14.8c0 5.5 1.1 10.4 3.4 14.7 2.3 4.2 5.4 7.4 9.4 9.7 4 2.3 8.5 3.4 13.4 3.4 7 0 12.7-2 17.2-6.2 4.5-4.1 7-9.8 7.8-16.8h-28.3V101h38.2v7.2a35.4 35.4 0 0 1-17.8 27.6 34.6 34.6 0 0 1-17 4.2 36 36 0 0 1-18.1-4.6 34 34 0 0 1-13-13 36.9 36.9 0 0 1-4.7-18.6 37 37 0 0 1 4.7-18.7 34 34 0 0 1 13-13c5.4-3.1 11.4-4.6 18-4.6 7.6 0 14.3 1.8 20 5.6 5.9 3.7 10.1 9 12.8 15.8H480Z"/><path fill="url(#b)" d="M547 104c-4 3.8-10.2 5.8-18.5 5.8H515v29.7h-9.3V68.4h23c8 0 14 1.9 18.2 5.8 4.2 3.9 6.3 8.8 6.3 15 0 6.1-2 10.8-6 14.7Zm-7-5.2c2.4-2.3 3.6-5.5 3.6-9.6 0-8.8-5-13.2-15-13.2h-13.7v26.1h13.6c5.2 0 9-1.1 11.5-3.3Z"/><path fill="url(#c)" d="M573.7 68.4v45c0 6.3 1.6 11 4.7 14 3 3.1 7.4 4.6 12.9 4.6s9.7-1.5 12.8-4.6c3-3 4.6-7.7 4.6-14v-45h9.3v44.9c0 5.9-1.2 10.9-3.6 14.9-2.4 4-5.6 7-9.6 9s-8.6 3-13.6 3-9.6-1-13.7-3c-4-2-7.2-5-9.6-9-2.3-4-3.5-9-3.5-15V68.5h9.3Z"/><path fill="#000" d="M225 68.4v7.5h-19.3v63.6h-9.3V75.9H177v-7.5h48.2ZM284.7 83.6 251 165.8h-9.6l11-27L230 83.7h10.3l17.5 45.3 17.4-45.3h9.6ZM311.4 85.9a26.6 26.6 0 0 1 26.2.4c4.1 2.3 7.3 5.6 9.6 10 2.3 4.3 3.5 9.3 3.5 15 0 5.7-1.2 10.7-3.5 15.1a25.6 25.6 0 0 1-23 14 24 24 0 0 1-21-11.2V166H294V83.6h9.3v10.3c1.9-3.2 4.6-5.9 8.2-8Zm27.2 14.4c-1.7-3.1-4-5.5-6.8-7.2a19 19 0 0 0-26 7.3 22.5 22.5 0 0 0-2.6 11c0 4.2 1 8 2.6 11a18.3 18.3 0 0 0 16.4 9.8 18 18 0 0 0 16.4-9.7c1.7-3.2 2.6-6.9 2.6-11.2 0-4.3-.9-7.9-2.6-11ZM413.6 115H369a18 18 0 0 0 5.7 12.9 18 18 0 0 0 12.5 4.6c4 0 7.4-1 10-2.8 2.7-1.8 4.6-4.3 5.7-7.5h10a24 24 0 0 1-9 13.1c-4.5 3.4-10 5-16.7 5-5.3 0-10-1.1-14.2-3.5a25.2 25.2 0 0 1-9.9-10.1 31.4 31.4 0 0 1-3.5-15.3 32 32 0 0 1 3.4-15.2c2.3-4.4 5.6-7.7 9.8-10a29 29 0 0 1 14.4-3.6c5.5 0 10 1.2 14 3.5a24 24 0 0 1 9.5 9.5c2.2 4 3.3 8.7 3.3 13.8 0 1.7 0 3.6-.3 5.6ZM402 98.3a15.3 15.3 0 0 0-6.4-5.8 20 20 0 0 0-8.9-2 17.2 17.2 0 0 0-17.7 17h35.3c0-3.6-.7-6.6-2.3-9.2Z"/><path fill="url(#d)" d="M73.1 87 50.2 68.2 31 93c-2 2.6-2.5 6-1.2 9.1L48 148.3c1.5 3.8 5 6.5 9 7l60.8 7.7-9.9-24.4c-9.4-21.4-18.5-38-34.8-51.6Z"/><path fill="url(#e)" d="M145.4 112.8 127 65.6a9.3 9.3 0 0 0-8-6l-51-4c-6.7-.4-8.8-4-9.5-5.9l-.3-1-10-36.7-7.1 16.6a11 11 0 0 0 3 12.7L60 55l14.6 12c20.5 16.8 34 40.4 38.3 66.5l4.8 29.4 26.7-41.8a9.3 9.3 0 0 0 .9-8.4Z"/><defs><linearGradient id="a" x1="484.1" x2="496.3" y1="92.8" y2="156.3" gradientUnits="userSpaceOnUse"><stop stop-color="#B667FF"/><stop offset=".5" stop-color="#725EF8"/><stop offset="1" stop-color="#5885FF"/></linearGradient><linearGradient id="b" x1="484.1" x2="496.3" y1="92.8" y2="156.3" gradientUnits="userSpaceOnUse"><stop stop-color="#B667FF"/><stop offset=".5" stop-color="#725EF8"/><stop offset="1" stop-color="#5885FF"/></linearGradient><linearGradient id="c" x1="484.1" x2="496.3" y1="92.8" y2="156.3" gradientUnits="userSpaceOnUse"><stop stop-color="#B667FF"/><stop offset=".5" stop-color="#725EF8"/><stop offset="1" stop-color="#5885FF"/></linearGradient><linearGradient id="d" x1="-1.3" x2="202.3" y1="-86.8" y2="234.6" gradientUnits="userSpaceOnUse"><stop offset=".4" stop-color="#D48DFF"/><stop offset=".6" stop-color="#6C80FF"/><stop offset=".9" stop-color="#0059DF"/></linearGradient><linearGradient id="e" x1="48.6" x2="164.9" y1="-16.2" y2="205.7" gradientUnits="userSpaceOnUse"><stop offset=".3" stop-color="#D48DFF"/><stop offset=".8" stop-color="#273DE6"/></linearGradient></defs></svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
@@ -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 |
@@ -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 |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 13 KiB |
@@ -36,11 +36,19 @@ const mdsvexOptions = {
|
||||
highlight: {
|
||||
highlighter: async (code, lang = 'text') => {
|
||||
const highlighter = await getHighlighter({
|
||||
themes: ['vesper'],
|
||||
themes: ['github-light', 'github-dark'],
|
||||
langs: ['javascript', 'typescript', 'bash', 'json']
|
||||
});
|
||||
await highlighter.loadLanguage('javascript', 'typescript', 'bash');
|
||||
const html = escapeSvelte(highlighter.codeToHtml(code, { lang, theme: 'vesper' }));
|
||||
const html = escapeSvelte(
|
||||
highlighter.codeToHtml(code, {
|
||||
lang,
|
||||
themes: {
|
||||
light: 'github-light',
|
||||
dark: 'github-dark'
|
||||
}
|
||||
})
|
||||
);
|
||||
return `{@html \`${html}\` }`;
|
||||
}
|
||||
}
|
||||
|
||||