Merge branch 'main' into main

This commit is contained in:
Pablo Hdez 2024-10-14 19:08:22 +01:00 committed by GitHub
commit 4f1e82f889
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
15 changed files with 243 additions and 45 deletions

View File

@ -1,23 +0,0 @@
---
name: Request SVG.
about: Request an SVG here.
title: '🔔 [Request]:'
labels: request
---
## 🔎 Information:
> **All fields are required**:
- **Title**:
- **Category** ([check categories](https://github.com/pheralb/svgl/blob/main/src/types/categories.ts#L1)):
- **Source (.svg)** (type the link of the svg):
- **Company/Product Website**:
## 📝 Checklist:
> **Make sure that you have completed the following steps**:
- [x] I have permission to use this logo.
- [x] The link I have provided is optimized for web use.
- [x] The size of the SVG is less than **20kb**.

92
.github/ISSUE_TEMPLATE/request-svg.yml vendored Normal file
View File

@ -0,0 +1,92 @@
name: 🔔 Request SVG
description: Request a new SVG icon to be added to the collection.
title: '[🔔 Request SVG]: '
labels: [request]
body:
- type: markdown
attributes:
value: |
👋 Thanks for requesting a new SVG icon! Please fill out the form below to help us understand your request better:
- type: input
id: svg-name
attributes:
label: Title
description: Product name, brand name.
placeholder: SVGL
validations:
required: true
- type: input
id: svg-url
attributes:
label: SVG URL
description: The URL to the SVG file.
placeholder: https://website.com/logo.svg
validations:
required: true
- type: input
id: svg-url-dark
attributes:
label: SVG Dark Mode URL (optional)
description: The URL to the SVG file for dark mode.
placeholder: https://website.com/logo-dark.svg
validations:
required: false
- type: input
id: svg-product-url
attributes:
label: Product URL
description: The URL to the product or brand.
placeholder: https://website.com
validations:
required: true
- type: dropdown
id: svg-category
attributes:
label: Category
description: Category/Categories of the product. If the category does not exist, select “Others”.
multiple: true
options:
- AI
- Software
- Hardware
- Library
- Hosting
- Framework
- Devtool
- Monorepo
- CMS
- Database
- Compiler
- Crypto
- Cybersecurity
- Social
- Entertainment
- Browser
- Language
- Education
- Design
- Community
- Marketplace
- Music
- Vercel
- Google
- Payment
- void(0)
- Other
- type: checkboxes
id: terms
attributes:
label: Checklist
options:
- label: I have permission to use this logo.
required: true
- label: The .svg URL I have provided is optimized for web use.
required: true
- label: The .svg size is less than **20kb**.
required: true

View File

@ -28,6 +28,7 @@
// Props:
export let svgInfo: iSVG;
export let searchTerm: string;
let isInFigma = false;
onMount(() => {
@ -37,6 +38,11 @@
// Wordmark SVG:
let wordmarkSvg = false;
$: {
if (searchTerm) {
wordmarkSvg = false;
}
}
const insertSVG = async (url?: string) => {
const content = (await getSvgContent(url)) as string;
@ -59,7 +65,7 @@
class="group flex flex-col items-center justify-center rounded-md border border-neutral-200 p-4 transition-colors duration-100 hover:bg-neutral-100/80 dark:border-neutral-800 dark:hover:bg-neutral-800/20"
>
<!-- Image -->
{#if wordmarkSvg == true}
{#if wordmarkSvg == true && svgInfo.wordmark !== undefined}
<img
class={cn('hidden dark:block', globalImageStyles)}
src={typeof svgInfo.wordmark !== 'string'
@ -175,7 +181,7 @@
</button>
{/if}
{#if wordmarkSvg}
{#if wordmarkSvg && svgInfo.wordmark !== undefined}
<CopySvg {iconSize} {iconStroke} {svgInfo} isInFigma={false} isWordmarkSvg={true} />
{:else}
<CopySvg {iconSize} {iconStroke} {svgInfo} isInFigma={false} isWordmarkSvg={false} />

View File

@ -2220,6 +2220,16 @@ export const svgs: iSVG[] = [
},
url: 'https://raycast.com/'
},
{
title: 'Hack The Box',
category: 'Cybersecurity',
route: '/library/hack-the-box.svg',
wordmark: {
light: '/library/hack-the-box-wordmark-light.svg',
dark: '/library/hack-the-box-wordmark-dark.svg'
},
url: 'https://www.hackthebox.com/'
},
{
title: 'Procure',
category: 'Marketplace',
@ -2262,12 +2272,6 @@ export const svgs: iSVG[] = [
route: '/library/sourcegraph.svg',
url: 'https://about.sourcegraph.com/'
},
{
title: 'Claude AI',
category: 'AI',
route: '/library/claude-ai.svg',
url: 'https://claude.ai/'
},
{
title: 'Perplexity AI',
category: 'AI',
@ -2952,16 +2956,6 @@ export const svgs: iSVG[] = [
route: '/library/manzdev.svg',
url: 'https://manz.dev/'
},
{
title: 'MediaWiki',
category: ['Software', 'CMS'],
"route": "/library/mediawiki.svg",
"wordmark": {
"light": "/library/mediawiki-wordmark-light.svg",
"dark": "/library/mediawiki-wordmark-dark.svg"
},
"url": "https://www.mediawiki.org/"
},
{
title: 'Afordin',
category: ['Community'],
@ -2969,6 +2963,38 @@ export const svgs: iSVG[] = [
light: '/library/afordin-light.svg',
dark: '/library/afordin-dark.svg'
},
url: 'https://github.com/Afordin'
}
url: 'https://github.com/Afordin'
},
{
title: 'MediaWiki',
category: ['Software', 'CMS'],
route: '/library/mediawiki.svg',
wordmark: {
light: '/library/mediawiki-wordmark-light.svg',
dark: '/library/mediawiki-wordmark-dark.svg'
},
url: "https://www.mediawiki.org/"
},
{
title: 'Carrd',
category: ['Social'],
route: '/library/carrd.svg',
url: 'https://carrd.co/'
},
{
title: 'Claude AI',
category: 'AI',
route: '/library/claude-ai-icon.svg',
wordmark: {
light: '/library/claude-ai-wordmark-icon_light.svg',
dark: '/library/claude-ai-wordmark-icon_dark.svg'
},
url: 'https://claude.ai/'
},
{
title: 'UnoCSS',
category: 'Devtool',
route: '/library/unocss.svg',
url: 'https://unocss.dev/'
}
];

View File

@ -134,7 +134,7 @@
</div>
<Grid>
{#each filteredSvgs.slice(0, showAll ? undefined : 30) as svg}
<SvgCard svgInfo={svg} />
<SvgCard svgInfo={svg} searchTerm={searchTerm} />
{/each}
</Grid>
{#if filteredSvgs.length > 30 && !showAll}

View File

@ -12,6 +12,7 @@ export type tCategory =
| 'Database'
| 'Compiler'
| 'Crypto'
| 'Cybersecurity'
| 'Social'
| 'Entertainment'
| 'Browser'

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

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 896 896" viewBox="0 0 896 896"><linearGradient id="a" x1="141.569" x2="754.431" y1="143.569" y2="756.431" gradientTransform="matrix(1 0 0 -1 0 898)" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#7366a7"/><stop offset=".268" style="stop-color:#6b68aa"/><stop offset=".691" style="stop-color:#546db1"/><stop offset="1" style="stop-color:#3f71b7"/></linearGradient><path fill="url(#a)" d="M448 881.3c-239.4 0-433.4-194-433.4-433.3S208.6 14.7 448 14.7s433.4 194 433.4 433.3-194 433.3-433.4 433.3z"/><path fill="#FFF" d="M661.2 613.1 401.1 738c-1.6.8-3.4 1.2-5.2 1.2-2.2 0-4.4-.6-6.4-1.8-3.5-2.2-5.6-6-5.6-10.2V603.5l-140.5-58.8c-4.5-1.9-7.4-6.2-7.4-11.1V208.8c0-4.1 2.1-8 5.6-10.2s7.9-2.4 11.6-.7l270.4 129.8 127.3-61.1c3.7-1.8 8.1-1.5 11.6.7s5.6 6 5.6 10.2v324.8c-.1 4.6-2.7 8.8-6.9 10.8zM260 227.9v297.7l123.9 51.9v-59.8L306 486.3c-6.1-2.5-9.1-9.5-6.7-15.6 2.5-6.2 9.5-9.1 15.6-6.7l69 27.8v-49.1L306 411.3c-6.1-2.5-9.1-9.5-6.7-15.6 2.5-6.2 9.5-9.1 15.6-6.7l69 27.8v-14.3c0-4.6 2.6-8.8 6.8-10.8l17.8-8.6-103.1-46.9c-6-2.7-8.7-9.9-6-15.9s9.9-8.7 15.9-6l121.3 55.3 59.1-28.4L260 227.9zm384 68.7L407.9 410V708.2L644 594.7V296.6zM453 451.8l135.3-65.4c6-2.9 13.1-.4 16 5.6s.4 13.2-5.6 16l-135.3 65.4c-1.7.8-3.5 1.2-5.2 1.2-4.5 0-8.7-2.5-10.8-6.8-2.8-5.9-.3-13.1 5.6-16zm0 75 135.3-65.4c6-2.9 13.1-.4 16 5.6s.4 13.2-5.6 16l-135.3 65.4c-1.7.8-3.5 1.2-5.2 1.2-4.5 0-8.7-2.5-10.8-6.8-2.8-6-.3-13.1 5.6-16zm0 74.9 135.3-65.4c6-2.9 13.1-.4 16 5.6s.4 13.2-5.6 16l-135.3 65.4c-1.7.8-3.5 1.2-5.2 1.2-4.5 0-8.7-2.5-10.8-6.8-2.8-5.9-.3-13.1 5.6-16z"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="257" preserveAspectRatio="xMidYMid" viewBox="0 0 256 257"><path fill="#D97757" d="m50.228 170.321 50.357-28.257.843-2.463-.843-1.361h-2.462l-8.426-.518-28.775-.778-24.952-1.037-24.175-1.296-6.092-1.297L0 125.796l.583-3.759 5.12-3.434 7.324.648 16.202 1.101 24.304 1.685 17.629 1.037 26.118 2.722h4.148l.583-1.685-1.426-1.037-1.101-1.037-25.147-17.045-27.22-18.017-14.258-10.37-7.713-5.25-3.888-4.925-1.685-10.758 7-7.713 9.397.649 2.398.648 9.527 7.323 20.35 15.75L94.817 91.9l3.889 3.24 1.555-1.102.195-.777-1.75-2.917-14.453-26.118-15.425-26.572-6.87-11.018-1.814-6.61c-.648-2.723-1.102-4.991-1.102-7.778l7.972-10.823L71.42 0 82.05 1.426l4.472 3.888 6.61 15.101 10.694 23.786 16.591 32.34 4.861 9.592 2.592 8.879.973 2.722h1.685v-1.556l1.36-18.211 2.528-22.36 2.463-28.776.843-8.1 4.018-9.722 7.971-5.25 6.222 2.981 5.12 7.324-.713 4.73-3.046 19.768-5.962 30.98-3.889 20.739h2.268l2.593-2.593 10.499-13.934 17.628-22.036 7.778-8.749 9.073-9.657 5.833-4.601h11.018l8.1 12.055-3.628 12.443-11.342 14.388-9.398 12.184-13.48 18.147-8.426 14.518.778 1.166 2.01-.194 30.46-6.481 16.462-2.982 19.637-3.37 8.88 4.148.971 4.213-3.5 8.62-20.998 5.184-24.628 4.926-36.682 8.685-.454.324.519.648 16.526 1.555 7.065.389h17.304l32.21 2.398 8.426 5.574 5.055 6.805-.843 5.184-12.962 6.611-17.498-4.148-40.83-9.721-14-3.5h-1.944v1.167l11.666 11.406 21.387 19.314 26.767 24.887 1.36 6.157-3.434 4.86-3.63-.518-23.526-17.693-9.073-7.972-20.545-17.304h-1.36v1.814l4.73 6.935 25.017 37.59 1.296 11.536-1.814 3.76-6.481 2.268-7.13-1.297-14.647-20.544-15.1-23.138-12.185-20.739-1.49.843-7.194 77.448-3.37 3.953-7.778 2.981-6.48-4.925-3.436-7.972 3.435-15.749 4.148-20.544 3.37-16.333 3.046-20.285 1.815-6.74-.13-.454-1.49.194-15.295 20.999-23.267 31.433-18.406 19.702-4.407 1.75-7.648-3.954.713-7.064 4.277-6.286 25.47-32.405 15.36-20.092 9.917-11.6-.065-1.686h-.583L44.07 198.125l-12.055 1.555-5.185-4.86.648-7.972 2.463-2.593 20.35-13.999-.064.065Z"/></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="110" preserveAspectRatio="xMidYMid" viewBox="0 0 512 110"><path fill="#D97757" d="m21.564 73.123 21.62-12.132.361-1.057-.361-.584h-1.058l-3.617-.223-12.354-.334-10.712-.445-10.379-.556-2.615-.557L0 54.007l.25-1.613 2.199-1.475 3.144.278 6.956.473 10.434.724 7.568.445 11.214 1.168h1.78l.25-.723-.611-.445-.473-.445-10.796-7.318-11.687-7.735-6.12-4.452-3.312-2.254-1.67-2.115-.723-4.619 3.005-3.31 4.035.277 1.03.279 4.09 3.144 8.736 6.761 11.408 8.403 1.67 1.391.668-.473.083-.333-.751-1.253-6.205-11.213-6.622-11.408-2.95-4.73-.779-2.838c-.278-1.169-.473-2.143-.473-3.34L28.771.613 30.663 0l4.563.612 1.92 1.67 2.838 6.483 4.591 10.211 7.123 13.885 2.087 4.118 1.113 3.812.417 1.168h.724v-.667l.584-7.819 1.085-9.6 1.058-12.354.361-3.478 1.725-4.173 3.423-2.254 2.67 1.28 2.2 3.144-.307 2.031-1.308 8.487-2.56 13.3-1.67 8.904h.975l1.113-1.113 4.507-5.983 7.569-9.46 3.339-3.756 3.895-4.146 2.504-1.976h4.73l3.478 5.176-1.558 5.342-4.869 6.177-4.035 5.231-5.787 7.79-3.617 6.234.334.5.862-.083 13.078-2.782 7.067-1.28 8.431-1.447 3.812 1.78.417 1.81-1.502 3.7-9.015 2.226-10.574 2.114-15.748 3.729-.195.139.222.278 7.096.668 3.033.167h7.429l13.829 1.03 3.617 2.392 2.17 2.922-.362 2.226-5.565 2.838-7.512-1.78-17.53-4.174-6.01-1.503h-.835v.5l5.009 4.898 9.182 8.292L97.776 88.12l.584 2.644-1.475 2.087-1.558-.223-10.1-7.596-3.896-3.423-8.82-7.429h-.584v.78l2.03 2.977 10.741 16.138.556 4.953-.779 1.613-2.782.974-3.06-.556-6.29-8.82-6.482-9.934-5.231-8.904-.64.362-3.089 33.25-1.447 1.698-3.339 1.28-2.782-2.115-1.475-3.423 1.475-6.76 1.78-8.821 1.448-7.012 1.307-8.71.78-2.893-.056-.195-.64.084-6.567 9.015-9.989 13.495-7.902 8.459-1.892.75-3.283-1.697.306-3.032 1.836-2.7 10.935-13.912 6.595-8.625 4.257-4.98-.028-.724h-.25L18.92 85.06l-5.175.668-2.226-2.087.279-3.423 1.057-1.113 8.737-6.01-.028.028Z"/><path fill="#ffff" d="M179.413 93.351c-13.968 0-23.512-7.79-28.02-19.783a53.395 53.395 0 0 1-3.422-19.56c0-20.118 9.015-34.086 28.938-34.086 13.383 0 21.647 5.844 26.35 19.784h5.731l-.779-19.227c-8.013-5.175-18.03-7.791-30.217-7.791-17.168 0-31.776 7.68-39.9 21.536a46.662 46.662 0 0 0-6.178 24.068c0 15.387 7.263 29.022 20.897 36.59a48.72 48.72 0 0 0 24.29 5.732c13.3 0 23.846-2.532 33.195-6.956l2.42-21.203h-5.842c-3.506 9.683-7.68 15.498-14.608 18.587-3.395 1.53-7.68 2.31-12.855 2.31Zm60.24-73.429.557-9.46h-3.952l-17.585 5.287v2.866l7.791 3.617v66.167c0 4.507-2.31 5.509-8.347 6.26v4.842h29.911v-4.842c-6.065-.751-8.347-1.753-8.347-6.26V19.95l-.028-.028Zm118.95 80.692h2.31l20.228-3.84V91.82l-2.838-.222c-4.73-.446-5.955-1.42-5.955-5.287V51.03l.557-11.324h-3.2L350.59 42.46v4.842l1.864.334c5.175.75 6.706 2.198 6.706 5.815v31.442c-4.953 3.84-9.683 6.26-15.304 6.26-6.233 0-10.1-3.172-10.1-10.573V51.058l.556-11.325h-3.283l-19.143 2.755v4.842l1.975.333c5.176.752 6.706 2.199 6.706 5.816v29.02c0 12.3 6.956 18.142 18.03 18.142 8.459 0 15.387-4.507 20.59-10.768l-.556 10.768-.028-.027Zm-55.593-39.15c0-15.72-8.348-21.758-23.429-21.758-13.3 0-22.955 5.509-22.955 14.635 0 2.727.974 4.814 2.95 6.26l10.128-1.335c-.446-3.06-.668-4.925-.668-5.704 0-5.175 2.754-7.79 8.347-7.79 8.264 0 12.438 5.815 12.438 15.164v3.06l-20.869 6.261c-6.956 1.892-10.907 3.534-13.55 7.374a13.912 13.912 0 0 0-1.948 7.79c0 8.904 6.121 15.193 16.583 15.193 7.569 0 14.275-3.423 20.118-9.906 2.087 6.483 5.286 9.906 10.99 9.906 4.62 0 8.793-1.865 12.521-5.51l-1.113-3.84a17.782 17.782 0 0 1-4.813.668c-3.2 0-4.73-2.532-4.73-7.484V61.464ZM276.298 91.71c-5.704 0-9.238-3.311-9.238-9.127 0-3.95 1.865-6.26 5.843-7.596l16.918-5.37v16.25c-5.398 4.09-8.57 5.843-13.523 5.843Zm176.13 5.064V91.82l-2.866-.222c-4.73-.446-5.927-1.42-5.927-5.287v-66.39l.557-9.46h-3.98l-17.585 5.287v2.866l7.791 3.617V43.99a24.57 24.57 0 0 0-14.941-4.285c-17.474 0-31.108 13.3-31.108 33.194 0 16.39 9.794 27.714 25.932 27.714 8.348 0 15.61-4.063 20.117-10.351l-.556 10.35h2.337l20.229-3.84ZM415.81 46.3c8.348 0 14.608 4.842 14.608 13.745v25.043a20.034 20.034 0 0 1-14.496 5.843c-11.965 0-18.03-9.46-18.03-22.093 0-14.19 6.928-22.538 17.918-22.538Zm79.384 12.521c-1.558-7.346-6.066-11.52-12.326-11.52-9.35 0-15.833 7.04-15.833 17.14 0 14.943 7.903 24.625 20.674 24.625a23.93 23.93 0 0 0 20.563-12.103L512 77.964c-1.67 12.967-13.411 22.65-27.825 22.65-16.917 0-28.575-12.521-28.575-30.33 0-17.946 12.66-30.578 29.577-30.578 12.632 0 21.536 7.596 24.402 20.785l-44.074 13.522V68.06l29.689-9.21v-.028Z"/></svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="110" preserveAspectRatio="xMidYMid" viewBox="0 0 512 110"><path fill="#D97757" d="m21.564 73.123 21.62-12.132.361-1.057-.361-.584h-1.058l-3.617-.223-12.354-.334-10.712-.445-10.379-.556-2.615-.557L0 54.007l.25-1.613 2.199-1.475 3.144.278 6.956.473 10.434.724 7.568.445 11.214 1.168h1.78l.25-.723-.611-.445-.473-.445-10.796-7.318-11.687-7.735-6.12-4.452-3.312-2.254-1.67-2.115-.723-4.619 3.005-3.31 4.035.277 1.03.279 4.09 3.144 8.736 6.761 11.408 8.403 1.67 1.391.668-.473.083-.333-.751-1.253-6.205-11.213-6.622-11.408-2.95-4.73-.779-2.838c-.278-1.169-.473-2.143-.473-3.34L28.771.613 30.663 0l4.563.612 1.92 1.67 2.838 6.483 4.591 10.211 7.123 13.885 2.087 4.118 1.113 3.812.417 1.168h.724v-.667l.584-7.819 1.085-9.6 1.058-12.354.361-3.478 1.725-4.173 3.423-2.254 2.67 1.28 2.2 3.144-.307 2.031-1.308 8.487-2.56 13.3-1.67 8.904h.975l1.113-1.113 4.507-5.983 7.569-9.46 3.339-3.756 3.895-4.146 2.504-1.976h4.73l3.478 5.176-1.558 5.342-4.869 6.177-4.035 5.231-5.787 7.79-3.617 6.234.334.5.862-.083 13.078-2.782 7.067-1.28 8.431-1.447 3.812 1.78.417 1.81-1.502 3.7-9.015 2.226-10.574 2.114-15.748 3.729-.195.139.222.278 7.096.668 3.033.167h7.429l13.829 1.03 3.617 2.392 2.17 2.922-.362 2.226-5.565 2.838-7.512-1.78-17.53-4.174-6.01-1.503h-.835v.5l5.009 4.898 9.182 8.292L97.776 88.12l.584 2.644-1.475 2.087-1.558-.223-10.1-7.596-3.896-3.423-8.82-7.429h-.584v.78l2.03 2.977 10.741 16.138.556 4.953-.779 1.613-2.782.974-3.06-.556-6.29-8.82-6.482-9.934-5.231-8.904-.64.362-3.089 33.25-1.447 1.698-3.339 1.28-2.782-2.115-1.475-3.423 1.475-6.76 1.78-8.821 1.448-7.012 1.307-8.71.78-2.893-.056-.195-.64.084-6.567 9.015-9.989 13.495-7.902 8.459-1.892.75-3.283-1.697.306-3.032 1.836-2.7 10.935-13.912 6.595-8.625 4.257-4.98-.028-.724h-.25L18.92 85.06l-5.175.668-2.226-2.087.279-3.423 1.057-1.113 8.737-6.01-.028.028Z"/><path fill="#121212" d="M179.413 93.351c-13.968 0-23.512-7.79-28.02-19.783a53.395 53.395 0 0 1-3.422-19.56c0-20.118 9.015-34.086 28.938-34.086 13.383 0 21.647 5.844 26.35 19.784h5.731l-.779-19.227c-8.013-5.175-18.03-7.791-30.217-7.791-17.168 0-31.776 7.68-39.9 21.536a46.662 46.662 0 0 0-6.178 24.068c0 15.387 7.263 29.022 20.897 36.59a48.72 48.72 0 0 0 24.29 5.732c13.3 0 23.846-2.532 33.195-6.956l2.42-21.203h-5.842c-3.506 9.683-7.68 15.498-14.608 18.587-3.395 1.53-7.68 2.31-12.855 2.31Zm60.24-73.429.557-9.46h-3.952l-17.585 5.287v2.866l7.791 3.617v66.167c0 4.507-2.31 5.509-8.347 6.26v4.842h29.911v-4.842c-6.065-.751-8.347-1.753-8.347-6.26V19.95l-.028-.028Zm118.95 80.692h2.31l20.228-3.84V91.82l-2.838-.222c-4.73-.446-5.955-1.42-5.955-5.287V51.03l.557-11.324h-3.2L350.59 42.46v4.842l1.864.334c5.175.75 6.706 2.198 6.706 5.815v31.442c-4.953 3.84-9.683 6.26-15.304 6.26-6.233 0-10.1-3.172-10.1-10.573V51.058l.556-11.325h-3.283l-19.143 2.755v4.842l1.975.333c5.176.752 6.706 2.199 6.706 5.816v29.02c0 12.3 6.956 18.142 18.03 18.142 8.459 0 15.387-4.507 20.59-10.768l-.556 10.768-.028-.027Zm-55.593-39.15c0-15.72-8.348-21.758-23.429-21.758-13.3 0-22.955 5.509-22.955 14.635 0 2.727.974 4.814 2.95 6.26l10.128-1.335c-.446-3.06-.668-4.925-.668-5.704 0-5.175 2.754-7.79 8.347-7.79 8.264 0 12.438 5.815 12.438 15.164v3.06l-20.869 6.261c-6.956 1.892-10.907 3.534-13.55 7.374a13.912 13.912 0 0 0-1.948 7.79c0 8.904 6.121 15.193 16.583 15.193 7.569 0 14.275-3.423 20.118-9.906 2.087 6.483 5.286 9.906 10.99 9.906 4.62 0 8.793-1.865 12.521-5.51l-1.113-3.84a17.782 17.782 0 0 1-4.813.668c-3.2 0-4.73-2.532-4.73-7.484V61.464ZM276.298 91.71c-5.704 0-9.238-3.311-9.238-9.127 0-3.95 1.865-6.26 5.843-7.596l16.918-5.37v16.25c-5.398 4.09-8.57 5.843-13.523 5.843Zm176.13 5.064V91.82l-2.866-.222c-4.73-.446-5.927-1.42-5.927-5.287v-66.39l.557-9.46h-3.98l-17.585 5.287v2.866l7.791 3.617V43.99a24.57 24.57 0 0 0-14.941-4.285c-17.474 0-31.108 13.3-31.108 33.194 0 16.39 9.794 27.714 25.932 27.714 8.348 0 15.61-4.063 20.117-10.351l-.556 10.35h2.337l20.229-3.84ZM415.81 46.3c8.348 0 14.608 4.842 14.608 13.745v25.043a20.034 20.034 0 0 1-14.496 5.843c-11.965 0-18.03-9.46-18.03-22.093 0-14.19 6.928-22.538 17.918-22.538Zm79.384 12.521c-1.558-7.346-6.066-11.52-12.326-11.52-9.35 0-15.833 7.04-15.833 17.14 0 14.943 7.903 24.625 20.674 24.625a23.93 23.93 0 0 0 20.563-12.103L512 77.964c-1.67 12.967-13.411 22.65-27.825 22.65-16.917 0-28.575-12.521-28.575-30.33 0-17.946 12.66-30.578 29.577-30.578 12.632 0 21.536 7.596 24.402 20.785l-44.074 13.522V68.06l29.689-9.21v-.028Z"/></svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 300 58.8" style="enable-background:new 0 0 300 58.8;" xml:space="preserve">
<style type="text/css">
.st0{fill:#9FEF00;}
.st1{fill:#FFFFFF;}
</style>
<path class="st0" d="M59.9,18.5L59.9,18.5c0-0.5-0.2-1-0.5-1.3c0,0,0,0-0.1,0c0,0-0.1-0.1-0.1-0.1c0,0-0.1-0.1-0.1-0.1
c0,0,0,0-0.1,0l-19-11c0,0-0.1-0.1-0.1-0.1c-0.5-0.3-1.2-0.2-1.7,0.1l-19,10.9c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0
c0,0-0.1,0.1-0.1,0.1c0,0,0,0-0.1,0.1c0,0-0.1,0.1-0.1,0.1l0,0c-0.3,0.3-0.4,0.7-0.4,1.2l0,0c0,0,0,0,0,0.1v21.9
c0,0.6,0.4,1.2,0.9,1.5l19,10.9c0,0,0,0,0,0c0,0,0.1,0,0.1,0.1c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0
c0,0,0,0,0.1,0c0.1,0,0.3,0,0.4,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0
c0,0,0.1,0,0.1-0.1c0,0,0,0,0,0l19-10.9c0.6-0.3,0.9-0.9,0.9-1.5L59.9,18.5C59.9,18.5,59.9,18.5,59.9,18.5z M25.8,17.7l12.9-7.5
c0.3-0.1,0.6-0.1,0.8,0l12.9,7.5c0.4,0.2,0.5,0.7,0.3,1.1c-0.1,0.1-0.2,0.2-0.3,0.3l-12.9,7.5c-0.3,0.1-0.6,0.1-0.8,0l-12.9-7.5
c-0.4-0.2-0.5-0.7-0.3-1.1C25.6,17.9,25.7,17.8,25.8,17.7L25.8,17.7z M36.9,46.1c0,0.5-0.4,0.8-0.8,0.8c-0.1,0-0.3,0-0.4-0.1
l-12.9-7.4c-0.3-0.1-0.4-0.4-0.4-0.7V23.7c0-0.5,0.4-0.8,0.8-0.8c0.1,0,0.3,0,0.4,0.1l12.9,7.4c0.3,0.1,0.4,0.4,0.4,0.7V46.1z
M55.9,38.6c0,0.3-0.2,0.6-0.4,0.7l-12.9,7.4c-0.4,0.2-0.9,0.1-1.1-0.3c-0.1-0.1-0.1-0.3-0.1-0.4V31.2c0-0.3,0.2-0.6,0.4-0.7
L54.7,23c0.4-0.2,0.9-0.1,1.1,0.3c0.1,0.1,0.1,0.3,0.1,0.4L55.9,38.6z"/>
<path class="st1" d="M90,38.5v-7c0-0.2-0.2-0.4-0.4-0.4h-6.1c-0.2,0-0.4,0.2-0.4,0.4c0,0,0,0,0,0v7c0,0.2-0.2,0.4-0.4,0.4h-3.7
c-0.2,0-0.4-0.2-0.4-0.4V20.4c0-0.2,0.2-0.4,0.4-0.4h3.7c0.2,0,0.4,0.2,0.4,0.4v6.3c0,0.2,0.2,0.4,0.4,0.4l0,0h6.1
c0.2,0,0.4-0.2,0.4-0.4c0,0,0,0,0,0v-6.3c0-0.2,0.2-0.4,0.4-0.4h3.7c0.2,0,0.4,0.2,0.4,0.4v18.1c0,0.2-0.2,0.4-0.4,0.4h-3.7
C90.2,38.9,90,38.7,90,38.5z"/>
<path class="st1" d="M104.8,35.2l-1,3.4c-0.1,0.2-0.2,0.3-0.4,0.3h-3.9c-0.2,0-0.4-0.2-0.4-0.4c0,0,0-0.1,0-0.1l6.2-18.1
c0.1-0.2,0.2-0.3,0.4-0.3h5.4c0.2,0,0.4,0.1,0.4,0.3l6.2,18.1c0.1,0.2,0,0.5-0.3,0.6c0,0-0.1,0-0.1,0h-3.9c-0.2,0-0.4-0.1-0.4-0.3
l-1-3.4c-0.1-0.2-0.2-0.3-0.4-0.3h-6.2C105,34.9,104.8,35,104.8,35.2z M110.2,29.8c-0.7-2.3-1.4-4.6-1.9-6.9h-0.1
c-0.6,2.3-1.2,4.6-1.9,6.9l-0.2,0.7c-0.1,0.2,0.1,0.5,0.3,0.6c0,0,0.1,0,0.1,0h3.4c0.2,0,0.4-0.2,0.4-0.4c0,0,0-0.1,0-0.1
L110.2,29.8z"/>
<path class="st1" d="M137.3,26.7h-3.9c-0.2,0-0.4-0.2-0.4-0.4c-0.2-1.7-1.7-3-3.4-2.9c-2.5,0-4.1,2.2-4.1,5.9s1.5,5.9,4,5.9
c1.8,0.1,3.3-1.2,3.5-3c0-0.2,0.2-0.4,0.4-0.4h4c0.2,0,0.4,0.2,0.4,0.4c0,0,0,0,0,0.1c-0.6,4.4-3.7,6.9-8.4,6.9
c-5.5,0-8.8-3.8-8.8-9.9s3.4-9.9,8.9-9.9c4.7,0,7.8,2.6,8.2,6.8C137.8,26.5,137.6,26.7,137.3,26.7C137.3,26.7,137.3,26.7,137.3,26.7
z"/>
<path class="st1" d="M158.9,38.9h-4.7c-0.1,0-0.3-0.1-0.4-0.2l-5.7-8.6h-0.1v8.3c0,0.2-0.2,0.4-0.4,0.4h-3.7c-0.2,0-0.4-0.2-0.4-0.4
V20.4c0-0.2,0.2-0.4,0.4-0.4h3.7c0.2,0,0.4,0.2,0.4,0.4v7.7h0.1l5.4-8c0.1-0.1,0.2-0.2,0.4-0.2h4.4c0.2,0,0.4,0.2,0.4,0.4
c0,0.1,0,0.2-0.1,0.3l-6.2,8c-0.1,0.2-0.1,0.4,0,0.5l6.7,9c0.1,0.2,0.1,0.5-0.1,0.6C159.1,38.9,159,38.9,158.9,38.9z"/>
<path class="st1" d="M171.8,22.5v15.9c0,0.2-0.2,0.4-0.4,0.4h-1.6c-0.2,0-0.4-0.2-0.4-0.4V22.5c0-0.2-0.2-0.4-0.4-0.4h-5.6
c-0.2,0-0.4-0.2-0.4-0.4c0,0,0,0,0,0v-1.3c0-0.2,0.2-0.4,0.4-0.4l0,0h14.6c0.2,0,0.4,0.2,0.4,0.4v1.3c0,0.2-0.2,0.4-0.4,0.4h-5.6
C172,22.1,171.8,22.3,171.8,22.5C171.8,22.5,171.8,22.5,171.8,22.5z"/>
<path class="st1" d="M195.4,38.5v-7.9c0-0.2-0.2-0.4-0.4-0.4h0h-8.8c-0.2,0-0.4,0.2-0.4,0.4c0,0,0,0,0,0v7.9c0,0.2-0.2,0.4-0.4,0.4
h-1.6c-0.2,0-0.4-0.2-0.4-0.4c0,0,0,0,0,0V20.4c0-0.2,0.2-0.4,0.4-0.4h1.6c0.2,0,0.4,0.2,0.4,0.4v7.2c0,0.2,0.2,0.4,0.4,0.4h8.8
c0.2,0,0.4-0.2,0.4-0.4v-7.2c0-0.2,0.2-0.4,0.4-0.4h1.6c0.2,0,0.4,0.2,0.4,0.4v18.1c0,0.2-0.2,0.4-0.4,0.4h-1.6
C195.6,38.9,195.4,38.7,195.4,38.5z"/>
<path class="st1" d="M208,22.5v5.1c0,0.2,0.2,0.4,0.4,0.4l0,0h8.3c0.2,0,0.4,0.2,0.4,0.4v1.3c0,0.2-0.2,0.4-0.4,0.4h-8.3
c-0.2,0-0.4,0.2-0.4,0.4c0,0,0,0,0,0v5.6c0,0.2,0.2,0.4,0.4,0.4l0,0h9.2c0.2,0,0.4,0.2,0.4,0.4v1.3c0,0.2-0.2,0.4-0.4,0.4H206
c-0.2,0-0.4-0.2-0.4-0.4c0,0,0,0,0,0V20.4c0-0.2,0.2-0.4,0.4-0.4l0,0h11.4c0.2,0,0.4,0.2,0.4,0.4v1.3c0,0.2-0.2,0.4-0.4,0.4h-8.9
C208.2,22.1,208,22.3,208,22.5C208,22.5,208,22.5,208,22.5z"/>
<path class="st1" d="M231.6,19.9c4.7,0,6.9,2,6.9,4.9c0.1,2-1.2,3.9-3.2,4.4v0.1c2.5,0.6,3.7,2,3.7,4.4c0,3.2-2.6,5.3-6.9,5.3h-7.4
c-0.2,0-0.4-0.2-0.4-0.4V20.4c0-0.2,0.2-0.4,0.4-0.4L231.6,19.9z M228.7,27.2c0,0.2,0.2,0.4,0.4,0.4h2c2.1,0,2.9-0.7,2.9-2.1
s-0.9-2-2.8-2h-2.1c-0.2,0-0.4,0.2-0.4,0.4L228.7,27.2z M228.7,34.9c0,0.2,0.2,0.4,0.4,0.4h2.1c2.2,0,3-0.7,3-2.1
c0-1.5-0.9-2.2-3.1-2.2h-2c-0.2,0-0.4,0.2-0.4,0.4L228.7,34.9z"/>
<path class="st1" d="M261.8,29.4c0,6.1-3.5,9.9-9.2,9.9c-5.7,0-9.2-3.8-9.2-9.9s3.5-9.9,9.2-9.9C258.3,19.5,261.8,23.3,261.8,29.4z
M248.2,29.4c0,3.7,1.6,5.9,4.4,5.9c2.7,0,4.3-2.2,4.3-5.9s-1.6-5.9-4.3-5.9C249.8,23.5,248.2,25.7,248.2,29.4z"/>
<path class="st1" d="M281.2,38.9h-4.4c-0.2,0-0.3-0.1-0.4-0.2l-3.3-6.3H273l-3.3,6.3c-0.1,0.1-0.2,0.2-0.4,0.2H265
c-0.2,0-0.4-0.2-0.4-0.4c0-0.1,0-0.2,0.1-0.2l5.3-8.8c0.1-0.1,0.1-0.3,0-0.5l-5-8.4c-0.1-0.2-0.1-0.5,0.2-0.6c0.1,0,0.1-0.1,0.2-0.1
h4.3c0.2,0,0.3,0.1,0.4,0.2l3.1,6.1h0.1l3.1-6.1c0.1-0.1,0.2-0.2,0.4-0.2h4.2c0.2,0,0.4,0.2,0.4,0.4c0,0.1,0,0.2-0.1,0.2l-5,8.4
c-0.1,0.1-0.1,0.3,0,0.5l5.4,8.8c0.1,0.2,0.1,0.5-0.1,0.6C281.3,38.9,281.2,38.9,281.2,38.9z"/>
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1024 791.27002" style="enable-background:new 0 0 1024 791.27002;" xml:space="preserve">
<style type="text/css">
.st0{fill:#9FEF00;}
</style>
<path class="st0" d="M697.93835,297.50143c0.00049-0.04691,0.00452-0.09305,0.00452-0.13995
c0-4.64658-2.05377-8.99628-5.51544-11.95172c-0.16724-0.14578-0.34021-0.28525-0.51428-0.42371
c-0.0517-0.04062-0.10291-0.08197-0.15509-0.12183c-0.59521-0.46054-1.22827-0.87796-1.89917-1.24747l-169.76471-98.01547
c-0.41071-0.24364-0.8291-0.47014-1.25714-0.67746c-2.55103-1.23232-5.29578-1.71405-7.96582-1.52412
c-1.40308,0.10164-2.80627,0.39169-4.16898,0.88098c-1.01544,0.36269-1.99631,0.8313-2.92343,1.39728l-169.85989,98.0649
c-4.86584,2.81018-7.86215,8.00027-7.86215,13.61862c0,0.11374,0.00882,0.22623,0.0112,0.33972
c-0.0025,0.12561-0.02094,0.24969-0.02094,0.37531l0.00012,195.83673c0,5.99643,3.35712,11.20972,8.29587,13.86224
l169.79468,98.03036c0.3139,0.18134,0.63281,0.3501,0.95541,0.50793c0.02219,0.01086,0.04489,0.01947,0.06708,0.03027
c0.48273,0.23334,0.97556,0.43634,1.47446,0.61743c0.06961,0.02521,0.13809,0.05347,0.20807,0.0777
c0.49307,0.17151,0.99298,0.31372,1.49728,0.43433c0.09546,0.02295,0.19052,0.04541,0.28638,0.06628
c0.5033,0.11078,1.01001,0.19879,1.51971,0.25928c0.08136,0.00964,0.16257,0.01544,0.24402,0.02374
c0.53546,0.05499,1.0723,0.09052,1.60977,0.09052c0.5376,0,1.07458-0.03552,1.60999-0.09052
c0.08124-0.0083,0.16248-0.0141,0.24365-0.02374c0.50989-0.06049,1.01654-0.1488,1.51996-0.25928
c0.09576-0.02087,0.19055-0.04333,0.28601-0.06604c0.50433-0.12085,1.00446-0.26306,1.49756-0.43433
c0.06989-0.02448,0.13818-0.05273,0.20782-0.07794c0.49847-0.18109,0.99097-0.38385,1.47345-0.61688
c0.02258-0.01111,0.04578-0.01996,0.06836-0.03107c0.32269-0.15784,0.6416-0.32635,0.95538-0.50769l169.79456-98.03036
c4.93884-2.65253,8.29584-7.86581,8.29584-13.86224l0.00049-195.95755C697.95294,297.80386,697.94238,297.65302,697.93835,297.50143
z M392.67059,290.95648l115.6322-66.76077c2.28885-1.32161,5.10895-1.32161,7.39795,0l115.63019,66.759
c4.93207,2.84726,4.93207,9.96625,0.00012,12.81378l-115.63208,66.7605c-2.28894,1.32159-5.1091,1.32159-7.39807,0.00024
l-115.63031-66.75925C387.73868,300.92249,387.73853,293.80399,392.67059,290.95648z M491.96909,544.71106
c0,5.68195-6.15076,9.23309-11.07135,6.39215l-115.4053-66.62985c-2.28357-1.31857-3.6904-3.75522-3.6904-6.39212V344.83359
c0-5.68164,6.15076-9.23282,11.07135-6.39188l115.4053,66.62988c2.28369,1.31857,3.6904,3.75522,3.6904,6.39212V544.71106z
M662.19775,478.08124c0,2.6369-1.40686,5.07355-3.69043,6.39212l-115.40533,66.62985
c-4.92059,2.84094-11.07135-0.71021-11.07135-6.39215V411.46371c0-2.6369,1.40674-5.07355,3.69043-6.39212l115.40515-66.62988
c4.92072-2.84094,11.07153,0.71024,11.07153,6.39215V478.08124z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="2500" height="2500" fill="none" viewBox="0 0 64 64"><path fill="url(#a)" d="M31.885 16c-8.124 0-7.617 3.523-7.617 3.523l.01 3.65h7.752v1.095H21.197S16 23.678 16 31.876c0 8.196 4.537 7.906 4.537 7.906h2.708v-3.804s-.146-4.537 4.465-4.537h7.688s4.32.07 4.32-4.175v-7.019S40.374 16 31.885 16zm-4.275 2.454a1.394 1.394 0 1 1 0 2.79 1.393 1.393 0 0 1-1.395-1.395c0-.771.624-1.395 1.395-1.395z"/><path fill="url(#b)" d="M32.115 47.833c8.124 0 7.617-3.523 7.617-3.523l-.01-3.65H31.97v-1.095h10.832S48 40.155 48 31.958c0-8.197-4.537-7.906-4.537-7.906h-2.708v3.803s.146 4.537-4.465 4.537h-7.688s-4.32-.07-4.32 4.175v7.019s-.656 4.247 7.833 4.247zm4.275-2.454a1.393 1.393 0 0 1-1.395-1.395 1.394 1.394 0 1 1 1.395 1.395z"/><defs><linearGradient id="a" x1="19.075" x2="34.898" y1="18.782" y2="34.658" gradientUnits="userSpaceOnUse"><stop stop-color="#387EB8"/><stop offset="1" stop-color="#366994"/></linearGradient><linearGradient id="b" x1="28.809" x2="45.803" y1="28.882" y2="45.163" gradientUnits="userSpaceOnUse"><stop stop-color="#FFE052"/><stop offset="1" stop-color="#FFC331"/></linearGradient></defs></svg>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="16 16 32 32"><path fill="url(#a)" d="M31.885 16c-8.124 0-7.617 3.523-7.617 3.523l.01 3.65h7.752v1.095H21.197S16 23.678 16 31.876c0 8.196 4.537 7.906 4.537 7.906h2.708v-3.804s-.146-4.537 4.465-4.537h7.688s4.32.07 4.32-4.175v-7.019S40.374 16 31.885 16zm-4.275 2.454a1.394 1.394 0 1 1 0 2.79 1.393 1.393 0 0 1-1.395-1.395c0-.771.624-1.395 1.395-1.395z"/><path fill="url(#b)" d="M32.115 47.833c8.124 0 7.617-3.523 7.617-3.523l-.01-3.65H31.97v-1.095h10.832S48 40.155 48 31.958c0-8.197-4.537-7.906-4.537-7.906h-2.708v3.803s.146 4.537-4.465 4.537h-7.688s-4.32-.07-4.32 4.175v7.019s-.656 4.247 7.833 4.247zm4.275-2.454a1.393 1.393 0 0 1-1.395-1.395 1.394 1.394 0 1 1 1.395 1.395z"/><defs><linearGradient id="a" x1="19.075" x2="34.898" y1="18.782" y2="34.658" gradientUnits="userSpaceOnUse"><stop stop-color="#387EB8"/><stop offset="1" stop-color="#366994"/></linearGradient><linearGradient id="b" x1="28.809" x2="45.803" y1="28.882" y2="45.163" gradientUnits="userSpaceOnUse"><stop stop-color="#FFE052"/><stop offset="1" stop-color="#FFC331"/></linearGradient></defs></svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" preserveAspectRatio="xMidYMid" viewBox="0 0 256 256"><path fill="#858585" d="M137.176 195.927c0-32.813 26.6-59.412 59.412-59.412S256 163.114 256 195.927c0 32.812-26.6 59.412-59.412 59.412s-59.412-26.6-59.412-59.412Z"/><path fill="#CCC" d="M137.176 59.412C137.176 26.6 163.776 0 196.588 0S256 26.6 256 59.412v53.471c0 3.28-2.66 5.941-5.941 5.941H143.117a5.942 5.942 0 0 1-5.941-5.94V59.411Z"/><path fill="#4D4D4D" d="M118.824 195.927c0 32.812-26.6 59.412-59.412 59.412S0 228.74 0 195.927v-53.47a5.94 5.94 0 0 1 5.941-5.942h106.942a5.94 5.94 0 0 1 5.941 5.941v53.471Z"/></svg>

After

Width:  |  Height:  |  Size: 639 B