Merge branch 'develop' into new-icon-almalinux
35
.github/workflows/build_icons.yml
vendored
@ -8,7 +8,7 @@ jobs:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.8
|
||||
python-version: '3.10'
|
||||
|
||||
- name: Install dependencies (python, pip, npm)
|
||||
run: |
|
||||
@ -17,12 +17,13 @@ jobs:
|
||||
npm install
|
||||
|
||||
- name: Executing build and create fonts via icomoon
|
||||
shell: bash
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: >
|
||||
python ./.github/scripts/icomoon_build.py
|
||||
./.github/scripts/build_assets/geckodriver-v0.32.2-linux64/geckodriver ./icomoon.json
|
||||
./devicon.json ./icons ./ "$GITHUB_TOKEN" --headless
|
||||
./devicon.json ./icons ./ $GITHUB_TOKEN --headless
|
||||
|
||||
- name: Upload geckodriver.log for debugging purposes
|
||||
uses: actions/upload-artifact@v2
|
||||
@ -42,15 +43,15 @@ jobs:
|
||||
if: success()
|
||||
run: npm run build-css
|
||||
|
||||
- name: Upload screenshot of the newly made icons
|
||||
id: imgur_step
|
||||
uses: devicons/public-upload-to-imgur@v2.2.2
|
||||
if: success()
|
||||
with:
|
||||
# will have "new_icons.png" and "new_svgs.png"
|
||||
# in that order (cause sorted alphabetically)
|
||||
path: ./screenshots/*.png
|
||||
client_id: ${{secrets.IMGUR_CLIENT_ID}}
|
||||
# - name: Upload screenshot of the newly made icons
|
||||
# id: imgur_step
|
||||
# uses: devicons/public-upload-to-imgur@v2.2.2
|
||||
# if: success()
|
||||
# with:
|
||||
# # will have "new_icons.png" and "new_svgs.png"
|
||||
# # in that order (cause sorted alphabetically)
|
||||
# path: ./screenshots/*.png
|
||||
# client_id: ${{secrets.IMGUR_CLIENT_ID}}
|
||||
|
||||
- name: Get the release message from file
|
||||
id: release_message_step
|
||||
@ -68,14 +69,6 @@ jobs:
|
||||
|
||||
I'm Devicon's Build Bot and I just built some new font files and devicon.min.css file.
|
||||
|
||||
Here are all the **SVGs** that were uploaded (the new ones are those with highlight):
|
||||
|
||||
{0}
|
||||
|
||||
Here is what they look like as icons:
|
||||
|
||||
{1}
|
||||
|
||||
The devicon.min.css file contains:
|
||||
-The icon content
|
||||
-The aliases
|
||||
@ -83,7 +76,7 @@ jobs:
|
||||
|
||||
I also compiled a list of new features and icons that were added since last release.
|
||||
```
|
||||
{2}
|
||||
{0}
|
||||
```
|
||||
|
||||
More information can be found in the GitHub Action logs for this workflow.
|
||||
@ -98,8 +91,6 @@ jobs:
|
||||
${{
|
||||
format(
|
||||
env.MESSAGE,
|
||||
fromJSON(steps.imgur_step.outputs.markdown_urls)[1],
|
||||
fromJSON(steps.imgur_step.outputs.markdown_urls)[0],
|
||||
steps.release_message_step.outputs.content
|
||||
)
|
||||
}}
|
||||
|
427
.vscode/devicon-schema.json
vendored
@ -1,223 +1,224 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"definitions": {
|
||||
"IconVersions": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"original",
|
||||
"plain",
|
||||
"line",
|
||||
"original-wordmark",
|
||||
"plain-wordmark",
|
||||
"line-wordmark"
|
||||
]
|
||||
},
|
||||
"IconVersionsArray": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
}
|
||||
}
|
||||
},
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
"title": "The official name of the technology.",
|
||||
"description": "Pattern: Only lower-case letters and digits.",
|
||||
"pattern": "^(dot-net|[0-9a-z]+)$"
|
||||
},
|
||||
"altnames": {
|
||||
"type": "array",
|
||||
"title": "List of alternative names for this technology.",
|
||||
"description": "Used for the searchbar on the Devicon website. https://devicon.dev",
|
||||
"uniqueItems": true,
|
||||
"items": {
|
||||
"type": "string"
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"definitions": {
|
||||
"IconVersions": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"original",
|
||||
"plain",
|
||||
"line",
|
||||
"original-wordmark",
|
||||
"plain-wordmark",
|
||||
"line-wordmark"
|
||||
]
|
||||
},
|
||||
"IconVersionsArray": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"title": "List of tags relating to the technology for categorization/search purpose.",
|
||||
"$ref": "./tags-enum.json/#/definitions/Tags"
|
||||
},
|
||||
"versions": {
|
||||
"title": "Keeps track of the different versions that you have.",
|
||||
},
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"svg": {
|
||||
"title": "List all the SVGs that you have.",
|
||||
"contains": {
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
"name": {
|
||||
"type": "string",
|
||||
"title": "The official name of the technology.",
|
||||
"description": "Pattern: Only lower-case letters and digits.",
|
||||
"pattern": "^(dot-net|[0-9a-z]+)$"
|
||||
},
|
||||
"minItems": 1,
|
||||
"uniqueItems": true,
|
||||
"$ref": "#/definitions/IconVersionsArray"
|
||||
},
|
||||
"font": {
|
||||
"title": "List only the SVGs that can be converted to fonts. Usually refers to \"plain\" and \"line\" versions but \"original\" can be accepted.",
|
||||
"description": "DO NOT list aliases here! In this case use \"aliases\" property!",
|
||||
"contains": {
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
"altnames": {
|
||||
"type": "array",
|
||||
"title": "List of alternative names for this technology.",
|
||||
"description": "Used for the searchbar on the Devicon website. https://devicon.dev",
|
||||
"uniqueItems": true,
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"minItems": 1,
|
||||
"uniqueItems": true,
|
||||
"$ref": "#/definitions/IconVersionsArray"
|
||||
}
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"title": "The official/main hexadecimal color of the logo. [Case insensitive]",
|
||||
"description": "Pattern example: #FFFFFF",
|
||||
"type": "string",
|
||||
"pattern": "^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$"
|
||||
},
|
||||
"aliases": {
|
||||
"title": "Keeps track of the aliases for the font versions ONLY.",
|
||||
"description": "Can be empty, or contain objects, each with an alias and a base version. More info here: https://github.com/devicons/devicon/wiki/Updating-%60devicon.json%60#aliases-and-aliasobj",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"title": "AliasObj, an object containing an alias and a base version",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"base": {
|
||||
"title": "The SVG file you are using as source for the alias.",
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"title": "List of tags relating to the technology for categorization/search purpose.",
|
||||
"$ref": "./tags-enum.json/#/definitions/Tags"
|
||||
},
|
||||
"alias": {
|
||||
"title": "The new name (alias) that you want to generate.",
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
"versions": {
|
||||
"title": "Keeps track of the different versions that you have.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"svg": {
|
||||
"title": "List all the SVGs that you have.",
|
||||
"contains": {
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
},
|
||||
"minItems": 1,
|
||||
"uniqueItems": true,
|
||||
"$ref": "#/definitions/IconVersionsArray"
|
||||
},
|
||||
"font": {
|
||||
"title": "List only the SVGs that can be converted to fonts. Usually refers to \"plain\" and \"line\" versions but \"original\" can be accepted.",
|
||||
"description": "DO NOT list aliases here! In this case use \"aliases\" property!",
|
||||
"contains": {
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
},
|
||||
"minItems": 1,
|
||||
"uniqueItems": true,
|
||||
"$ref": "#/definitions/IconVersionsArray"
|
||||
}
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"title": "The official/main hexadecimal color of the logo. [Case insensitive]",
|
||||
"description": "Pattern example: #FFFFFF",
|
||||
"type": "string",
|
||||
"pattern": "^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$",
|
||||
"format": "color"
|
||||
},
|
||||
"aliases": {
|
||||
"title": "Keeps track of the aliases for the font versions ONLY.",
|
||||
"description": "Can be empty, or contain objects, each with an alias and a base version. More info here: https://github.com/devicons/devicon/wiki/Updating-%60devicon.json%60#aliases-and-aliasobj",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"title": "AliasObj, an object containing an alias and a base version",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"base": {
|
||||
"title": "The SVG file you are using as source for the alias.",
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
},
|
||||
"alias": {
|
||||
"title": "The new name (alias) that you want to generate.",
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"base",
|
||||
"alias"
|
||||
],
|
||||
"allOf": [
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "original"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "original"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "plain"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "plain"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "line"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "line"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "original-wordmark"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "original-wordmark"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "plain-wordmark"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "plain-wordmark"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "line-wordmark"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "line-wordmark"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"base",
|
||||
"alias"
|
||||
],
|
||||
"allOf": [
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "original"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "original"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "plain"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "plain"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "line"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "line"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "original-wordmark"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "original-wordmark"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "plain-wordmark"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "plain-wordmark"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "line-wordmark"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "line-wordmark"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"altnames",
|
||||
"tags",
|
||||
"versions",
|
||||
"color",
|
||||
"aliases"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"altnames",
|
||||
"tags",
|
||||
"versions",
|
||||
"color",
|
||||
"aliases"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -20,6 +20,12 @@
|
||||
<a href="https://devicon.dev/">
|
||||
<img alt="Registered logos" src="https://img.shields.io/github/directory-file-count/devicons/devicon/icons?color=%2360be86&label=registered%20logos&style=for-the-badge">
|
||||
</a>
|
||||
<a href="https://www.npmjs.com/package/devicon">
|
||||
<img alt="Devicons npm downloads" src="https://img.shields.io/npm/dt/devicon?color=%2360be86&style=for-the-badge">
|
||||
</a>
|
||||
<a href="https://www.npmjs.com/package/devicon">
|
||||
<img alt="Devicons npm downloads/month" src="https://img.shields.io/npm/dm/devicon?color=%2360be86&style=for-the-badge">
|
||||
</a>
|
||||
</p>
|
||||
<br />
|
||||
<div align="center">
|
||||
@ -156,7 +162,7 @@ Add the following CSS rules in your stylesheet:
|
||||
<h4>You can also use the <code>img</code> tag and reference an SVG directly from the repository:</h4>
|
||||
|
||||
```html
|
||||
<img src='https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/devicon/devicon-original.svg'>
|
||||
<img src='https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/devicon/devicon-original.svg' />
|
||||
```
|
||||
|
||||
<h2 id="request-icon">Requesting an icon</h2>
|
||||
@ -264,6 +270,7 @@ https://www.python.org/downloads/
|
||||
> Make sure your Python install includes [pip](https://pypi.org/project/pip/)
|
||||
|
||||
<h3>Install Selenium</h3>
|
||||
|
||||
```bash
|
||||
python3 -m pip install --upgrade pip && pip install selenium==4.1.0 requests==2.25.1
|
||||
```
|
||||
|
4448
devicon-base.css
1440
devicon.json
2
devicon.min.css
vendored
1483
fonts/devicon.svg
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 5.2 MiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 5.3 KiB |
@ -1,8 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128 128" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(86.666667%,0%,19.215686%);fill-opacity:1;" d="M 64 15.359375 L 16.332031 32.359375 L 23.601562 95.386719 L 64 117.761719 L 104.398438 95.386719 L 111.667969 32.359375 Z M 64 15.359375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(76.470588%,0%,18.431373%);fill-opacity:1;" d="M 64 15.359375 L 64 26.726562 L 64 26.675781 L 64 117.761719 L 104.398438 95.386719 L 111.667969 32.359375 Z M 64 15.359375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 64 26.675781 L 34.203125 93.492188 L 45.3125 93.492188 L 51.300781 78.539062 L 76.59375 78.539062 L 82.585938 93.492188 L 93.695312 93.492188 Z M 72.703125 69.324219 L 55.296875 69.324219 L 64 48.382812 Z M 72.703125 69.324219 "/>
|
||||
</g>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><linearGradient id="a" x1="14.704" x2="110.985" y1="46.27" y2="92.024" gradientTransform="matrix(1 0 0 -1 0 130)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#e40035"/><stop offset=".24" stop-color="#f60a48"/><stop offset=".352" stop-color="#f20755"/><stop offset=".494" stop-color="#dc087d"/><stop offset=".745" stop-color="#9717e7"/><stop offset="1" stop-color="#6c00f5"/></linearGradient><path fill="url(#a)" d="m124.5 21.3-4.4 68.6L78.3 0l46.2 21.3zm-29 88.7L64 128l-31.5-18 6.4-15.5h50.3l6.3 15.5zM64 34.1l16.5 40.2h-33L64 34.1zM7.9 89.9 3.5 21.3 49.7 0 7.9 89.9z"/><linearGradient id="b" x1="28.733" x2="91.742" y1="117.071" y2="45.195" gradientTransform="matrix(1 0 0 -1 0 130)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#ff31d9"/><stop offset="1" stop-color="#ff5be1" stop-opacity="0"/></linearGradient><path fill="url(#b)" d="m124.5 21.3-4.4 68.6L78.3 0l46.2 21.3zm-29 88.7L64 128l-31.5-18 6.4-15.5h50.3l6.3 15.5zM64 34.1l16.5 40.2h-33L64 34.1zM7.9 89.9 3.5 21.3 49.7 0 7.9 89.9z"/></svg>
|
||||
|
Before Width: | Height: | Size: 995 B After Width: | Height: | Size: 1.1 KiB |
@ -1,12 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
|
||||
<path d="M41.4,71.2V57.7h1.7l8.3,10.9V57.7H53v13.5h-1.7l-8.3-11v11H41.4L41.4,71.2z M66.5,70.7c-1.1,0.4-2.3,0.6-3.5,0.6
|
||||
c-4.9,0-7.3-2.3-7.3-7c0-4.4,2.4-6.7,7.1-6.7c1.4,0,2.6,0.2,3.8,0.6v1.5C65.4,59.2,64.2,59,63,59c-3.7,0-5.5,1.8-5.5,5.2
|
||||
c0,3.8,1.8,5.6,5.5,5.6c0.6,0,1.2-0.1,1.9-0.2v-4.5h1.7L66.5,70.7L66.5,70.7z M69.3,66v-8.3H71V66c0,2.6,1.3,3.9,3.9,3.9
|
||||
s3.9-1.3,3.9-3.9v-8.3h1.7V66c0,3.5-1.9,5.3-5.6,5.3S69.3,69.5,69.3,66L69.3,66z M85.4,57.7v12.1h7.1v1.4h-8.8V57.7H85.4L85.4,57.7z
|
||||
M95,71.2h-1.8l6.7-15.3l6.7,15.3h-1.9L103,67h-4.5l0.5-1.4h3.4l-2.5-6.1L95,71.2L95,71.2z M108.5,71.2V57.7h5.8
|
||||
c2.6,0,3.9,1.1,3.9,3.2c0,1.8-1.3,3.1-3.8,3.9l4.6,6.4h-2.3l-4.3-6.1V64c2.6-0.4,3.9-1.4,3.9-3c0-1.2-0.7-1.9-2.1-1.9h-3.9v12.1
|
||||
H108.5L108.5,71.2z"/>
|
||||
<path d="M20.5,64.8h5.1L23,58.7L20.5,64.8z M23,49.1L9,54l2.1,18.3L23,78.9l12-6.5L37,54L23,49.1z M31.8,71.8h-3.3l-1.8-4.4h-7.5
|
||||
l-1.8,4.4h-3.3L23,52.4L31.8,71.8z"/>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M50.67 73.4h4.03l-7.34-20.82H42.7L35.37 73.4h4.03l1.72-5.13h7.83l1.73 5.13Zm-8.54-8.17 2.81-8.39h.16l2.82 8.39h-5.79Zm16.54-.99v9.15h-3.68V57.77h3.52v2.65h.18c.36-.87.93-1.57 1.72-2.08.79-.52 1.77-.77 2.93-.77 1.08 0 2.02.23 2.82.69.8.46 1.43 1.13 1.87 2 .44.87.66 1.94.66 3.18v9.94h-3.68V64c0-1.04-.27-1.86-.81-2.45-.54-.59-1.28-.88-2.23-.88-.64 0-1.22.14-1.71.42-.5.28-.89.69-1.17 1.22s-.42 1.17-.42 1.92Zm18.14 15.33c-1.32 0-2.46-.18-3.41-.53s-1.71-.83-2.29-1.43c-.58-.6-.98-1.26-1.2-1.98l3.31-.8c.15.31.37.61.65.91.28.3.67.55 1.15.75.48.2 1.1.3 1.84.3 1.04 0 1.91-.25 2.59-.76.68-.51 1.03-1.33 1.03-2.49v-2.96h-.18c-.19.38-.47.77-.83 1.17-.36.4-.84.74-1.43 1.01s-1.34.41-2.23.41c-1.2 0-2.29-.28-3.26-.85-.97-.57-1.75-1.41-2.32-2.54-.57-1.13-.86-2.54-.86-4.25s.29-3.16.86-4.35c.57-1.18 1.35-2.08 2.32-2.69.98-.61 2.06-.92 3.26-.92.92 0 1.67.15 2.26.46.59.31 1.07.68 1.42 1.11.35.43.62.84.8 1.22h.2v-2.58h3.63v15.87c0 1.34-.32 2.44-.96 3.31-.64.87-1.51 1.53-2.61 1.96-1.11.43-2.36.65-3.76.65Zm.03-9.29c.78 0 1.44-.19 1.99-.57.55-.38.97-.93 1.25-1.64.28-.71.43-1.57.43-2.56s-.14-1.84-.42-2.58c-.28-.74-.69-1.31-1.24-1.72-.55-.41-1.22-.62-2.01-.62s-1.5.21-2.05.64c-.55.43-.96 1.01-1.24 1.75s-.42 1.58-.42 2.53.14 1.79.42 2.51c.28.72.7 1.27 1.25 1.67.55.4 1.23.59 2.04.59Zm18.46-3.46v-9.05h3.68v15.62h-3.57v-2.78h-.16a4.76 4.76 0 0 1-1.73 2.15c-.8.56-1.79.83-2.96.83-1.02 0-1.93-.23-2.71-.69s-1.39-1.13-1.84-2c-.44-.88-.66-1.94-.66-3.19v-9.94h3.68v9.38c0 .99.27 1.78.81 2.36.54.58 1.25.87 2.14.87.54 0 1.07-.13 1.58-.4.51-.26.93-.66 1.26-1.18.33-.53.49-1.18.49-1.98Zm8.57-14.26v20.82h-3.68V52.56h3.68Zm5.84 21.14c-.99 0-1.88-.18-2.67-.53-.79-.36-1.41-.88-1.87-1.58-.46-.7-.69-1.56-.69-2.58 0-.88.16-1.61.49-2.19.33-.58.77-1.04 1.33-1.38.56-.35 1.2-.61 1.91-.79.71-.18 1.44-.31 2.2-.39.92-.09 1.66-.18 2.23-.26.57-.08.98-.2 1.25-.37.26-.17.39-.43.39-.78v-.06c0-.77-.23-1.36-.68-1.78-.45-.42-1.11-.63-1.96-.63-.9 0-1.62.2-2.14.59-.53.39-.88.86-1.06 1.39l-3.44-.49c.27-.95.72-1.74 1.34-2.38.62-.64 1.39-1.12 2.29-1.44.9-.32 1.9-.48 2.99-.48.75 0 1.5.09 2.25.26.75.18 1.43.47 2.04.87.62.4 1.11.95 1.49 1.64.38.69.56 1.56.56 2.59v10.45h-3.54v-2.15h-.12c-.22.43-.54.84-.94 1.22-.4.38-.91.68-1.52.9s-1.32.34-2.13.34Zm.96-2.7c.74 0 1.38-.15 1.92-.44.54-.29.96-.69 1.26-1.17.29-.49.44-1.02.44-1.6v-1.84c-.12.09-.31.18-.58.26-.27.08-.58.15-.92.21-.34.06-.67.12-1.01.16-.33.05-.62.09-.86.12-.55.07-1.04.2-1.47.37-.43.17-.78.41-1.03.71s-.38.69-.38 1.16c0 .68.25 1.19.74 1.54.49.35 1.13.52 1.89.52Zm8.42 2.39V57.77h3.57v2.6h.16c.28-.9.77-1.6 1.47-2.09.69-.49 1.49-.74 2.38-.74.2 0 .43 0 .69.03.25.02.47.04.64.08v3.39c-.16-.05-.4-.1-.74-.15-.34-.04-.66-.07-.97-.07-.67 0-1.27.14-1.81.43-.53.29-.95.69-1.26 1.19-.3.51-.46 1.09-.46 1.76v9.18h-3.68ZM28.95 53.53l-1.04 16.41-10-21.52 11.04 5.11Zm-6.92 21.23-7.55 4.31-7.55-4.31 1.54-3.72H20.5l1.54 3.72Zm-7.55-18.17 3.96 9.62h-7.91l3.96-9.62ZM1.04 69.94 0 53.53l11.04-5.11-10 21.52Z"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 2.9 KiB |
@ -1,6 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128 128" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 55.296875 69.324219 L 72.703125 69.324219 L 64 48.382812 Z M 55.296875 69.324219 M 64 15.359375 L 16.332031 32.359375 L 23.601562 95.386719 L 64 117.761719 L 104.398438 95.386719 L 111.667969 32.359375 Z M 93.746094 93.492188 L 82.636719 93.492188 L 76.644531 78.539062 L 51.355469 78.539062 L 45.363281 93.492188 L 34.253906 93.492188 L 64 26.675781 Z M 93.746094 93.492188 "/>
|
||||
</g>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="m78.36 0 41.77 89.9 4.34-68.57L78.36 0M38.87 94.47l-6.42 15.54L64 128l31.55-17.99-6.42-15.54H38.87M80.53 74.3 64 34.11 47.47 74.3h33.06m-77-52.97L7.87 89.9 49.64 0 3.53 21.33"/></svg>
|
||||
|
Before Width: | Height: | Size: 661 B After Width: | Height: | Size: 255 B |
1
icons/biome/biome-line-wordmark.svg
Normal file
After Width: | Height: | Size: 11 KiB |
1
icons/biome/biome-line.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#60a5fa" d="M64 8.324a1.94 1.94 0 0 0-1.68.97L34.665 57.177a1.94 1.94 0 0 0 2.251 2.821 60.576 60.576 0 0 1 31.705-1.09l7.454 1.75-7.894 33.496-7.473-1.75h-.01c-11.696-2.762-22.911 2.91-28.394 12.315l-5.162-2.491c6.643-11.786 20.55-18.789 34.886-15.387a1.94 1.94 0 0 0 2.341-1.451l4.382-18.579a1.94 1.94 0 0 0-1.44-2.33A54.729 54.729 0 0 0 20.78 74.824 54.754 54.754 0 0 0 0 117.735a1.94 1.94 0 0 0 1.94 1.941h124.12a1.94 1.94 0 0 0 1.68-2.911L65.68 9.295A1.94 1.94 0 0 0 64 8.323Zm0 5.823 58.698 101.647H3.992c.58-14.817 7.513-28.683 19.189-37.927 11.675-9.235 26.772-12.796 41.32-9.945l-3.502 14.857C44.86 79.877 29.364 88.34 22.65 102.218a1.94 1.94 0 0 0 .91 2.591l8.654 4.182a1.94 1.94 0 0 0 2.591-.9c4.282-8.844 14.407-14.417 25.002-11.906a1.94 1.94 0 0 0 .01 0l9.364 2.191a1.94 1.94 0 0 0 2.332-1.44l8.784-37.268a1.94 1.94 0 0 0-1.441-2.341l-9.354-2.201c-9.635-2.261-19.62-2.131-29.224.1z"/></svg>
|
After Width: | Height: | Size: 978 B |
1
icons/biome/biome-original-wordmark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#60a5fa" d="M18.12 48.249 10.055 62.28a18.206 18.206 0 0 1 9.544-.33l2.739.64-2.569 10.934-2.728-.65a6.972 6.972 0 0 0-5.987 1.34c-.83.66-1.51 1.509-1.969 2.458l-2.529-1.22a9.889 9.889 0 0 1 2.759-3.457 9.83 9.83 0 0 1 8.365-1.86l1.28-5.446c-4.588-1.08-9.415 0-13.103 2.928A15.5 15.5 0 0 0 0 79.751h36.25Zm0 0"/><path fill="#151515" d="M39.378 79.402V58.013h9.006c1.469 0 2.738.25 3.787.74 1.05.51 1.84 1.22 2.4 2.159.559.93.829 2.039.829 3.358 0 .95-.26 1.839-.78 2.698-.51.85-1.36 1.55-2.538 2.13v-2.18c1.129.44 1.998.96 2.598 1.58.61.61 1.04 1.279 1.27 1.998.23.73.34 1.49.34 2.25 0 2.108-.7 3.747-2.1 4.907-1.379 1.159-3.318 1.749-5.806 1.749zm4.438-3.878h5.087c.9 0 1.61-.25 2.14-.78.539-.51.799-1.18.799-1.999 0-.84-.26-1.519-.8-2.049-.53-.51-1.24-.77-2.139-.76h-5.087zm0-9.475h4.887c.69 0 1.23-.19 1.63-.57.42-.4.63-.93.63-1.589 0-.64-.21-1.16-.63-1.54-.4-.399-.94-.599-1.63-.599h-4.887zm15.562 13.353V63.73h4.277v15.672zm0-17.081v-4.308h4.277v4.308zm15.411 17.43c-1.55 0-2.958-.36-4.238-1.059a8.367 8.367 0 0 1-3.028-2.908c-.75-1.24-1.12-2.649-1.12-4.218 0-1.59.37-2.998 1.12-4.218a8.366 8.366 0 0 1 3.028-2.908c1.28-.7 2.689-1.06 4.238-1.06 1.55 0 2.948.36 4.198 1.06a8.031 8.031 0 0 1 3.018 2.908c.76 1.22 1.14 2.629 1.14 4.218 0 1.569-.38 2.978-1.14 4.218a8.032 8.032 0 0 1-3.018 2.908c-1.25.7-2.659 1.06-4.198 1.06zm0-3.877c.79 0 1.47-.18 2.029-.55a3.76 3.76 0 0 0 1.38-1.52c.349-.649.509-1.399.509-2.238 0-.84-.16-1.58-.51-2.209a3.678 3.678 0 0 0-1.379-1.52c-.56-.389-1.24-.579-2.029-.579-.79 0-1.47.19-2.059.58-.6.37-1.08.89-1.399 1.52-.33.629-.49 1.368-.49 2.208 0 .84.16 1.589.49 2.239.32.63.8 1.149 1.4 1.519.589.37 1.279.55 2.058.55zm11.094 3.528V63.73h4.008v3.818l-.42-.63c.22-1.209.77-2.098 1.66-2.678.869-.58 1.908-.86 3.137-.86 1.3 0 2.44.33 3.399 1.01.999.65 1.619 1.529 1.869 2.638l-1.23.12c.51-1.289 1.25-2.238 2.209-2.848.95-.62 2.059-.92 3.338-.92 1.12 0 2.119.25 2.979.75.87.49 1.579 1.22 2.058 2.089.5.89.74 1.919.74 3.108v10.075h-4.288v-9.155c0-.62-.12-1.14-.35-1.58-.19-.43-.51-.79-.909-1.039-.41-.24-.89-.37-1.46-.37-.549 0-1.039.13-1.448.37a2.599 2.599 0 0 0-.96 1.04c-.21.44-.31.959-.31 1.579v9.155h-4.297v-9.155c0-.62-.11-1.14-.33-1.58-.2-.43-.52-.79-.92-1.039-.4-.24-.89-.37-1.459-.37-.56 0-1.04.13-1.459.37-.4.25-.73.61-.94 1.04-.21.44-.32.959-.32 1.579v9.155zm34.671.35c-1.649 0-3.088-.37-4.318-1.09a7.742 7.742 0 0 1-2.828-2.988c-.66-1.24-1-2.629-1-4.138 0-1.57.34-2.968 1.03-4.188a8 8 0 0 1 2.838-2.908c1.18-.7 2.509-1.06 3.998-1.06 1.24 0 2.339.2 3.298.6.95.39 1.75.93 2.4 1.65.669.709 1.188 1.548 1.518 2.458.34.93.51 1.919.51 3.018 0 .31-.02.61-.06.92-.01.25-.05.5-.14.74h-11.694v-3.16h9.265l-2.028 1.5c.18-.82.18-1.549-.04-2.179-.21-.65-.57-1.16-1.11-1.519-.51-.39-1.15-.58-1.919-.58-.74 0-1.379.18-1.919.55-.53.35-.93.9-1.19 1.6-.279.719-.379 1.578-.319 2.588-.08.89.02 1.649.32 2.319.26.65.72 1.199 1.31 1.589.579.36 1.308.54 2.148.54.75 0 1.4-.15 1.939-.46.54-.29.99-.72 1.29-1.26l3.437 1.64c-.31.77-.82 1.459-1.459 2.008-.68.59-1.469 1.05-2.329 1.35-.89.3-1.879.46-2.948.46zm0 0"/></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
icons/biome/biome-original.svg
Executable file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#60a5fa" d="M64 8.584 35.487 57.967a64.358 64.358 0 0 1 33.735-1.17l9.635 2.27-9.054 38.429-9.665-2.261c-11.855-2.802-23.23 3.421-28.053 13.356l-8.924-4.312C29.964 90.222 46 81.719 62.429 85.6l4.522-19.159A54.419 54.419 0 0 0 20.67 76.736 54.469 54.469 0 0 0 0 119.416h128zm0 0"/></svg>
|
After Width: | Height: | Size: 361 B |
1
icons/biome/biome-plain-wordmark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#60a5fa" d="M18.12 48.249 10.055 62.28a18.102 18.102 0 0 1 9.544-.32l2.739.64-2.569 10.924-2.728-.65c-2.1-.5-4.308 0-5.987 1.34a7.07 7.07 0 0 0-1.969 2.468l-2.529-1.23a9.855 9.855 0 0 1 2.759-3.447 9.835 9.835 0 0 1 8.365-1.87l1.28-5.436a15.362 15.362 0 0 0-13.103 2.918A15.5 15.5 0 0 0 0 79.751h36.25Zm21.258 31.153V58.013h9.006c1.469 0 2.738.25 3.787.74 1.05.51 1.84 1.22 2.4 2.159.559.93.829 2.039.829 3.358 0 .95-.26 1.839-.78 2.698-.51.85-1.36 1.55-2.538 2.13v-2.18c1.129.44 1.998.96 2.598 1.58.61.61 1.04 1.279 1.27 2.008.23.72.34 1.48.34 2.24 0 2.108-.7 3.747-2.1 4.907-1.379 1.169-3.318 1.749-5.806 1.749zm4.438-3.878h5.087c.9 0 1.61-.25 2.14-.78.539-.51.799-1.18.799-1.999 0-.84-.26-1.519-.8-2.039-.53-.52-1.24-.78-2.139-.77h-5.087zm0-9.465h4.887c.69 0 1.23-.2 1.63-.58.42-.4.63-.93.63-1.579 0-.64-.21-1.17-.63-1.54-.4-.409-.94-.609-1.63-.609h-4.887zm15.562 13.343V63.73h4.277v15.672zm0-17.071v-4.318h4.277v4.318zm15.411 17.42c-1.55 0-2.958-.36-4.238-1.059a8.285 8.285 0 0 1-3.028-2.908c-.75-1.23-1.12-2.649-1.12-4.208 0-1.6.37-2.999 1.12-4.228a8.366 8.366 0 0 1 3.028-2.908c1.28-.7 2.689-1.06 4.238-1.06 1.55 0 2.948.36 4.198 1.06a8.031 8.031 0 0 1 3.018 2.908c.76 1.23 1.14 2.629 1.14 4.228 0 1.559-.38 2.978-1.14 4.208a8.032 8.032 0 0 1-3.018 2.908c-1.25.7-2.659 1.06-4.198 1.06zm0-3.877c.79 0 1.47-.18 2.029-.55.59-.36 1.05-.87 1.38-1.52.349-.649.509-1.389.509-2.228 0-.85-.16-1.59-.51-2.219a3.74 3.74 0 0 0-1.379-1.52c-.56-.389-1.24-.569-2.029-.569-.79 0-1.47.18-2.059.57-.6.37-1.08.9-1.399 1.52-.33.629-.49 1.368-.49 2.218 0 .84.16 1.579.49 2.229.32.63.8 1.159 1.4 1.519.589.37 1.279.55 2.058.55zm11.094 3.528V63.73h4.008v3.818l-.42-.63c.22-1.209.77-2.098 1.66-2.678.869-.58 1.908-.86 3.137-.86 1.3 0 2.44.34 3.399 1.01.999.65 1.619 1.529 1.869 2.648l-1.23.11c.51-1.289 1.25-2.238 2.209-2.838.95-.62 2.059-.93 3.338-.93 1.12 0 2.12.25 2.979.75a5.33 5.33 0 0 1 2.058 2.099c.5.88.74 1.919.74 3.098v10.075h-4.288v-9.155c0-.61-.12-1.14-.35-1.58-.19-.43-.51-.79-.909-1.039-.41-.24-.89-.36-1.46-.36-.549 0-1.039.12-1.448.36-.41.25-.75.61-.96 1.04-.21.44-.31.969-.31 1.579v9.155h-4.297v-9.155c0-.61-.11-1.14-.33-1.58-.2-.43-.52-.79-.92-1.039-.4-.24-.89-.36-1.459-.36-.56 0-1.04.12-1.459.36-.41.25-.74.61-.94 1.04-.21.44-.32.969-.32 1.579v9.155zm34.671.35c-1.649 0-3.088-.36-4.318-1.09a7.742 7.742 0 0 1-2.828-2.988c-.66-1.24-1-2.619-1-4.128 0-1.58.34-2.969 1.03-4.198a8 8 0 0 1 2.838-2.908c1.18-.7 2.509-1.06 3.998-1.06 1.24 0 2.339.2 3.298.6.95.39 1.75.93 2.4 1.65.669.709 1.188 1.548 1.518 2.458.34.93.51 1.919.51 3.018 0 .31-.02.61-.06.92-.01.25-.05.5-.14.74h-11.694v-3.16h9.265l-2.028 1.5c.18-.82.18-1.549-.04-2.179-.21-.65-.57-1.16-1.11-1.519-.51-.39-1.15-.57-1.919-.57-.74 0-1.379.17-1.919.54-.53.36-.93.9-1.19 1.61-.279.709-.379 1.568-.319 2.588-.08.88.02 1.639.32 2.319.26.65.72 1.189 1.31 1.579.579.37 1.308.54 2.148.54.75 0 1.4-.15 1.939-.46.54-.29.99-.72 1.29-1.25l3.437 1.63c-.31.779-.81 1.469-1.459 2.008-.68.59-1.469 1.05-2.329 1.35-.89.3-1.879.46-2.948.46zm0 0"/></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
icons/blazor/blazor-line.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M119.926 6.074c-.59 0-1.176.277-1.512.824l-.031.055-.027.063c-5.445 12.398-16.344 21.508-29.449 24.773 3.363-5.52 5.473-11.715 6.082-18.16v-.012a1.58 1.58 0 0 0-.937-1.562c-.613-.273-1.34-.121-1.789.375A40.58 40.58 0 0 1 62.32 25.645H47.547c-10.094.031-19.91 3.273-28.039 9.258h-.004v.004C7.25 44.059.027 58.453.016 73.742a46.91 46.91 0 0 0 47.734 48.113 66.33 66.33 0 0 0 51.602-21.125l.059-.066.047-.07a1.24 1.24 0 0 0-.051-1.41c-.152-.195-.379-.371-.68-.434s-.645.008-.883.164l.004-.004c-13.113 8.473-28.371 13.027-43.98 13.129h-.016c-3.191.066-6.023-.187-6.023-.187l-.031-.004h-.035c-20.641-.52-37.16-17.258-37.414-37.906v-.004c-.074-19.402 14.488-35.719 33.777-37.828s37.039 10.668 41.164 29.625v.012l.004.012a40.61 40.61 0 0 1 1.113 9.906v.059A14.28 14.28 0 0 1 73.184 90.66c-4.191.195-8.203-1.711-10.699-5.086l-1.148-1.895-1.187 1.77a18.17 18.17 0 0 1-22.055 3.91C30.699 85.426 26.945 76.969 29 68.852s9.375-13.781 17.75-13.723h11.008c3.891.031 7.004 3.18 7.004 7.07v13.129c0 2.52.609 4.813 1.984 6.508s3.523 2.707 6.215 2.707h.027c2.617-.07 4.68-1.473 5.934-3.488s1.793-4.613 1.727-7.344c-.371-17.562-14.797-31.59-32.363-31.465S16.492 56.602 16.363 74.164v.051a33.08 33.08 0 0 0 27.512 31.18h.004l.004.004a54.47 54.47 0 0 0 10.641.648c36.18-.258 66.891-26.637 72.602-62.363v-.02c.012-.051.008-.102.016-.156l-1.953-.152c-5.555 34.805-35.441 60.48-70.684 60.727h-.031c-3.437.129-6.879-.078-10.27-.625-14.457-2.453-25.227-14.648-25.871-29.297.129-16.504 13.457-29.828 29.965-29.949 16.516-.117 30.039 13.031 30.387 29.543v.004c.059 2.434-.449 4.684-1.43 6.258s-2.336 2.5-4.309 2.559c-2.215-.004-3.672-.742-4.672-1.977s-1.547-3.066-1.547-5.27V62.199c.004-4.949-4.008-8.996-8.953-9.035h-11.02c-9.266-.059-17.383 6.223-19.656 15.203a20.15 20.15 0 0 0 10.07 22.727c8.023 4.262 17.875 2.586 24.082-3.992 2.902 3.656 7.355 5.746 12.035 5.523h.023c8.785-.641 15.477-8.187 15.059-16.984.035-3.48-.352-6.945-1.16-10.324l-.004-.004C82.871 45.391 64.18 31.938 43.91 34.156S8.297 53.555 8.379 73.949v.008c.266 21.684 17.641 39.297 39.316 39.855.039.004 2.898.262 6.188.191 14.016-.09 27.66-3.879 39.883-10.609-12.52 11.27-29 17.281-45.98 16.5l-.035-.004-.027.004A44.98 44.98 0 0 1 15 106.609 44.94 44.94 0 0 1 1.98 73.785v-.027c.008-14.68 6.934-28.488 18.691-37.273l.004-.004c7.793-5.73 17.203-8.84 26.875-8.867h14.773c11.559-.008 22.543-4.805 30.543-13.105-.742 6.102-2.801 11.965-6.133 17.141l-.023.031-.016.035c-.289.535-.242 1.195.141 1.688a1.55 1.55 0 0 0 1.586.57c13.953-3.152 25.586-12.676 31.484-25.684 5.527 10.797 7.406 23.098 5.285 35.051l1.949.168a57.57 57.57 0 0 0-5.672-36.555l-.031-.055c-.332-.547-.922-.824-1.512-.824zm-31.5 26.57l-.039.07c.012-.023.023-.051.039-.07zM57.383 60.809l-10.668.023c-6.84 0-12.414 5.566-12.414 12.414s5.574 12.41 12.418 12.414 12.414-5.57 12.414-12.414V62.535c-.043-.926-.801-1.684-1.727-1.727zm-.215 1.965v10.473a10.44 10.44 0 0 1-10.449 10.449c-5.781-.004-10.449-4.668-10.453-10.449a10.44 10.44 0 0 1 10.453-10.449zm0 0" fill="#5c2d91"/></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
icons/blazor/blazor-original.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#5c2d91" d="M127.352 43.199c-5.727 35.891-36.562 62.379-72.902 62.633-3.566.137-7.137-.082-10.656-.648-15.18-2.574-26.496-15.402-27.16-30.785.125-17.336 14.148-31.359 31.488-31.484S79.68 56.617 80.047 73.953c.129 5.254-2.145 9.871-6.824 10-5 0-7.344-3.57-7.344-8.379V62.215c.004-4.496-3.621-8.156-8.117-8.191H46.559c-8.977-.062-16.832 6.012-19.035 14.715s1.824 17.781 9.75 21.996a19.5 19.5 0 0 0 23.688-4.223l.391-.582.391.645c2.738 3.719 7.152 5.82 11.762 5.602A15.54 15.54 0 0 0 87.902 75.93c.039-3.48-.348-6.949-1.16-10.328a39.57 39.57 0 0 0-42.969-30.926C23.645 36.879 8.43 53.922 8.512 74.168c.262 21.543 17.512 39.023 39.047 39.566 0 0 2.93.266 6.242.195a84.49 84.49 0 0 0 45.289-13.516c.191-.125.383.129.254.328a66.49 66.49 0 0 1-51.785 21.18c-12.75.23-25.039-4.762-34.02-13.812S-.332 86.723 0 73.977a48.37 48.37 0 0 1 19.426-38.73 47.38 47.38 0 0 1 27.941-9.223h15.031a42.29 42.29 0 0 0 31.203-13.777.59.59 0 0 1 .68-.141c.238.102.379.344.359.598-.637 6.758-2.887 13.262-6.562 18.969-.109.203-.09.453.051.633a.58.58 0 0 0 .598.215 45.45 45.45 0 0 0 31.602-26.055.8.8 0 0 1 1.367 0 57.58 57.58 0 0 1 5.656 36.734zM46.52 61.824c-6.422 0-11.633 5.207-11.633 11.633A11.64 11.64 0 0 0 46.52 85.09c6.426 0 11.633-5.211 11.633-11.633V62.602a.84.84 0 0 0-.801-.801zm0 0"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
icons/chakraui/chakraui-original-wordmark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="prefix__a" x1="64" x2="64" y1="0" y2="128" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.25859 0 0 .25859 0 47.45)"><stop offset="0" stop-color="#7acbd4"/><stop offset="1" stop-color="#29c6b7"/></linearGradient></defs><path d="M58.382 52.674v22.192h3.556V66.1c.061-1.9 1.134-3.372 3.096-3.372 2.238 0 3.065 1.471 3.065 3.31v8.828h3.556v-9.44c0-3.28-1.778-5.917-5.456-5.917-1.564 0-3.25.552-4.261 1.87v-8.705zm31.463 0v22.192h3.525v-4.168l1.84-1.931 4.383 6.1h4.352l-6.253-8.614 6.13-6.314h-4.72l-5.732 6.038V52.674zm-40.352 6.805c-4.292 0-7.633 3.31-7.633 7.908 0 4.537 3.341 7.94 7.725 7.94 3.923 0 6.16-2.545 6.866-4.875l-3.127-1.134c-.337 1.134-1.41 2.759-3.74 2.759-2.237 0-4.168-1.686-4.168-4.69 0-3.004 1.931-4.628 4.107-4.628 2.269 0 3.28 1.471 3.617 2.789l3.188-1.165c-.613-2.39-2.82-4.904-6.835-4.904zm30.935 0c-3.678 0-6.008 2.299-6.284 4.873l3.25.736c.153-1.502 1.195-2.697 3.065-2.697 1.961 0 2.82 1.011 2.82 2.268 0 .521-.245.95-1.104 1.073l-3.831.582c-2.544.368-4.506 1.84-4.506 4.506 0 2.36 1.93 4.506 5.057 4.506 2.422 0 3.893-1.226 4.598-2.36 0 1.195.123 1.808.154 1.9h3.31c-.03-.153-.184-1.042-.184-2.39v-7.419c0-2.973-1.747-5.578-6.345-5.578zm41.043 0c-3.678 0-6.008 2.299-6.284 4.873l3.25.736c.153-1.502 1.195-2.697 3.065-2.697 1.961 0 2.82 1.011 2.82 2.268 0 .521-.246.95-1.104 1.073l-3.831.582c-2.545.368-4.506 1.84-4.506 4.506 0 2.36 1.93 4.506 5.057 4.506 2.422 0 3.893-1.226 4.598-2.36 0 1.195.123 1.808.153 1.9H128c-.03-.153-.184-1.042-.184-2.39v-7.419c0-2.973-1.747-5.578-6.345-5.578zm-8.393.276c-1.962 0-3.617.95-4.322 2.574v-2.39h-3.464v14.927h3.556v-7.11c0-2.79 1.257-4.384 4.016-4.384.367 0 .766.03 1.164.092v-3.617a5.087 5.087 0 00-.95-.092zM83.278 68v.674c0 2.912-1.716 3.863-3.708 3.863-1.41 0-2.177-.92-2.177-1.931 0-1.227.89-1.84 1.993-2.023zm41.044 0v.674c0 2.912-1.717 3.863-3.71 3.863-1.41 0-2.175-.92-2.175-1.931 0-1.227.888-1.84 1.992-2.023z" fill="#374152"/><circle cx="16.55" cy="64" r="16.55" fill="url(#prefix__a)"/><path fill="#fff" d="M24.194 62.42a.236.236 0 00-.174-.398h-7.245c-.443 0-.37-.238-.212-.528.157-.292 4.165-7.602 4.165-7.602a.28.28 0 00.029-.122.28.28 0 00-.476-.199L8.921 64.892a.248.248 0 00.17.43h7.75c.487 0 .314.279.195.442-.12.162-5.987 8.274-5.987 8.274a.292.292 0 00.233.468c.08 0 .153-.03.204-.082.052-.052 12.705-11.994 12.705-11.994l.003-.002.005-.005z"/></svg>
|
After Width: | Height: | Size: 2.4 KiB |
1
icons/chakraui/chakraui-original.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="64" x2="64" y1="0" y2="128" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#7acbd4"/><stop offset="1" stop-color="#29c6b7"/></linearGradient></defs><circle cx="64" cy="64" r="64" fill="url(#a)"/><path fill="#fff" d="M93.56 57.89a.913.913 0 0 0-.67-1.54H64.87c-1.71 0-1.43-.92-.82-2.04.61-1.13 16.11-29.4 16.11-29.4.07-.15.11-.3.11-.47a1.082 1.082 0 0 0-1.84-.77S34.5 67.45 34.5 67.45c-.19.18-.3.42-.3.7 0 .53.43.96.96.96h29.97c1.88 0 1.21 1.08.75 1.71-.46.63-23.15 32-23.15 32a1.129 1.129 0 0 0 .9 1.81c.31 0 .59-.12.79-.32s49.13-46.38 49.13-46.38l.01-.01.02-.02Z"/></svg>
|
After Width: | Height: | Size: 681 B |
1
icons/chakraui/chakraui-plain-wordmark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="M16.549 47.451A16.55 16.55 0 000 64a16.55 16.55 0 0016.549 16.549A16.55 16.55 0 0033.099 64a16.55 16.55 0 00-16.55-16.549zm41.834 5.223v22.193h3.554V66.1c.062-1.9 1.134-3.371 3.096-3.371 2.238 0 3.067 1.47 3.067 3.31v8.828h3.554v-9.441c0-3.28-1.777-5.916-5.455-5.916-1.563 0-3.25.55-4.261 1.869v-8.705h-3.555zm31.463 0v22.193h3.525v-4.17l1.838-1.931 4.383 6.101h4.353l-6.254-8.613 6.131-6.315h-4.72l-5.73 6.038V52.674h-3.526zm-69.367.816a.28.28 0 01.279.28.287.287 0 01-.03.123s-4.008 7.309-4.166 7.601c-.157.29-.229.527.213.527h7.245a.236.236 0 01.173.399l.006.002-.006.006-.002.002S11.538 74.372 11.486 74.424a.288.288 0 01-.205.082.292.292 0 01-.232-.467l5.986-8.275c.12-.163.293-.442-.193-.442h-7.75a.25.25 0 01-.17-.43l11.36-11.322a.28.28 0 01.197-.08zm29.013 5.989c-4.291 0-7.63 3.31-7.63 7.908 0 4.536 3.339 7.94 7.722 7.94 3.923 0 6.162-2.544 6.867-4.874l-3.127-1.135c-.337 1.134-1.41 2.758-3.74 2.758-2.238 0-4.168-1.685-4.168-4.69 0-3.003 1.931-4.628 4.107-4.628 2.269 0 3.28 1.473 3.618 2.79l3.187-1.165c-.613-2.391-2.82-4.904-6.836-4.904zm30.936 0c-3.679 0-6.008 2.298-6.283 4.873l3.248.736c.153-1.502 1.196-2.697 3.066-2.697 1.962 0 2.82 1.01 2.82 2.267 0 .521-.245.952-1.103 1.074l-3.832.582c-2.544.368-4.506 1.84-4.506 4.506 0 2.36 1.93 4.506 5.057 4.506 2.421 0 3.894-1.225 4.6-2.36 0 1.196.12 1.81.151 1.901h3.311c-.03-.153-.184-1.044-.184-2.392v-7.418c0-2.974-1.747-5.578-6.345-5.578zm41.043 0c-3.679 0-6.008 2.298-6.284 4.873l3.249.736c.153-1.502 1.196-2.697 3.066-2.697 1.962 0 2.82 1.01 2.82 2.267 0 .521-.245.952-1.103 1.074l-3.832.582c-2.544.368-4.506 1.84-4.506 4.506 0 2.36 1.932 4.506 5.058 4.506 2.422 0 3.893-1.225 4.598-2.36 0 1.196.122 1.81.152 1.901H128c-.03-.153-.184-1.044-.184-2.392v-7.418c0-2.974-1.747-5.578-6.345-5.578zm-8.393.275c-1.962 0-3.617.952-4.322 2.576v-2.39h-3.463v14.927h3.555v-7.111c0-2.79 1.257-4.385 4.015-4.385.368 0 .766.03 1.164.092v-3.615a5.036 5.036 0 00-.949-.094zM83.28 68v.674c0 2.912-1.716 3.863-3.709 3.863-1.41 0-2.177-.92-2.177-1.932 0-1.226.89-1.84 1.994-2.023L83.279 68zm41.043 0v.674c0 2.912-1.716 3.863-3.709 3.863-1.41 0-2.177-.92-2.177-1.932 0-1.226.89-1.84 1.994-2.023l3.892-.582z"/></svg>
|
After Width: | Height: | Size: 2.2 KiB |
1
icons/chakraui/chakraui-plain.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M64 0C28.65 0 0 28.65 0 64s28.65 64 64 64 64-28.65 64-64S99.35 0 64 0Zm29.56 57.9-.02.02-.01.01-49.13 46.38c-.2.2-.48.32-.79.32a1.129 1.129 0 0 1-.9-1.81s22.69-31.38 23.15-32c.46-.63 1.13-1.71-.75-1.71H35.14a.96.96 0 0 1-.96-.96c0-.27.12-.52.3-.69s43.94-43.77 43.94-43.77a1.082 1.082 0 0 1 1.84.77c0 .17-.04.32-.11.46s-15.5 28.27-16.11 29.4c-.61 1.13-.89 2.04.82 2.04h28.02a.913.913 0 0 1 .67 1.54Z"/></svg>
|
After Width: | Height: | Size: 479 B |
BIN
icons/chakraui/chakraui.eps
Normal file
1
icons/codepen/codepen-line-wordmark.svg
Normal file
After Width: | Height: | Size: 5.9 KiB |
1
icons/codepen/codepen-line.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M64.006 0c-1.124-.001-2.248.324-3.314.98l-.008.007L2.633 39.694C.995 40.786 0 42.701 0 44.646v38.702c0 1.946.995 3.862 2.633 4.954l58.05 38.712.009.004c2.114 1.303 4.483 1.315 6.616.002l.008-.006 58.051-38.712C127.005 87.21 128 85.295 128 83.35V44.646c0-1.946-.995-3.86-2.633-4.952L67.317.986l-.009-.003C66.251.33 65.13 0 64.006 0Zm0 .977c.928 0 1.854.287 2.777.855h.002l58.028 38.695c1.338.892 2.187 2.52 2.187 4.12V83.35c0 1.598-.849 3.227-2.187 4.12l-58.028 38.698h-.002c-1.861 1.145-3.722 1.136-5.566 0h-.002L3.187 87.47C1.85 86.577 1 84.947 1 83.348V44.646c0-1.598.849-3.227 2.187-4.12L61.215 1.832h.002c.93-.572 1.86-.856 2.789-.855zm-4.963 14.24-.777.517-43.359 28.912 19.964 13.361 24.172-16.142Zm10.22.203-.252.506-.054.107v25.832l24.172 16.142 19.962-13.363Zm-11.22 1.664V41.33l-23.17 15.475-18.165-12.156Zm11.914 0 41.333 27.562-18.163 12.158-23.17-15.475ZM64 50.494 43.825 63.997 64 77.5l.277-.186 19.898-13.316zm0 1.204 18.376 12.3L64 76.297l-18.376-12.3Zm-53.087 2.219v20.16l15.078-10.08Zm106.174.002-15.08 10.077 15.08 10.082v-.936Zm-105.174 1.87 12.279 8.207-12.279 8.21Zm104.174.001v16.417l-12.28-8.209zM34.87 69.99 14.907 83.35l44.134 29.428.002-.934V86.13Zm58.258 0L68.957 86.13v26.023l.275.138.262.131 43.599-29.072zm-58.256 1.2 23.17 15.475v24.245L16.708 83.348Zm58.254.003 18.165 12.155-41.335 27.564V86.665Z"/></svg>
|
After Width: | Height: | Size: 1.4 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 128 128"><path fill="#231F20" d="M17.956 59.132c1.182 0 2.266.427 3.107 1.134l1.145-1.365a6.587 6.587 0 00-4.252-1.551c-3.65 0-6.62 2.97-6.62 6.62 0 3.649 2.97 6.618 6.62 6.618a6.588 6.588 0 004.252-1.551l-1.145-1.365a4.816 4.816 0 01-3.107 1.134 4.843 4.843 0 01-4.838-4.837 4.843 4.843 0 014.838-4.837zm36.642 9.292h-2.673v-8.91h2.673a4.46 4.46 0 014.456 4.455 4.46 4.46 0 01-4.456 4.455zm0-10.692h-3.564a.89.89 0 00-.89.89v10.693c0 .492.398.892.89.892h3.564a6.244 6.244 0 006.238-6.238 6.244 6.244 0 00-6.238-6.237zm11.062.891v10.693c0 .492.4.89.892.89h7.425v-1.781h-6.534V64.86h4.158v-1.782h-4.158v-3.564h6.534v-1.782h-7.425a.891.891 0 00-.891.89zm26.974 0v10.693c0 .492.399.89.89.89h7.426v-1.781h-6.534V64.86h4.158v-1.782h-4.158v-3.564h6.534v-1.782h-7.425a.891.891 0 00-.891.89zm-8.481 4.455h-2.97v-3.564h2.97c.983 0 1.782.8 1.782 1.782 0 .983-.799 1.782-1.782 1.782zm0-5.346h-3.861a.89.89 0 00-.89.89v11.585h1.781V64.86h2.97a3.568 3.568 0 003.565-3.564 3.568 3.568 0 00-3.565-3.564zm30.729 0v9.122l-7.335-8.802a.89.89 0 00-1.576.57v11.585h1.782v-9.123l7.335 8.802a.893.893 0 001.576-.57V57.732h-1.782zm-74.934 5.254l-3.541-2.368v-3.81l6.4 4.266-2.859 1.912zm1.47.983l2.043-1.367v2.734l-2.044-1.367zm-5.011 3.351l3.541-2.368 2.859 1.912-6.4 4.267v-3.81zm-5.175-2.368l3.541 2.368v3.81l-6.4-4.266 2.858-1.912zm-1.47-.983l-2.043 1.367v-2.734l2.043 1.367zm5.011-3.351l-3.542 2.368-2.858-1.912 6.4-4.267v3.81zm.817 5.283L32.7 63.97l2.89-1.932 2.89 1.932-2.89 1.932zm9.49-4.97c-.004-.023-.007-.046-.014-.069l-.012-.04c-.007-.02-.013-.04-.021-.059l-.019-.04a.729.729 0 00-.027-.054l-.024-.038a.802.802 0 00-.182-.2l-.037-.027-.013-.01-8.688-5.792a.816.816 0 00-.906 0l-8.688 5.792-.014.01-.037.028a.907.907 0 00-.12.115.997.997 0 00-.062.084l-.023.038a.578.578 0 00-.028.055c-.006.013-.013.026-.018.04a.884.884 0 00-.021.059c-.005.013-.01.026-.013.04a.909.909 0 00-.014.068l-.007.035a.81.81 0 00-.007.107v5.792c0 .036.003.071.007.107l.007.035a.952.952 0 00.014.068l.013.04.021.06c.005.014.012.026.018.04a.609.609 0 00.051.091.776.776 0 00.182.2c.012.01.024.02.037.028l.014.01 8.688 5.792a.814.814 0 00.906 0l8.688-5.792.013-.01.037-.028a.826.826 0 00.047-.039l.032-.031a.733.733 0 00.154-.222l.019-.039a.72.72 0 00.02-.06l.014-.04a.744.744 0 00.014-.068c.002-.012.005-.023.006-.035a.822.822 0 00.008-.107v-5.792a.827.827 0 00-.008-.107l-.006-.035z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M30.116 52.32c-.189 0-.378.056-.561.17l-10.677 7.117a1.02 1.02 0 0 0-.443.834v7.118c0 .326.17.652.443.834l10.676 7.119c.365.224.754.226 1.121 0l10.677-7.12a1.02 1.02 0 0 0 .443-.833v-7.117c0-.326-.17-.651-.443-.834L30.676 52.49a1.063 1.063 0 0 0-.56-.17zm-1.005 2.88v4.68l-4.354 2.908-3.507-2.347zm2.008 0 7.86 5.24-3.506 2.348-4.354-2.907zm17.399.944c-.614 0-1.112.499-1.113 1.113v13.55c0 .614.498 1.112 1.113 1.112h4.837c4.426 0 7.885-3.458 7.885-7.884v-.006c0-4.426-3.458-7.885-7.885-7.885zm67.688 0c-.55.026-1.072.453-1.073 1.113v13.55a1.113 1.113 0 0 0 2.225 0V60.474l8.655 11.02c.652.83 1.986.369 1.987-.687v-13.55a1.113 1.113 0 0 0-2.225 0v10.332l-8.655-11.02a1.083 1.083 0 0 0-.915-.424zm-108.322.005C3.459 56.149 0 59.609 0 64.035s3.458 7.884 7.885 7.884c2.231 0 4.16-.908 5.592-2.23a1.113 1.113 0 1 0-1.51-1.635c-1.083 1-2.444 1.64-4.083 1.64-3.313 0-5.66-2.346-5.66-5.66 0-3.313 2.347-5.66 5.66-5.66 1.676 0 2.995.553 4.051 1.61a1.113 1.113 0 0 0 1.573-1.574c-1.459-1.46-3.429-2.26-5.623-2.26zm59.016 0c-.614 0-1.112.498-1.113 1.113v13.55c0 .614.498 1.112 1.113 1.112h8.707a1.113 1.113 0 0 0 0-2.225h-7.595v-4.547h4.692a1.113 1.113 0 1 0 0-2.225h-4.692v-4.552h7.595a1.113 1.113 0 0 0 0-2.226zm16.446 0c-.614 0-1.112.498-1.112 1.113v13.55a1.113 1.113 0 0 0 2.226 0v-4.698h4.687c2.735 0 4.982-2.247 4.982-4.982 0-2.736-2.247-4.983-4.982-4.983zm16.453 0c-.614 0-1.112.498-1.112 1.113v6.764a.348.348 0 0 0-.006.014l.006.013v6.759c0 .614.498 1.112 1.112 1.112h8.697a1.113 1.113 0 0 0 0-2.225h-7.585v-4.547h4.683a1.113 1.113 0 0 0 0-2.225h-4.683v-4.552h7.595a1.113 1.113 0 0 0 0-2.226zm-50.169 2.22h3.724c3.314 0 5.66 2.346 5.66 5.66v.006c0 3.313-2.346 5.659-5.66 5.659H49.63Zm34.829.007h4.687a2.758 2.758 0 0 1 0 5.514H84.46Zm-54.345 3.252L33.66 64l-3.546 2.372L26.568 64zm-9.673.69L22.957 64l-2.516 1.68zm19.346 0v3.364L37.271 64zm-15.031 2.895 4.354 2.907v4.68l-7.86-5.24zm10.716 0 3.507 2.346-7.861 5.24v-4.68z"/></svg>
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.0 KiB |
1
icons/codepen/codepen-original.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="m125.571 39.926-58.5-39c-1.997-1.23-4.128-1.24-6.142 0l-58.5 39C.929 40.926 0 42.712 0 44.497v39c0 1.786.929 3.572 2.429 4.571l58.5 39.006c1.996 1.229 4.128 1.24 6.142 0l58.5-39.006c1.5-.999 2.429-2.785 2.429-4.57v-39c0-1.786-.929-3.572-2.429-4.572zm-56.07-24.144 43.07 28.715-19.214 12.858L69.5 41.425V15.784zm-11.001 0v25.644L34.642 57.354 15.428 44.498 58.5 15.782zm-47.5 39 13.786 9.215L11 73.212v-18.43zm47.5 57.43L15.428 83.497 34.642 70.64 58.5 86.569v25.643zM64 76.997l-19.428-13 19.428-13 19.428 13-19.428 13zm5.5 35.215V86.569L93.357 70.64l19.214 12.857-43.07 28.715zm47.5-39-13.786-9.215L117 54.783v18.429z"/></svg>
|
After Width: | Height: | Size: 698 B |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 128 128" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M125.571 39.926l-58.5-39c-1.997-1.23-4.128-1.24-6.142 0l-58.5 39C.929 40.926 0 42.712 0 44.497v39c0 1.786.929 3.572 2.429 4.571l58.5 39.006c1.996 1.229 4.128 1.24 6.142 0l58.5-39.006c1.5-.999 2.429-2.785 2.429-4.57v-39c0-1.786-.929-3.572-2.429-4.572zm-56.07-24.144l43.07 28.715-19.214 12.858L69.5 41.425V15.784zm-11.001 0v25.644L34.642 57.354 15.428 44.498 58.5 15.782zm-47.5 39l13.786 9.215L11 73.212v-18.43zm47.5 57.43L15.428 83.497 34.642 70.64 58.5 86.569v25.643zM64 76.997l-19.428-13 19.428-13 19.428 13-19.428 13zm5.5 35.215V86.569L93.357 70.64l19.214 12.857-43.07 28.715zm47.5-39l-13.786-9.215L117 54.783v18.429z" fill="#000"/></svg>
|
Before Width: | Height: | Size: 723 B |
@ -1,95 +0,0 @@
|
||||
%!PS-Adobe-3.0 EPSF-3.0
|
||||
%%Creator: cairo 1.16.0 (https://cairographics.org)
|
||||
%%CreationDate: Wed Aug 26 18:56:16 2020
|
||||
%%Pages: 1
|
||||
%%DocumentData: Clean7Bit
|
||||
%%LanguageLevel: 2
|
||||
%%BoundingBox: 0 0 345 345
|
||||
%%EndComments
|
||||
%%BeginProlog
|
||||
50 dict begin
|
||||
/q { gsave } bind def
|
||||
/Q { grestore } bind def
|
||||
/cm { 6 array astore concat } bind def
|
||||
/w { setlinewidth } bind def
|
||||
/J { setlinecap } bind def
|
||||
/j { setlinejoin } bind def
|
||||
/M { setmiterlimit } bind def
|
||||
/d { setdash } bind def
|
||||
/m { moveto } bind def
|
||||
/l { lineto } bind def
|
||||
/c { curveto } bind def
|
||||
/h { closepath } bind def
|
||||
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
|
||||
0 exch rlineto 0 rlineto closepath } bind def
|
||||
/S { stroke } bind def
|
||||
/f { fill } bind def
|
||||
/f* { eofill } bind def
|
||||
/n { newpath } bind def
|
||||
/W { clip } bind def
|
||||
/W* { eoclip } bind def
|
||||
/BT { } bind def
|
||||
/ET { } bind def
|
||||
/BDC { mark 3 1 roll /BDC pdfmark } bind def
|
||||
/EMC { mark /EMC pdfmark } bind def
|
||||
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
|
||||
/Tj { show currentpoint cairo_store_point } bind def
|
||||
/TJ {
|
||||
{
|
||||
dup
|
||||
type /stringtype eq
|
||||
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
|
||||
} forall
|
||||
currentpoint cairo_store_point
|
||||
} bind def
|
||||
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
|
||||
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
|
||||
/Tf { pop /cairo_font exch def /cairo_font_matrix where
|
||||
{ pop cairo_selectfont } if } bind def
|
||||
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
|
||||
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
|
||||
/cairo_font where { pop cairo_selectfont } if } bind def
|
||||
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
|
||||
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
|
||||
/g { setgray } bind def
|
||||
/rg { setrgbcolor } bind def
|
||||
/d1 { setcachedevice } bind def
|
||||
/cairo_data_source {
|
||||
CairoDataIndex CairoData length lt
|
||||
{ CairoData CairoDataIndex get /CairoDataIndex CairoDataIndex 1 add def }
|
||||
{ () } ifelse
|
||||
} def
|
||||
/cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def
|
||||
/cairo_image { image cairo_flush_ascii85_file } def
|
||||
/cairo_imagemask { imagemask cairo_flush_ascii85_file } def
|
||||
%%EndProlog
|
||||
%%BeginSetup
|
||||
%%EndSetup
|
||||
%%Page: 1 1
|
||||
%%BeginPageSetup
|
||||
%%PageBoundingBox: 0 0 345 345
|
||||
%%EndPageSetup
|
||||
q 0 0 345 345 rectclip
|
||||
1 0 0 -1 0 345 cm q
|
||||
0 g
|
||||
338.453 107.613 m 180.777 2.496 l 175.395 -0.816 169.652 -0.848 164.223
|
||||
2.496 c 6.547 107.613 l 2.504 110.305 0 115.121 0 119.934 c 0 225.047 l
|
||||
0 229.859 2.504 234.676 6.547 237.367 c 164.223 342.5 l 169.602 345.812
|
||||
175.348 345.844 180.777 342.5 c 338.453 237.367 l 342.496 234.676 345 229.859
|
||||
345 225.047 c 345 119.934 l 345 115.121 342.496 110.305 338.453 107.613
|
||||
c h
|
||||
187.324 42.539 m 303.414 119.934 l 251.625 154.586 l 187.324 111.656 l
|
||||
h
|
||||
157.676 42.539 m 157.676 111.652 l 93.371 154.586 l 41.586 119.93 l h
|
||||
29.648 147.656 m 66.805 172.492 l 29.648 197.328 l h
|
||||
157.676 302.441 m 41.586 225.047 l 93.371 190.395 l 157.676 233.328 l h
|
||||
172.5 207.527 m 120.133 172.492 l 172.5 137.453 l 224.863 172.488 l h
|
||||
187.324 302.441 m 187.324 233.328 l 251.625 190.395 l 303.414 225.051 l
|
||||
h
|
||||
315.352 197.328 m 278.195 172.492 l 315.352 147.656 l h
|
||||
315.352 197.328 m f
|
||||
Q Q
|
||||
showpage
|
||||
%%Trailer
|
||||
end
|
||||
%%EOF
|
1
icons/confluence/confluence-line-wordmark.svg
Normal file
After Width: | Height: | Size: 9.3 KiB |
1
icons/confluence/confluence-line.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#136be6" d="M96.971 2.649a4.49 4.49 0 0 0-3.664 2.17l-.004.008-.004.006a176.272 176.272 0 0 1-3.826 6.51l-.002.002c-5.138 8.47-10.2 12.11-16.306 12.622-6.107.513-13.38-2.17-22.759-6.672h-.002L24.31 5.013l-.004-.002c-2.345-1.07-4.943.006-6.018 2.148l-.005.011-12.46 28.2c-1.096 2.195-.026 4.96 2.142 6.041l.007.004.01.006c5.548 2.491 16.483 7.673 26.063 12.466l.006.002.003.002c17.798 8.472 34.301 12.498 49.292 9.663 14.924-2.823 28.282-12.48 39.803-31.11h.01l.146-.23a329.925 329.925 0 0 0 4.037-6.535h.002c1.285-2.143.635-4.951-1.512-6.245l-.004-.002L99.549 3.306l-.002-.002a4.609 4.609 0 0 0-2.576-.655Zm.043.992a3.609 3.609 0 0 1 2.021.516l26.278 16.124h.002c1.684 1.012 2.19 3.193 1.174 4.886h.002a329.05 329.05 0 0 1-3.881 6.285h-.004l-.146.236C111.004 50.321 97.852 59.8 83.161 62.578c-14.689 2.779-30.983-1.16-48.672-9.58l-.01-.003C24.896 48.2 13.98 43.027 8.407 40.524l-.004-.004c-1.666-.834-2.516-3.059-1.692-4.708l.006-.01 12.46-28.198c.849-1.694 2.848-2.543 4.718-1.69L49.98 18.193c9.416 4.52 16.813 7.306 23.268 6.764 6.455-.543 11.847-4.485 17.07-13.094l.002-.002a177.156 177.156 0 0 0 3.835-6.529 3.485 3.485 0 0 1 2.859-1.69ZM53.246 63.48c-18.472.425-34.828 9.995-48.55 32.308v.002c0 .002-.003.003-.004.004a329.966 329.966 0 0 0-4.035 6.53H.655v.002c-1.281 2.143-.635 4.951 1.516 6.244l26.278 16.126.002.002c2.143 1.286 4.948.634 6.24-1.515l.004-.006.004-.008a183.88 183.88 0 0 1 3.825-6.51v-.002h.002c5.138-8.47 10.2-12.11 16.307-12.623 6.107-.513 13.382 2.171 22.76 6.673h.002l26.094 12.281.004.002c2.345 1.07 4.948-.005 6.017-2.149l.006-.01 12.466-28.2c1.09-2.194.024-4.955-2.148-6.04l-.008-.005-.01-.006c-5.548-2.49-16.48-7.672-26.064-12.465l-.002-.002-.004-.002c-14.458-6.961-28.06-10.922-40.7-10.631Zm.023.992c12.416-.286 25.875 3.615 40.247 10.535 9.59 4.795 20.5 9.968 26.076 12.471l.004.004c1.673.84 2.517 3.058 1.698 4.708l-.006.01-12.468 28.203c-.844 1.689-2.845 2.535-4.711 1.686l-.006-.002-26.08-12.275-.004-.002c-9.416-4.52-16.812-7.306-23.268-6.764-6.456.543-11.85 4.485-17.074 13.096a184.83 184.83 0 0 0-3.835 6.529c-1.013 1.684-3.187 2.19-4.88 1.174L2.684 107.721h-.002C1 106.709.495 104.528 1.506 102.835l.002-.002a330.226 330.226 0 0 1 4.025-6.514l.002-.002.002-.003C19.142 74.186 35.123 64.89 53.27 64.472Z"/></svg>
|
After Width: | Height: | Size: 2.3 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="confluence-original-wordmark-a" gradientUnits="userSpaceOnUse" x1="26.791" y1="28.467" x2="11.792" y2="19.855" gradientTransform="translate(5.976 -3.222) scale(3.6229)"><stop offset="0" stop-color="#0052cc"/><stop offset=".918" stop-color="#2380fb"/><stop offset="1" stop-color="#2684ff"/></linearGradient><linearGradient id="confluence-original-wordmark-b" gradientUnits="userSpaceOnUse" x1="5.209" y1="2.523" x2="20.208" y2="11.136" gradientTransform="translate(5.976 -3.222) scale(3.6229)"><stop offset="0" stop-color="#0052cc"/><stop offset=".918" stop-color="#2380fb"/><stop offset="1" stop-color="#2684ff"/></linearGradient></defs><path d="M23.629 74.875a229.944 229.944 0 00-2.758 4.469c-.785 1.312-.394 3.023.922 3.812l17.988 11.035c1.313.79 3.02.395 3.809-.918a118.23 118.23 0 012.625-4.468c7.09-11.696 14.312-10.38 27.183-4.207l17.86 8.41c1.441.66 3.02 0 3.676-1.313l8.535-19.316c.656-1.313 0-3.02-1.313-3.68-3.808-1.707-11.293-5.254-17.86-8.539-24.292-11.695-44.91-10.906-60.667 14.715zm0 0" fill="url(#confluence-original-wordmark-a)"/><path d="M104.258 30.988a230.06 230.06 0 002.758-4.465c.785-1.316.39-3.023-.922-3.812L88.105 11.67c-1.312-.784-3.02-.39-3.808.923a121.42 121.42 0 01-2.625 4.469c-7.094 11.69-14.313 10.378-27.184 4.203l-17.86-8.41c-1.44-.657-3.019 0-3.675 1.316l-8.535 19.312c-.656 1.317 0 3.024 1.312 3.68 3.81 1.711 11.293 5.258 17.86 8.543C67.883 57.27 88.5 56.613 104.258 30.988zm0 0" fill="url(#confluence-original-wordmark-b)"/><path d="M14.953 117.824c-1.078.719-2.785 1.016-4.582 1.016-5.695 0-8.902-3.406-8.902-8.88 0-5.26 3.207-8.937 8.87-8.937 1.68 0 3.388.329 4.614 1.196v2.3c-1.226-.777-2.605-1.195-4.613-1.195-4.078 0-6.473 2.692-6.473 6.668 0 3.977 2.516 6.606 6.621 6.606 1.828 0 3.239-.418 4.496-1.043v2.27zm0 0M16.602 111.996c0-3.95 2.308-6.816 6.265-6.816 3.926 0 6.235 2.867 6.235 6.816 0 3.945-2.309 6.875-6.235 6.875-3.926-.031-6.265-2.93-6.265-6.875zm2.218 0c0 2.512 1.23 4.754 4.078 4.754 2.786 0 4.016-2.273 4.016-4.754 0-2.484-1.2-4.726-4.016-4.726-2.847 0-4.078 2.214-4.078 4.726zm0 0M42.95 118.602h-2.278v-7.954c0-2.359-.961-3.406-3.117-3.406-2.102 0-3.567 1.406-3.567 4.067v7.324h-2.281v-13.156h2.281v2.152c.836-1.555 2.395-2.422 4.164-2.422 3.028 0 4.766 2.094 4.766 5.711v7.684zm0 0M52.688 105.45v2.09H49.27v11.062h-2.215v-11.063h-2.13v-2.09h2.13v-1.437c0-2.45 1.379-4.094 4.195-4.094.688 0 1.137.117 1.527.207v2.094c-.39-.09-.898-.121-1.437-.121-1.41 0-2.098.808-2.098 2.004v1.347zm0 0M58.652 118.66c-2.156 0-3.535-1.015-3.535-3.437V99.945h2.278v15.008c0 1.2.777 1.617 1.77 1.617.237 0 .386 0 .655-.03v2.034c-.207.059-.597.086-1.168.086zm0 0M61.738 105.45h2.278v7.948c0 2.364.96 3.41 3.117 3.41 2.097 0 3.566-1.406 3.566-4.066v-7.293h2.281v13.153H70.7v-2.153c-.84 1.555-2.4 2.422-4.165 2.422-3.027 0-4.765-2.094-4.765-5.71v-7.712zm0 0M82.688 118.84c-4.946 0-7.102-2.84-7.102-6.875 0-3.977 2.219-6.817 6.234-6.817 4.075 0 5.696 2.813 5.696 6.817v1.015h-9.621c.328 2.243 1.765 3.68 4.882 3.68 1.532 0 2.82-.3 4.02-.719v2.094c-1.11.598-2.79.805-4.11.805zm-4.856-7.774h7.375c-.121-2.449-1.23-3.824-3.508-3.824-2.398 0-3.625 1.524-3.867 3.824zm0 0M101.39 118.602h-2.277v-7.954c0-2.359-.96-3.406-3.117-3.406-2.098 0-3.566 1.406-3.566 4.067v7.324h-2.278v-13.156h2.278v2.152c.84-1.555 2.398-2.422 4.164-2.422 3.027 0 4.765 2.094 4.765 5.711v7.684zm0 0M113.887 118.242c-.778.418-2.008.598-3.207.598-4.703 0-6.89-2.84-6.89-6.875 0-3.977 2.187-6.817 6.89-6.817 1.199 0 2.097.149 3.148.63v2.093c-.84-.39-1.738-.629-2.969-.629-3.414 0-4.824 2.153-4.824 4.723s1.442 4.722 4.887 4.722c1.348 0 2.187-.18 2.996-.476v2.031zm0 0M122.758 118.84c-4.942 0-7.102-2.84-7.102-6.875 0-3.977 2.219-6.817 6.235-6.817 4.074 0 5.695 2.813 5.695 6.817v1.015h-9.621c.328 2.243 1.77 3.68 4.887 3.68 1.527 0 2.816-.3 4.015-.719v2.094c-1.11.598-2.758.805-4.11.805zm-4.824-7.774h7.375c-.121-2.449-1.23-3.824-3.508-3.824-2.426 0-3.625 1.524-3.867 3.824zm0 0" fill="#253858"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="26.791" x2="11.792" y1="28.467" y2="19.855" gradientTransform="translate(4.574 -5.311) scale(3.677)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0052cc"/><stop offset=".918" stop-color="#2380fb"/><stop offset="1" stop-color="#2684ff"/></linearGradient><linearGradient id="b" x1="5.209" x2="20.208" y1="2.523" y2="11.136" gradientTransform="translate(4.574 -5.311) scale(3.677)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0052cc"/><stop offset=".918" stop-color="#2380fb"/><stop offset="1" stop-color="#2684ff"/></linearGradient></defs><path fill="url(#a)" d="M22.49 73.952a233.377 233.377 0 0 0-2.798 4.535c-.797 1.332-.4 3.068.935 3.87l18.257 11.199c1.333.802 3.065.4 3.866-.932a119.995 119.995 0 0 1 2.664-4.534c7.196-11.871 14.526-10.535 27.589-4.27l18.127 8.535c1.462.67 3.065 0 3.73-1.332l8.663-19.605c.666-1.332 0-3.065-1.333-3.735-3.865-1.732-11.461-5.332-18.126-8.666-24.655-11.87-45.58-11.069-61.573 14.935Zm0 0"/><path fill="url(#b)" d="M104.324 29.41a233.495 233.495 0 0 0 2.799-4.532c.797-1.336.396-3.068-.936-3.87L87.93 9.804c-1.332-.796-3.066-.396-3.865.937a123.233 123.233 0 0 1-2.665 4.535c-7.2 11.865-14.526 10.533-27.59 4.266l-18.126-8.535c-1.462-.667-3.064 0-3.73 1.335l-8.662 19.6c-.666 1.337 0 3.07 1.331 3.736 3.867 1.736 11.462 5.336 18.127 8.67 24.656 11.737 45.58 11.07 61.574-14.938Zm0 0"/><path fill="#253858" d="M13.685 117.542c-1.094.73-2.826 1.031-4.65 1.031-5.78 0-9.035-3.457-9.035-9.013 0-5.338 3.255-9.07 9.002-9.07 1.706 0 3.439.334 4.683 1.214v2.334c-1.244-.788-2.644-1.213-4.682-1.213-4.138 0-6.57 2.733-6.57 6.768 0 4.036 2.554 6.705 6.72 6.705 1.856 0 3.288-.425 4.564-1.059v2.304zm1.674-5.915c0-4.01 2.342-6.918 6.358-6.918 3.985 0 6.329 2.91 6.329 6.918 0 4.004-2.344 6.978-6.329 6.978-3.984-.032-6.358-2.974-6.358-6.978zm2.251 0c0 2.55 1.248 4.825 4.139 4.825 2.828 0 4.076-2.307 4.076-4.825 0-2.521-1.218-4.797-4.076-4.797-2.89 0-4.139 2.247-4.139 4.797zm24.49 6.704h-2.312v-8.072c0-2.394-.975-3.457-3.163-3.457-2.134 0-3.62 1.427-3.62 4.128v7.433h-2.316V105.01h2.316v2.184c.848-1.579 2.43-2.459 4.226-2.459 3.073 0 4.837 2.126 4.837 5.797v7.798zm9.884-13.348v2.121h-3.47v11.227h-2.247v-11.228h-2.162v-2.12h2.162v-1.46c0-2.486 1.4-4.154 4.257-4.154.699 0 1.154.118 1.55.21v2.125c-.396-.091-.911-.123-1.458-.123-1.431 0-2.13.82-2.13 2.034v1.367zm6.053 13.407c-2.188 0-3.588-1.03-3.588-3.488V99.396h2.312v15.232c0 1.218.789 1.641 1.796 1.641.241 0 .392 0 .665-.03v2.064c-.21.06-.606.087-1.185.087zm3.132-13.407h2.312v8.067c0 2.4.974 3.46 3.163 3.46 2.129 0 3.62-1.426 3.62-4.126v-7.402h2.315v13.35h-2.314v-2.186c-.853 1.579-2.436 2.459-4.228 2.459-3.072 0-4.836-2.126-4.836-5.796v-7.827zm21.263 13.59c-5.02 0-7.208-2.882-7.208-6.978 0-4.036 2.252-6.918 6.327-6.918 4.136 0 5.78 2.855 5.78 6.918v1.03h-9.764c.333 2.277 1.791 3.735 4.955 3.735 1.555 0 2.862-.304 4.08-.73v2.126c-1.127.607-2.832.817-4.171.817zm-4.929-7.89h7.485c-.123-2.486-1.248-3.881-3.56-3.881-2.434 0-3.68 1.547-3.925 3.881zm23.91 7.648h-2.311v-8.072c0-2.394-.974-3.457-3.164-3.457-2.129 0-3.619 1.427-3.619 4.128v7.433h-2.312V105.01h2.312v2.184c.853-1.579 2.434-2.459 4.226-2.459 3.072 0 4.836 2.126 4.836 5.797v7.798zm12.683-.365c-.79.424-2.038.607-3.254.607-4.774 0-6.993-2.882-6.993-6.978 0-4.036 2.22-6.918 6.993-6.918 1.216 0 2.128.15 3.195.639v2.124c-.853-.396-1.764-.638-3.014-.638-3.465 0-4.896 2.185-4.896 4.793 0 2.609 1.464 4.793 4.96 4.793 1.368 0 2.22-.183 3.04-.483v2.061zm9.004.607c-5.016 0-7.208-2.882-7.208-6.978 0-4.036 2.252-6.918 6.328-6.918 4.135 0 5.78 2.855 5.78 6.918v1.03h-9.765c.333 2.277 1.797 3.735 4.96 3.735 1.55 0 2.858-.304 4.075-.73v2.126c-1.126.607-2.799.817-4.171.817zm-4.896-7.89h7.485c-.123-2.486-1.248-3.881-3.56-3.881-2.463 0-3.68 1.547-3.925 3.881zm0 0"/></svg>
|
||||
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.8 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="confluence-original-a" gradientUnits="userSpaceOnUse" x1="26.791" y1="28.467" x2="11.792" y2="19.855" gradientTransform="scale(4)"><stop offset="0" stop-color="#0052cc"/><stop offset=".918" stop-color="#2380fb"/><stop offset="1" stop-color="#2684ff"/></linearGradient><linearGradient id="confluence-original-b" gradientUnits="userSpaceOnUse" x1="5.209" y1="2.523" x2="20.208" y2="11.136" gradientTransform="scale(4)"><stop offset="0" stop-color="#0052cc"/><stop offset=".918" stop-color="#2380fb"/><stop offset="1" stop-color="#2684ff"/></linearGradient></defs><path d="M19.492 86.227a249.047 249.047 0 00-3.047 4.933c-.867 1.45-.433 3.336 1.016 4.207l19.863 12.188c1.45.87 3.332.433 4.203-1.016a139.349 139.349 0 012.899-4.934c7.832-12.91 15.804-11.46 30.011-4.64l19.72 9.281c1.593.727 3.335 0 4.058-1.45l9.426-21.323c.722-1.453 0-3.336-1.454-4.063-4.203-1.887-12.464-5.805-19.714-9.43-26.82-12.914-49.586-12.043-66.98 16.247zm0 0" fill="url(#confluence-original-a)"/><path d="M108.508 37.773a249.047 249.047 0 003.047-4.933c.87-1.45.433-3.336-1.016-4.207L90.676 16.445c-1.45-.87-3.332-.433-4.203 1.016a133.55 133.55 0 01-2.899 4.934c-7.832 12.91-15.804 11.46-30.011 4.64l-19.72-9.281c-1.593-.727-3.331 0-4.058 1.45l-9.422 21.323c-.726 1.453 0 3.34 1.45 4.063 4.203 1.887 12.468 5.805 19.714 9.43 26.825 12.77 49.586 12.042 66.98-16.247zm0 0" fill="url(#confluence-original-b)"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="26.791" x2="11.792" y1="28.467" y2="19.855" gradientTransform="translate(-21.334 -18.666) scale(5.33331)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0052cc"/><stop offset=".918" stop-color="#2380fb"/><stop offset="1" stop-color="#2684ff"/></linearGradient><linearGradient id="b" x1="5.209" x2="20.208" y1="2.523" y2="11.136" gradientTransform="translate(-21.334 -18.666) scale(5.33331)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0052cc"/><stop offset=".918" stop-color="#2380fb"/><stop offset="1" stop-color="#2684ff"/></linearGradient></defs><path fill="url(#a)" d="M4.655 96.303a332.061 332.061 0 0 0-4.062 6.577c-1.156 1.933-.578 4.448 1.354 5.61l26.484 16.25c1.934 1.16 4.443.577 5.604-1.355a185.798 185.798 0 0 1 3.866-6.579c10.442-17.213 21.071-15.28 40.014-6.186l26.293 12.374c2.124.97 4.447 0 5.41-1.933l12.569-28.43c.963-1.938 0-4.448-1.939-5.418-5.604-2.516-16.618-7.74-26.285-12.573-35.76-17.219-66.114-16.057-89.306 21.663Zm0 0"/><path fill="url(#b)" d="M123.343 31.697a332.061 332.061 0 0 0 4.063-6.577c1.16-1.933.577-4.448-1.355-5.61L99.567 3.26c-1.933-1.16-4.443-.577-5.604 1.355a178.066 178.066 0 0 1-3.865 6.579c-10.443 17.213-21.072 15.28-40.015 6.186L23.79 5.006c-2.124-.97-4.441 0-5.41 1.933L5.816 35.369c-.968 1.938 0 4.454 1.933 5.418 5.604 2.516 16.624 7.74 26.285 12.573 35.767 17.027 66.115 16.056 89.307-21.663zm0 0"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
1
icons/confluence/confluence-plain-wordmark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#136be6" d="M86.332 9.398a2.772 2.772 0 0 0-2.268 1.342 123.233 123.233 0 0 1-2.664 4.535c-7.2 11.865-14.526 10.533-27.59 4.266l-18.126-8.535c-1.462-.667-3.065 0-3.73 1.336l-8.663 19.6c-.666 1.336 0 3.068 1.332 3.734 3.867 1.736 11.462 5.338 18.127 8.672 24.656 11.736 45.581 11.07 61.574-14.938a233.495 233.495 0 0 0 2.8-4.533c.796-1.336.395-3.068-.936-3.87L87.93 9.804a2.863 2.863 0 0 0-1.598-.405zM55.943 51.664c-12.721.293-23.957 6.848-33.453 22.287a233.377 233.377 0 0 0-2.799 4.537c-.796 1.332-.4 3.067.936 3.867l18.258 11.202c1.332.801 3.064.4 3.865-.932a119.995 119.995 0 0 1 2.664-4.535c7.196-11.87 14.527-10.535 27.59-4.27l18.125 8.535c1.462.67 3.067.001 3.732-1.332l8.662-19.605c.666-1.333-.001-3.065-1.334-3.734-3.864-1.733-11.46-5.332-18.125-8.666-10.016-4.822-19.416-7.554-28.12-7.354zm-5.42 47.705c-2.858 0-4.255 1.668-4.255 4.154v1.46h-2.163v2.12h2.163v11.229h2.248v-11.228h3.468v-2.122h-3.498v-1.367c0-1.214.698-2.033 2.13-2.033.546 0 1.062.03 1.458.121v-2.125c-.396-.091-.852-.209-1.55-.209zm3.926.027v15.506c0 2.459 1.4 3.489 3.588 3.489.58 0 .976-.028 1.186-.088v-2.065c-.273.03-.426.032-.666.032-1.008 0-1.795-.423-1.795-1.641V99.396h-2.313zM9.002 100.49c-5.748 0-9.002 3.732-9.002 9.07 0 5.556 3.255 9.012 9.035 9.012 1.824 0 3.556-.301 4.65-1.031l.032.002v-2.305c-1.276.635-2.707 1.059-4.563 1.059-4.166 0-6.72-2.667-6.72-6.703 0-4.036 2.431-6.768 6.57-6.768 2.038 0 3.437.424 4.682 1.213v-2.336c-1.245-.88-2.979-1.213-4.684-1.213zm72.549 4.186c-4.075 0-6.328 2.883-6.328 6.92 0 4.094 2.19 6.975 7.209 6.976 1.34 0 3.044-.21 4.17-.816v-2.125c-1.218.425-2.526.73-4.08.73-3.164 0-4.623-1.46-4.956-3.736h9.766v-1.03c0-4.063-1.645-6.92-5.781-6.92zm29.29 0c-4.772 0-6.991 2.883-6.991 6.92 0 4.095 2.219 6.976 6.992 6.976 1.217 0 2.464-.181 3.254-.605h.033v-2.063c-.821.3-1.673.485-3.041.485-3.497 0-4.961-2.185-4.961-4.793 0-2.609 1.431-4.793 4.896-4.793 1.25 0 2.162.24 3.014.636v-2.123c-1.067-.488-1.978-.64-3.195-.64zm11.38 0c-4.076 0-6.328 2.883-6.328 6.92 0 4.095 2.19 6.976 7.207 6.976 1.372 0 3.043-.21 4.17-.816v-2.125c-1.217.425-2.525.73-4.075.73-3.163 0-4.628-1.46-4.96-3.736H128v-1.03c0-4.063-1.644-6.92-5.78-6.92zm-100.504.033c-4.016 0-6.358 2.909-6.358 6.918 0 4.004 2.373 6.947 6.358 6.978 3.984 0 6.328-2.974 6.328-6.978 0-4.008-2.344-6.918-6.328-6.918zm15.513.027c-1.795 0-3.378.881-4.226 2.46v-2.186h-2.315v13.353h2.315v-7.433c0-2.701 1.488-4.127 3.621-4.127 2.188 0 3.164 1.06 3.164 3.455v8.074h2.28v-7.799c0-3.67-1.765-5.797-4.839-5.797zm59.315 0c-1.792 0-3.374.881-4.227 2.46v-2.186h-2.31v13.353h2.31v-7.433c0-2.701 1.49-4.127 3.62-4.127 2.189 0 3.164 1.06 3.164 3.455v8.074h2.279v-7.799c0-3.67-1.764-5.797-4.836-5.797zm-35.344.246v7.827c0 3.67 1.764 5.796 4.836 5.796 1.791 0 3.376-.88 4.229-2.459v2.186h2.312v-13.35h-2.314v7.403c0 2.7-1.491 4.125-3.62 4.125-2.189 0-3.164-1.062-3.164-3.461v-8.067h-2.279zm20.227 1.82c2.312 0 3.437 1.396 3.56 3.882h-7.484c.246-2.335 1.49-3.881 3.924-3.881zm40.7 0c2.313 0 3.439 1.396 3.561 3.882h-7.486c.246-2.335 1.464-3.881 3.926-3.881zm-100.38.028c2.858 0 4.076 2.276 4.076 4.797 0 2.518-1.248 4.824-4.076 4.824-2.89 0-4.139-2.275-4.139-4.824 0-2.55 1.25-4.797 4.139-4.797z"/></svg>
|
After Width: | Height: | Size: 3.2 KiB |
1
icons/confluence/confluence-plain.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#136be6" d="M97.25 2.67a4.02 4.02 0 0 0-3.287 1.945 178.066 178.066 0 0 1-3.865 6.578c-10.443 17.214-21.071 15.281-40.014 6.188L23.789 5.006c-2.124-.97-4.44 0-5.41 1.933L5.816 35.37c-.968 1.937 0 4.454 1.934 5.418 5.604 2.516 16.624 7.74 26.285 12.572 35.767 17.027 66.115 16.057 89.307-21.662h.002a332.061 332.061 0 0 0 4.062-6.576c1.16-1.933.577-4.448-1.355-5.61L99.566 3.26a4.14 4.14 0 0 0-2.316-.59zM53.174 63.975c-18.453.424-34.748 9.932-48.518 32.328a332.061 332.061 0 0 0-4.064 6.576c-1.156 1.933-.577 4.448 1.355 5.61l26.485 16.251c1.933 1.16 4.442.577 5.603-1.355a185.798 185.798 0 0 1 3.865-6.578c10.443-17.214 21.073-15.281 40.016-6.188l26.293 12.375c2.124.97 4.446 0 5.41-1.933l12.569-28.43c.962-1.937-.001-4.449-1.94-5.418-5.604-2.516-16.618-7.74-26.285-12.572-14.528-6.995-28.164-10.957-40.79-10.666z"/></svg>
|
After Width: | Height: | Size: 898 B |
1
icons/crystal/crystal-line-wordmark.svg
Normal file
After Width: | Height: | Size: 5.8 KiB |
1
icons/crystal/crystal-line.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M46.873.482a1.29 1.29 0 0 0-.54.34L.363 46.456a1.217 1.217 0 0 0-.315.48c-.07.208-.061.45.01.665l16.91 62.348-.018-.13c0 .515.396.794.796.93l.018.004 62.81 16.74-.09-.036c.477.234.91.024 1.213-.279v.002l45.969-45.635.149-.148-.002-.099c.062-.089.139-.149.169-.28.056-.248-.02-.53-.163-.74l.068.146-16.829-62.369.018.128c0-.513-.396-.794-.797-.93l-.015-.004L47.457.51l.089.035a.903.903 0 0 0-.673-.062Zm.237.953.044.022 62.838 16.745-.03-.01c.153.052.121.138.121-.01v.066l16.867 62.514.04.059c-.007.008.005-.01-.026.02l-.15.15-45.817 45.484h-.002c-.065.066-.185.036-.076.09l-.042-.022-62.842-16.745.03.01c-.153-.052-.123-.14-.123.01v-.067L1.003 47.303 1 47.29c-.019-.058-.009-.042-.01-.04 0 0 .013-.03.074-.092l45.97-45.633.002-.002c.064-.064.184-.034.074-.088zm19.1 29.453-.625.165-61.69 16.37.128-.015c-.37 0-.504.23-.578.415a.657.657 0 0 0 .122.698l.006.006 45.141 44.806a.645.645 0 0 0 .624.201.637.637 0 0 0 .373-.225.678.678 0 0 0 .135-.41l-.017.13 16.547-61.273-.044.033c.043-.134.082-.282.058-.352-.057-.162-.119-.193-.18-.239zm-.993 1.289v.058L49.015 92.234 4.69 48.24Z"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><clipPath id="crystal-original-wordmark-a"><path d="M.578.578H122v36.899H.578zm0 0"/></clipPath></defs><path d="M100.781 98.7l-28.797 28.585c-.117.117-.289.172-.406.117l-39.336-10.484c-.172-.059-.289-.172-.289-.29l-10.598-39.07c-.058-.171 0-.285.118-.402L50.27 48.57c.113-.117.289-.172.402-.117l39.34 10.484c.172.06.285.172.285.29l10.543 39.07c.113.172.055.289-.059.402zm-38.59-31.11L23.543 77.844c-.055 0-.113.117-.055.172l28.278 28.074c.058.055.172.055.172-.059l10.367-38.383c.058 0-.055-.117-.114-.058zm0 0" fill-rule="evenodd"/><g clip-path="url(#crystal-original-wordmark-a)"><path d="M16.996 28.934l.36 2.793c-1.68.535-3.782.773-6.36.773-3.121 0-5.277-.773-6.539-2.379-1.258-1.601-1.918-4.336-1.918-8.2 0-3.862.598-6.651 1.918-8.198 1.262-1.606 3.418-2.375 6.54-2.375 2.28 0 4.257.234 5.937.652l-.36 2.852a83.05 83.05 0 00-5.578-.18c-1.738 0-2.879.535-3.539 1.547-.602 1.07-.96 2.968-.96 5.761s.3 4.754.96 5.766c.66 1.07 1.8 1.543 3.54 1.543 2.519-.059 4.558-.176 6-.355zm17.215-3.207l1.86 6.414h-4.02l-1.68-6.356c-.36-1.25-1.2-1.844-2.398-1.844h-3.72v8.2h-3.718V11.645c1.8-.18 4.32-.239 7.559-.239 2.64 0 4.5.414 5.578 1.305 1.078.894 1.621 2.437 1.621 4.695 0 1.606-.3 2.793-.902 3.625-.598.832-1.618 1.367-3 1.543v.18c.601.121 1.14.476 1.683.95.598.417.957 1.128 1.137 2.023zm-3.418-5.586c.48-.477.719-1.309.719-2.555 0-1.25-.239-2.082-.719-2.555-.48-.418-1.379-.656-2.762-.656h-3.718v6.477h3.718c1.383 0 2.282-.235 2.762-.711zm57.71-8.496h-16.5v3.148h6.302v17.348h3.777V14.793h6.422zm11.638.949l6.238 19.488h-3.899l-1.68-5.82h-7.679l-1.68 5.82h-3.84l6.18-19.488c.18-.653.66-1.012 1.38-1.012h3.66c.66.063 1.14.36 1.32 1.012zm-.243 10.695l-2.097-7.07c-.301-1.07-.422-1.664-.48-1.723h-.782l-.48 1.723-2.04 7.07zm21.54 5.762h-7.2c-.66 0-1.14-.117-1.379-.356-.242-.238-.421-.71-.421-1.304V11.645h-3.782v16.277c0 2.855 1.563 4.281 4.68 4.281 3.543 0 6.242-.121 8.219-.238zM46.57 19.605c-.12.297-.422 1.13-.84 2.497h-.242c-.418-1.309-.718-2.141-.84-2.497l-3.777-7.96h-3.96l6.78 13.546v7.012h3.778v-7.012l6.781-13.546h-3.902zm19.196 1.188l-3.957-1.246c-.903-.297-1.5-.594-1.801-.953-.36-.356-.48-.95-.48-1.782 0-1.011.238-1.664.718-1.96.48-.239 1.383-.415 2.762-.415 1.797 0 3.898.06 6.176.118l.242-2.614c-1.801-.476-3.961-.714-6.48-.714-2.637 0-4.497.355-5.52 1.07-1.078.715-1.559 2.2-1.559 4.457 0 1.543.301 2.851.961 3.8.66.954 1.68 1.665 3.18 2.141l4.199 1.309c.84.234 1.438.531 1.738.89.301.356.48.95.48 1.84 0 1.012-.237 1.723-.66 2.02-.48.297-1.378.476-2.757.476-.903 0-3.063-.058-6.54-.117l-.241 2.73c2.222.419 4.441.657 6.718.657 2.762 0 4.68-.418 5.7-1.191 1.082-.77 1.62-2.317 1.62-4.575 0-1.543-.3-2.851-.96-3.8-.84-.954-1.918-1.664-3.54-2.141zm-74.028 1.664l-5.457-20.203c0-.059-.058-.117-.18-.176l-20.456-5.41c-.06 0-.18 0-.239.062l-15 14.793c-.058.059-.058.122-.058.239l5.457 20.203c0 .058.062.117.183.176l20.453 5.41c.063 0 .18 0 .243-.063L-8.32 22.695c.058-.12.12-.18.058-.238zM-28.297 6.594l-5.398 19.843c0 .06-.059.06-.121 0l-14.637-14.496c-.059-.058 0-.058 0-.12l20.098-5.348c0 .062.058.062.058.12zm0 0"/></g></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="m17.62 18.317.37 2.9c-1.726.554-3.885.801-6.537.801-3.207 0-5.428-.802-6.723-2.467s-1.973-4.502-1.973-8.511c0-4.009.616-6.908 1.973-8.511C6.025.864 8.246.062 11.453.062c2.344 0 4.379.246 6.106.678l-.37 2.96a83.626 83.626 0 0 0-5.736-.185c-1.789 0-2.96.555-3.639 1.604-.617 1.11-.987 3.084-.987 5.982s.309 4.934.987 5.983c.678 1.11 1.85 1.604 3.639 1.604 2.59-.062 4.687-.185 6.167-.37zm19.613 3.331h-4.132l-1.727-6.6c-.37-1.294-1.234-1.911-2.467-1.911h-3.824v8.511h-3.824V.37C23.11.185 25.7.123 29.03.123c2.714 0 4.626.432 5.736 1.357 1.11.925 1.665 2.529 1.665 4.873 0 1.665-.308 2.898-.925 3.762-.617.863-1.665 1.418-3.084 1.603v.185c.617.124 1.172.494 1.727.987.555.494.925 1.234 1.11 2.159zM25.145 9.991h3.824c1.356 0 2.343-.246 2.837-.74.493-.493.74-1.357.74-2.652 0-1.295-.247-2.158-.74-2.652-.494-.431-1.419-.678-2.837-.678h-3.824Zm23.806 4.503v7.154h-3.885v-7.216L38.096.37h4.071l3.886 8.264c.123.309.431 1.172.863 2.59h.247c.431-1.356.74-2.22.863-2.59L51.912.37h4.009zm17.023-1.234-4.318-1.357c-1.541-.493-2.652-1.233-3.268-2.22-.617-.987-.987-2.282-.987-3.947 0-2.344.555-3.886 1.603-4.626C60.114.37 61.964 0 64.678 0c2.59 0 4.811.247 6.661.74l-.246 2.714c-2.344-.062-4.441-.124-6.353-.124-1.418 0-2.344.124-2.837.432-.493.309-.74.925-.74 2.035 0 .864.185 1.48.493 1.85.309.37.987.68 1.85.987l4.071 1.296c1.604.493 2.775 1.295 3.392 2.282.679.986.987 2.282.987 3.947 0 2.344-.555 3.947-1.665 4.749-1.11.802-3.084 1.233-5.86 1.233-2.343 0-4.625-.246-6.907-.678l.247-2.837c3.577.062 5.859.123 6.722.123 1.419 0 2.344-.185 2.837-.493.494-.309.679-1.049.679-2.097 0-.925-.185-1.542-.494-1.912-.061-.432-.678-.74-1.541-.987zM91.137 3.7h-6.6v17.948h-3.885V3.7h-6.476V.432h16.961zm12.643 11.965h-7.894l-1.727 6.045h-3.947l6.353-20.23c.185-.678.678-1.048 1.418-1.048h3.762c.74 0 1.234.37 1.419 1.048l6.29 20.168h-3.947zm-.925-3.207-2.158-7.339c-.309-1.11-.432-1.727-.494-1.789h-.801l-.494 1.789-2.097 7.34zM115.807.37v16.344c0 .678.123 1.11.432 1.357.246.246.74.37 1.418.37h7.401l.185 2.96c-2.035.185-4.81.247-8.45.247-3.206 0-4.81-1.48-4.81-4.44V.37Zm-8.511 96.707-30.838 30.775c-.123.124-.308.185-.431.124l-42.124-11.287c-.185-.061-.309-.185-.309-.308L22.308 74.318c-.062-.184 0-.308.123-.431L53.268 43.11c.124-.123.309-.185.432-.123l42.124 11.286c.185.062.309.185.309.308l11.286 42.063c0 .123-.061.308-.123.432zM65.912 63.525l-41.384 11.04c-.062 0-.123.124-.062.185l30.283 30.221c.062.062.185.062.185-.062l11.101-41.322c.062 0-.061-.123-.123-.062z"/></svg>
|
||||
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 2.5 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M126.887 81.203L80.895 126.86c-.184.184-.461.274-.645.184l-62.828-16.742c-.277-.094-.461-.278-.461-.461L.035 47.437c-.09-.273 0-.457.184-.64L46.215 1.14c.183-.184.46-.274.644-.184l62.825 16.742c.277.094.46.278.46.461l16.836 62.403c.184.273.09.457-.093.64zM65.254 31.516L3.53 47.895c-.094 0-.183.183-.094.277l45.168 44.832c.09.094.278.094.278-.09L65.437 31.61c.094 0-.09-.183-.183-.093zm0 0" fill-rule="evenodd"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="m127.806 81.328-46.325 45.987c-.185.185-.464.276-.65.185l-63.283-16.863c-.279-.095-.464-.28-.464-.464L.035 47.317c-.09-.275 0-.46.186-.645L46.55.685c.184-.185.463-.276.649-.185l63.28 16.863c.278.095.463.28.463.464L127.9 80.682c.185.275.09.46-.094.645zM65.726 31.28 3.557 47.778c-.095 0-.185.185-.095.28l45.495 45.156c.09.095.28.095.28-.09l16.675-61.748c.095 0-.09-.185-.184-.094zm0 0"/></svg>
|
||||
|
Before Width: | Height: | Size: 489 B After Width: | Height: | Size: 464 B |
1
icons/cypressio/cypressio-line-wordmark.svg
Normal file
After Width: | Height: | Size: 8.1 KiB |
1
icons/cypressio/cypressio-line.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#1b1e2e" d="M63.994.107c-1.942 0-3.884.124-5.814.301V.377l-.545.055c-.134.013-.242.03-.328.039-.825.086-1.649.183-2.471.3-.327.047-.644.102-.955.15h-.002c-.43.069-.874.129-1.324.21l-.522.094.01.037C22.017 6.872 0 32.912 0 64.006c0 5.845.823 11.59 2.377 17.152l-.043.014.13.457c.16.557.337 1.098.507 1.635.065.205.126.422.2.648 8.543 26.003 33.197 43.968 60.796 43.98h.014c.886 0 1.774-.014 2.665-.054 4.727-.195 8.949-3.161 10.76-7.55l2.729-6.637-.008-.003 29.203-71.084H98.707L86.783 72.78 74.772 42.565H63.59L81.117 85.46l-12.816 31.086c-.358.852-1.163 1.432-2.053 1.465-.762.026-1.503.052-2.268.052-24.04 0-45.45-16.096-52.06-39.142a54.047 54.047 0 0 1-2.092-14.916c0-26.775 19.267-49.114 45.36-53.336a54.26 54.26 0 0 1 1.183-.184c.441-.061.89-.114 1.344-.166a55.133 55.133 0 0 1 6.28-.37c23.129 0 43.293 14.274 50.987 35.802v.002c.06.163.118.327.176.494h-.002a53.862 53.862 0 0 1 3.002 17.758c0 23.97-15.412 44.743-38.361 51.713l-.475.144 2.856 9.412.474-.144c27.113-8.243 45.334-32.813 45.348-61.111 0-6.253-.945-12.365-2.713-18.27l.041-.012-.144-.47c-.028-.09-.055-.166-.075-.229a63.572 63.572 0 0 0-.619-1.88 65.15 65.15 0 0 0-.34-.96c-.101-.278-.196-.573-.312-.879l-.184-.482-.049.021C114.103 16.318 90.727.107 63.994.107Zm0 .993c26.506 0 49.666 16.141 58.903 40.578l.183.484.004-.002c.044.127.087.247.135.38.114.313.226.626.334.94v.002c.197.568.383 1.138.562 1.71l.114.369a62.545 62.545 0 0 1 2.779 18.459c-.013 27.704-17.742 51.718-44.182 59.98l-2.277-7.514c23.09-7.236 38.601-28.253 38.601-52.48a54.865 54.865 0 0 0-3.056-18.084 54.148 54.148 0 0 0-.178-.504C108.084 23.504 87.533 8.957 63.994 8.957c-2.14 0-4.278.134-6.392.377-.453.052-.91.104-1.368.168-.407.057-.809.125-1.205.19A54.857 54.857 0 0 0 8.836 64.005c0 5.178.722 10.274 2.13 15.19 6.733 23.473 28.53 39.86 53.015 39.86.786 0 1.54-.025 2.302-.052 1.3-.048 2.44-.882 2.94-2.084l.002-.002.55-1.34L82.19 85.463 65.067 43.557h9.03l12.69 31.916 12.596-31.916h8.467l-29.075 70.77.008.001-2.295 5.582c-1.664 4.033-5.546 6.759-9.883 6.938h-.002c-.872.04-1.746.052-2.623.052h-.013c-27.169-.012-51.444-17.702-59.852-43.296-.066-.201-.128-.416-.199-.64a110.177 110.177 0 0 1-.357-1.155h.002l-.131-.457A62.675 62.675 0 0 1 .992 64.006c0-30.805 21.91-56.563 51.742-61.883l.524-.094-.002-.004.78-.123c.32-.05.632-.104.94-.148.806-.116 1.618-.21 2.434-.295.073-.008.12-.016.178-.024l.144-.013a63.457 63.457 0 0 1 6.262-.322ZM45.131 41.762c-6.455 0-11.771 2.09-16.121 6.357-4.326 4.245-6.526 9.623-6.526 15.887 0 6.225 2.214 11.576 6.526 15.806 4.35 4.269 9.665 6.36 16.12 6.36 9.21 0 17.083-5.18 20.499-13.475l.002-.004.363-.927-9.566-3.25-.315.826c-1.854 4.515-5.92 7.176-10.982 7.176-3.454 0-6.322-1.184-8.613-3.553h-.002c-2.332-2.396-3.494-5.392-3.494-8.96 0-3.594 1.134-6.518 3.5-9.04 2.305-2.367 5.157-3.549 8.609-3.549 4.957 0 8.921 2.601 10.99 7.205l.338.79 9.535-3.241-.363-.93-.002-.004c-3.403-8.309-11.29-13.474-20.498-13.474Zm0 .992c8.82 0 16.287 4.897 19.553 12.812l-7.674 2.61.016.039c-2.209-4.914-6.585-7.791-11.895-7.791-3.684 0-6.847 1.303-9.326 3.851l-.002.004-.004.004c-2.525 2.69-3.77 5.914-3.77 9.723 0 3.785 1.27 7.072 3.776 9.648 2.467 2.55 5.642 3.856 9.326 3.856 5.416 0 9.906-2.928 11.902-7.795l-.017.049 7.666 2.603C61.402 80.27 53.949 85.18 45.13 85.18c-6.244 0-11.249-1.974-15.428-6.075-4.136-4.057-6.226-9.107-6.226-15.1 0-6.033 2.077-11.109 6.226-15.179 4.179-4.1 9.184-6.072 15.428-6.072z"/></svg>
|
After Width: | Height: | Size: 3.4 KiB |
@ -1,4 +1 @@
|
||||
<svg width="128" height="128" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg">
|
||||
<path style="fill:#47474a;fill-opacity:1;fill-rule:evenodd;stroke:none" d="M17.813 45.707c-8.981 0-16.247 7.234-16.247 16.176 0 8.941 7.266 16.176 16.247 16.176 8.976 0 16.242-7.235 16.242-16.176 0-8.942-7.266-16.176-16.242-16.176zm-5.614 8.703c.946 0 1.832.121 2.54.414a7.683 7.683 0 0 1 2.187 1.293l-1.656 2.235a6.565 6.565 0 0 0-1.356-.762c-.414-.18-.945-.238-1.418-.238-2.008 0-3.012 1.53-3.012 4.648 0 1.59.235 2.707.766 3.352.531.707 1.242 1 2.246 1 .473 0 .945-.059 1.356-.235.414-.176.886-.41 1.476-.765l1.656 2.355c-1.359 1.117-2.894 1.645-4.668 1.645-1.418 0-2.597-.293-3.66-.883a5.915 5.915 0 0 1-2.363-2.586c-.531-1.117-.828-2.414-.828-3.942 0-1.472.297-2.824.828-3.941.531-1.176 1.36-2.059 2.363-2.707 1.004-.586 2.184-.883 3.543-.883zm4.961.414h4.078l2.832 11.707 3.016-11.707h3.957L26.433 69c-.59 1.824-1.476 3.176-2.714 4.176-1.242 1-2.895 1.531-4.965 1.707l-.41-2.707c1.355-.176 2.36-.469 3.011-.942.293-.234.707-.765.707-.765L17.16 54.824z"/>
|
||||
<path style="fill:#47474a;fill-opacity:1;fill-rule:nonzero;stroke:none" d="M43.977 54.41c1.832 0 3.191.649 4.015 1.942.887 1.296 1.301 3.18 1.301 5.53 0 1.47-.238 2.708-.648 3.884-.473 1.117-1.125 2.058-1.95 2.703-.828.648-1.832 1-3.015 1-1.477 0-2.657-.528-3.485-1.528v6.528l-3.777.414V54.824h3.363l.18 1.645a5.343 5.343 0 0 1 1.89-1.586 5.115 5.115 0 0 1 2.126-.473zm-1.418 12.18c1.832 0 2.777-1.531 2.777-4.649 0-1.707-.238-2.941-.648-3.648-.415-.703-1.067-1.059-1.891-1.059-.473 0-1.004.176-1.418.473-.473.352-.828.762-1.184 1.293v6.176c.594.941 1.36 1.414 2.364 1.414zm15.949-12.18c.414 0 .887.059 1.418.238l-.653 3.645a5.684 5.684 0 0 0-1.238-.176c-.828 0-1.476.293-1.95.883-.472.59-.827 1.469-1.12 2.707V69h-3.781V54.824h3.308l.352 2.766c.355-1 .828-1.766 1.476-2.356a3.27 3.27 0 0 1 2.188-.824zm14.469 7.18c0 .176 0 .644-.059 1.469h-8.86c.118 1.293.473 2.175 1.063 2.707.594.527 1.36.824 2.363.824.59 0 1.184-.121 1.715-.297.531-.176 1.121-.527 1.77-.941l1.597 2.117c-1.597 1.297-3.367 1.941-5.375 1.941-2.246 0-3.96-.644-5.14-2-1.18-1.351-1.774-3.117-1.774-5.41 0-1.469.239-2.766.77-3.883.531-1.176 1.238-2.058 2.246-2.707 1.004-.644 2.125-1 3.484-1 2.008 0 3.602.649 4.723 1.883.887 1.297 1.477 3 1.477 5.297zm-3.778-1.059c0-2.355-.828-3.531-2.543-3.531-.765 0-1.414.293-1.828.883-.414.586-.71 1.527-.828 2.824h5.2zm10.688-6.121c2.011 0 3.722.59 5.14 1.707l-1.476 2.176c-1.18-.762-2.364-1.117-3.543-1.117-.653 0-1.125.117-1.477.355-.355.235-.531.528-.531.938 0 .297.059.531.234.707.176.176.414.414.887.59.414.175 1.063.41 1.89.644 1.477.414 2.598.942 3.368 1.649.707.707 1.121 1.648 1.121 2.824 0 .941-.297 1.765-.828 2.469-.531.707-1.297 1.238-2.184 1.59-.945.351-1.949.527-3.133.527-1.18 0-2.3-.176-3.246-.528a7.263 7.263 0 0 1-2.539-1.53l1.887-2.06c1.184.942 2.484 1.415 3.781 1.415.711 0 1.301-.118 1.715-.414.414-.293.649-.645.649-1.118 0-.351-.059-.644-.235-.882-.18-.235-.472-.41-.887-.586-.414-.176-1.125-.414-2.007-.649-1.418-.41-2.48-.941-3.192-1.648-.707-.703-1.004-1.586-1.004-2.703 0-.825.239-1.532.707-2.176.473-.649 1.125-1.121 1.95-1.531.828-.47 1.832-.649 2.953-.649zm12.879 0c2.007 0 3.718.59 5.136 1.707l-1.476 2.176c-1.18-.762-2.364-1.117-3.543-1.117-.649 0-1.121.117-1.477.355-.355.235-.531.528-.531.938 0 .297.059.531.234.707.18.176.414.414.887.59.414.175 1.063.41 1.89.644 1.477.414 2.598.942 3.368 1.649.707.707 1.121 1.648 1.121 2.824a4.01 4.01 0 0 1-.824 2.469c-.531.707-1.301 1.238-2.188 1.59-.945.351-1.949.527-3.129.527-1.183 0-2.304-.176-3.25-.528a7.263 7.263 0 0 1-2.539-1.53l1.89-2.06c1.18.942 2.481 1.415 3.778 1.415.711 0 1.301-.118 1.715-.414.414-.293.649-.645.649-1.118 0-.351-.059-.644-.235-.882-.18-.235-.472-.41-.887-.586-.414-.176-1.12-.414-2.007-.649-1.418-.41-2.48-.941-3.192-1.648-.707-.703-1.004-1.586-1.004-2.703 0-.825.239-1.532.711-2.176.473-.649 1.121-1.121 1.95-1.531.824-.47 1.832-.649 2.953-.649zm9.449 10.414c.648 0 1.183.235 1.656.645.473.472.649 1 .649 1.59 0 .648-.239 1.175-.649 1.59-.473.468-1.008.703-1.656.703-.649 0-1.18-.235-1.594-.704-.473-.472-.648-1-.648-1.59 0-.648.234-1.175.648-1.59a2.19 2.19 0 0 1 1.594-.644zM110.543 69h-3.781V54.824h3.781zm-1.95-21.469c.712 0 1.243.235 1.657.645.41.414.648.941.648 1.59 0 .644-.238 1.175-.648 1.586-.414.414-1.004.648-1.656.648-.649 0-1.239-.234-1.653-.648a2.164 2.164 0 0 1-.652-1.586c0-.649.238-1.176.652-1.59.414-.41 1.004-.645 1.653-.645zM119.7 54.41c2.124 0 3.78.649 4.96 2 1.18 1.356 1.774 3.18 1.774 5.531 0 1.47-.297 2.825-.829 3.942-.53 1.117-1.359 2-2.363 2.648-1.004.645-2.242.938-3.66.938-2.129 0-3.781-.645-5.023-2-1.18-1.352-1.829-3.176-1.829-5.528 0-1.472.293-2.824.825-3.941.53-1.117 1.36-2 2.363-2.648 1.121-.645 2.363-.942 3.781-.942zm0 2.824c-.946 0-1.716.356-2.188 1.118-.473.765-.707 1.941-.707 3.53 0 1.587.234 2.766.707 3.528.472.766 1.183 1.121 2.129 1.121.945 0 1.652-.355 2.125-1.12.472-.763.71-1.942.71-3.528 0-1.59-.238-2.766-.71-3.531-.414-.762-1.121-1.118-2.067-1.118zm0 0"/>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="434.707" x2="796.936" y1="-3615.323" y2="-4002.476" gradientTransform="matrix(.05424 0 0 -.05424 -.38 -159.587)" gradientUnits="userSpaceOnUse"><stop offset=".094" stop-color="#58d09e"/><stop offset=".988" stop-color="#58d09e" stop-opacity="0"/></linearGradient><linearGradient id="b" x1="1.925" x2="693.949" y1="-4338.691" y2="-4522.885" gradientTransform="matrix(.05424 0 0 -.05424 -.38 -159.587)" gradientUnits="userSpaceOnUse"><stop offset=".077" stop-color="#58d09e"/><stop offset=".762" stop-color="#1b1e2e"/></linearGradient></defs><path fill="#69d3a7" d="M.917 70.837A25.852 25.852 0 0 1 0 64.003c0-10.588 6.65-20.27 16.543-24.088l1.302 3.357C9.324 46.56 3.602 54.891 3.602 64.002c0 1.997.265 3.977.786 5.886z"/><path fill="url(#a)" d="M45.664 53.773c-3.85-7.393-11.433-11.987-19.78-11.987-2.957 0-5.832.57-8.538 1.687l-1.383-3.325a25.807 25.807 0 0 1 9.92-1.963c9.698 0 18.501 5.331 22.976 13.923z"/><path fill="#1b1e2e" d="M104.318 55.14c-1.914 0-3.53.493-4.81 1.47-1.307.97-1.969 2.234-1.969 3.769 0 2.218 1.404 3.884 3.764 4.453.613.141 1.259.261 1.883.375 2.348.429 4.566.836 4.566 2.414 0 1.22-1.415 2.067-3.443 2.067-2.061 0-3.2-.826-3.477-2.524l-.033-.19-3.785.794.03.173c.554 3.054 3.267 4.875 7.265 4.875 2.028 0 3.77-.504 5.164-1.502 1.394-.981 2.097-2.25 2.097-3.77.011-3.964-3.513-4.632-6.355-5.163-2.067-.385-3.852-.727-3.852-2.164 0-1.14 1.216-1.936 2.951-1.936 1.92 0 2.966.824 3.215 2.516l.028.19 3.79-.792-.025-.173c-.51-3.01-3.196-4.881-7.004-4.881zm16.424 0c-1.915 0-3.53.493-4.81 1.47-1.307.97-1.97 2.234-1.97 3.769 0 2.218 1.405 3.884 3.765 4.453a42.8 42.8 0 0 0 1.882.375c2.349.429 4.567.836 4.567 2.414 0 1.22-1.415 2.067-3.444 2.067-2.06 0-3.2-.826-3.476-2.524l-.033-.19-3.785.794.03.173c.554 3.054 3.267 4.875 7.264 4.875 2.029 0 3.769-.504 5.168-1.502 1.394-.981 2.1-2.25 2.1-3.77.005-3.964-3.527-4.632-6.363-5.163-2.067-.385-3.85-.727-3.85-2.164 0-1.14 1.216-1.936 2.951-1.936 1.92 0 2.966.824 3.215 2.516l.028.19 3.79-.792-.027-.173c-.51-3.01-3.194-4.881-7.002-4.881zm-34.42.005c-2.5 0-4.616.851-6.303 2.533-1.703 1.703-2.564 3.83-2.564 6.33 0 2.484.873 4.606 2.604 6.293 1.735 1.703 3.838 2.531 6.425 2.531 3.504 0 6.521-1.778 8.067-4.762l.086-.174-3.205-1.42-.077.151c-.927 1.795-2.712 2.871-4.767 2.871-2.669 0-4.709-1.628-5.262-4.172h13.75l.018-.162c.298-2.75-.413-5.131-2.1-7.084-1.687-1.947-3.933-2.936-6.672-2.936zm-68.168.005c-2.587 0-4.692.83-6.427 2.534-1.725 1.692-2.604 3.818-2.604 6.33 0 2.484.873 4.604 2.604 6.29 1.735 1.704 3.84 2.534 6.427 2.534 3.678 0 6.807-2.055 8.168-5.363l.076-.18-3.515-1.193-.065.158c-.78 1.909-2.527 3.052-4.664 3.052-1.453 0-2.685-.51-3.656-1.507-.987-1.015-1.48-2.289-1.48-3.786 0-1.507.487-2.76 1.48-3.818.971-1.02 2.203-1.525 3.656-1.525 2.088 0 3.791 1.113 4.664 3.06l.07.15 3.51-1.193-.076-.177c-1.356-3.309-4.485-5.366-8.168-5.366zm37.225 0c-2.354 0-4.29.836-5.76 2.49v-2.17h-3.793v23.557h3.793v-8.683c1.47 1.649 3.406 2.488 5.76 2.488 2.37 0 4.393-.85 6.01-2.537 1.594-1.692 2.396-3.808 2.396-6.287 0-2.511-.802-4.638-2.396-6.324-1.617-1.682-3.64-2.534-6.01-2.534zm19.625.024c-1.926-.05-3.754.784-5.045 2.326v-2.03h-3.793v17.032h3.793v-9.605c0-1.54.618-2.718 1.844-3.499 1.215-.775 2.674-.923 4.459-.435l.226.066v-3.644l-.14-.033a6.48 6.48 0 0 0-1.344-.178zm-49.024.297 7.057 17.27-5.021 12.177 3.601.715L44.021 55.47h-3.894l-5.002 12.654-5.027-12.654H25.98zm60.342 3.006c2.381 0 4.28 1.485 4.893 3.812h-9.78c.673-2.327 2.571-3.812 4.887-3.812zm-31.562.199c1.453 0 2.685.51 3.656 1.508.976 1.008 1.447 2.256 1.447 3.818 0 1.54-.476 2.784-1.447 3.787-.97 1.004-2.203 1.508-3.656 1.508-1.476 0-2.667-.494-3.655-1.508-.987-1.014-1.482-2.29-1.482-3.787 0-1.54.484-2.793 1.482-3.818.988-1.02 2.18-1.508 3.655-1.508z"/><path fill="url(#b)" d="m28.66 83.35-.879 2.12a1.179 1.179 0 0 1-1.02.727 24.19 24.19 0 0 1-.894.022c-10.322-.005-19.456-7.284-21.723-17.313l-3.515.792c1.27 5.625 4.459 10.729 8.977 14.379a25.984 25.984 0 0 0 16.218 5.738h.054c.347 0 .689-.01 1.03-.021a4.775 4.775 0 0 0 4.204-2.951l1.144-2.777z"/></svg>
|
||||
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 4.0 KiB |
@ -1,4 +1 @@
|
||||
<svg width="128" height="128" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg">
|
||||
<path style="color:#000;fill:#4a4a4c;fill-rule:evenodd;stroke-width:1.77778;stroke-miterlimit:10;-inkscape-stroke:none" d="M63.11 16c-27.02 0-48.887 21.867-48.887 48.89 0 27.02 21.866 48.887 48.886 48.887 27.023 0 48.891-21.866 48.891-48.886C112 37.868 90.131 16 63.11 16zM46.222 42.133c2.843 0 5.511.355 7.644 1.246 2.313.887 4.446 2.133 6.578 3.91l-4.98 6.754c-1.422-1.066-2.844-1.777-4.086-2.309-1.246-.535-2.844-.71-4.27-.71-6.043 0-9.066 4.62-9.066 14.042 0 4.801.71 8.18 2.312 10.133 1.602 2.133 3.735 3.024 6.754 3.024 1.426 0 2.848-.18 4.09-.711 1.246-.535 2.668-1.246 4.446-2.313l4.976 7.114c-4.086 3.373-8.71 4.976-14.043 4.976-4.266 0-7.824-.89-11.023-2.668-3.02-1.777-5.512-4.441-7.11-7.82-1.6-3.38-2.488-7.29-2.488-11.91 0-4.446.887-8.536 2.488-11.914 1.598-3.555 4.09-6.223 7.11-8.176 3.023-1.602 6.578-2.668 10.668-2.668zm14.933 1.601h12.266l8.535 35.375 9.066-35.375h11.91L89.067 86.398C87.29 91.91 84.621 96 80.891 99.023c-3.735 3.02-8.711 4.622-14.934 5.157L64.711 96c4.09-.535 7.11-1.422 9.066-2.844.711-.535 2.133-2.133 2.133-2.133L61.156 43.734z"/>
|
||||
<path style="color:#000;fill:#fff;fill-rule:evenodd;stroke-miterlimit:10;-inkscape-stroke:none" d="M63.11 15.111c-27.5 0-49.776 22.276-49.776 49.78 0 27.498 22.276 49.775 49.775 49.775 27.503 0 49.78-22.276 49.78-49.775 0-27.503-22.278-49.78-49.78-49.78zm0 1.778c26.542 0 48.001 21.458 48.001 48.002 0 26.54-21.458 47.998-48.002 47.998-26.54 0-47.998-21.459-47.998-47.998 0-26.545 21.459-48.002 47.998-48.002z"/>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="b" x1="323.384" x2="56.936" y1="12.396" y2="577.503" gradientTransform="translate(-.876 -.754) scale(.13472)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#69d3a7"/><stop offset=".823" stop-color="#2ab586"/><stop offset="1" stop-color="#1cae7f"/></linearGradient><linearGradient id="a" x1="992.991" x2="568.87" y1="483.702" y2="758.304" gradientTransform="translate(-.876 -.754) scale(.13472)" gradientUnits="userSpaceOnUse"><stop offset=".081" stop-color="#69d3a7"/><stop offset="1" stop-color="#69d3a7" stop-opacity="0"/></linearGradient><linearGradient id="c" x1="5.828" x2="704.494" y1="697.848" y2="917.116" gradientTransform="translate(-.876 -.754) scale(.13472)" gradientUnits="userSpaceOnUse"><stop offset=".077" stop-color="#1cae7f"/><stop offset=".164" stop-color="#1ca379"/><stop offset=".316" stop-color="#1c8568"/><stop offset=".516" stop-color="#1b554d"/><stop offset=".719" stop-color="#1b1e2e"/></linearGradient></defs><path d="M44.984 50.817c5.173 0 9.377 2.762 11.532 7.558l.162.378 8.676-2.95-.175-.445c-3.355-8.192-11.101-13.27-20.195-13.27-6.4 0-11.6 2.047-15.897 6.264-4.271 4.19-6.427 9.458-6.427 15.655 0 6.157 2.17 11.397 6.427 15.574 4.297 4.217 9.498 6.264 15.897 6.264 9.094 0 16.827-5.092 20.195-13.27l.175-.444-8.69-2.95-.148.39c-1.94 4.729-6.251 7.544-11.532 7.544-3.597 0-6.642-1.253-9.04-3.732-2.439-2.505-3.665-5.671-3.665-9.376 0-3.732 1.2-6.83 3.665-9.458 2.411-2.479 5.443-3.732 9.04-3.732z" class="st0"/><path fill="url(#a)" d="m82.652 125.13-2.586-8.528c23.334-7.086 39.015-28.224 39.015-52.595 0-6.723-1.199-13.297-3.57-19.522l8.326-3.166A63.468 63.468 0 0 1 128 64.02c-.013 28.305-18.228 52.865-45.348 61.11Z"/><path fill="#69d3a7" d="M116.67 47.894C109.543 24.641 88.378 9.026 63.993 9.026a56.039 56.039 0 0 0-9.861.876l-1.577-8.77A64.836 64.836 0 0 1 63.993.108c28.319 0 52.906 18.147 61.191 45.159z"/><path fill="url(#b)" d="M4.096 86.532C1.374 79.338 0 71.753 0 64.007 0 31 24.776 3.664 57.634.43l.876 8.865C30.232 12.085 8.905 35.607 8.905 64.006a54.82 54.82 0 0 0 3.516 19.387z"/><path d="M64.33 42.896 81.79 85.63l-12.718 30.85 8.905 1.779 30.96-75.364h-9.62l-12.353 31.31-12.449-31.31z" class="st0"/><path fill="url(#c)" d="m70.675 112.601-1.872 4.54c-.431 1.038-1.415 1.752-2.52 1.792-.767.027-1.522.054-2.303.054-24.452 0-46.224-16.369-52.946-39.81l-8.569 2.451c7.814 27.228 33.102 46.25 61.501 46.264h.014c.889 0 1.778-.013 2.667-.054 4.567-.188 8.65-3.058 10.4-7.302l2.534-6.156z"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 2.5 KiB |
1
icons/cypressio/cypressio-plain-wordmark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#1b1e2e" d="M25.883 38.185c-3.228 0-6.362.59-9.336 1.739l-.004-.01c-.156.06-.309.126-.463.19-.039.015-.078.028-.117.044v.002C6.392 44.118 0 53.623 0 64.002c0 1.92.216 3.834.635 5.693l-.006.002c.02.087.044.172.064.258a26.907 26.907 0 0 0 .223.88 25.939 25.939 0 0 0 8.69 13.241 25.988 25.988 0 0 0 16.218 5.738h.053c.347 0 .69-.01 1.031-.021a4.773 4.773 0 0 0 4.203-2.95l.5-1.212.006.002L44.021 55.47h-3.894l-5.002 12.654-5.027-12.654H25.98l7.056 17.27-4.375 10.609h-.002l-.879 2.12a1.179 1.179 0 0 1-1.02.727c-.298.011-.595.022-.894.022-9.999-.005-18.883-6.836-21.49-16.381a21.698 21.698 0 0 1-.209-.836 22.392 22.392 0 0 1-.566-5c0-8.984 5.564-17.204 13.886-20.584a22.266 22.266 0 0 1 8.395-1.63c8.347 0 15.93 4.593 19.781 11.985l3.195-1.666c-4.474-8.591-13.278-13.921-22.976-13.921zm78.435 16.956c-1.914 0-3.53.492-4.81 1.468-1.307.971-1.969 2.235-1.969 3.77 0 2.218 1.404 3.884 3.764 4.453.613.141 1.259.261 1.883.375 2.348.429 4.566.836 4.566 2.414 0 1.22-1.415 2.067-3.443 2.067-2.061 0-3.2-.826-3.477-2.524l-.033-.19-3.785.794.03.173c.554 3.054 3.267 4.875 7.265 4.875 2.028 0 3.77-.504 5.164-1.502 1.394-.981 2.097-2.25 2.097-3.77.011-3.964-3.513-4.632-6.355-5.163-2.067-.385-3.852-.727-3.852-2.164 0-1.14 1.216-1.936 2.951-1.936 1.92 0 2.966.824 3.215 2.516l.028.19 3.79-.792-.025-.173c-.51-3.01-3.196-4.881-7.004-4.881zm16.424 0c-1.915 0-3.53.492-4.81 1.468-1.307.971-1.97 2.235-1.97 3.77 0 2.218 1.405 3.884 3.765 4.453a42.8 42.8 0 0 0 1.882.375c2.349.429 4.567.836 4.567 2.414 0 1.22-1.415 2.067-3.444 2.067-2.06 0-3.2-.826-3.476-2.524l-.033-.19-3.785.794.03.173c.554 3.054 3.267 4.875 7.264 4.875 2.029 0 3.769-.504 5.168-1.502 1.394-.981 2.1-2.25 2.1-3.77.005-3.964-3.527-4.632-6.363-5.163-2.067-.385-3.85-.727-3.85-2.164 0-1.14 1.216-1.936 2.951-1.936 1.92 0 2.966.824 3.215 2.516l.028.19 3.79-.792-.027-.173c-.51-3.01-3.194-4.881-7.002-4.881zm-34.42.004c-2.5 0-4.616.851-6.303 2.533-1.703 1.703-2.564 3.83-2.564 6.33 0 2.484.873 4.606 2.604 6.293 1.735 1.703 3.838 2.531 6.425 2.531 3.504 0 6.521-1.778 8.067-4.762l.086-.174-3.205-1.42-.077.151c-.927 1.795-2.712 2.871-4.767 2.871-2.669 0-4.709-1.628-5.262-4.172h13.75l.018-.162c.298-2.75-.413-5.131-2.1-7.084-1.687-1.947-3.933-2.936-6.672-2.936zm-68.168.005c-2.587 0-4.692.83-6.427 2.534-1.725 1.692-2.604 3.818-2.604 6.33 0 2.484.873 4.604 2.604 6.29 1.735 1.704 3.84 2.534 6.427 2.534 3.678 0 6.807-2.055 8.168-5.363l.076-.18-3.515-1.193-.065.158c-.78 1.909-2.527 3.052-4.664 3.052-1.453 0-2.685-.51-3.656-1.507-.987-1.015-1.48-2.289-1.48-3.786 0-1.507.487-2.76 1.48-3.818.971-1.02 2.203-1.525 3.656-1.525 2.088 0 3.791 1.113 4.664 3.06l.07.15 3.51-1.193-.076-.177c-1.356-3.309-4.485-5.366-8.168-5.366zm37.225 0c-2.354 0-4.29.836-5.76 2.49v-2.17h-3.793v23.557h3.793v-8.683c1.47 1.649 3.406 2.488 5.76 2.488 2.37 0 4.393-.85 6.01-2.537 1.594-1.692 2.396-3.808 2.396-6.287 0-2.511-.802-4.638-2.396-6.324-1.617-1.682-3.64-2.534-6.01-2.534zm19.625.024c-1.926-.05-3.754.784-5.045 2.326v-2.03h-3.793v17.032h3.793v-9.605c0-1.54.618-2.718 1.844-3.499 1.215-.775 2.674-.923 4.459-.435l.226.066v-3.644l-.14-.033a6.48 6.48 0 0 0-1.344-.178zm11.318 3.303c2.381 0 4.28 1.485 4.893 3.812h-9.78c.673-2.327 2.571-3.812 4.887-3.812zm-31.562.199c1.453 0 2.685.51 3.656 1.508.976 1.008 1.447 2.256 1.447 3.818 0 1.54-.476 2.784-1.447 3.787-.97 1.004-2.203 1.508-3.656 1.508-1.476 0-2.667-.494-3.655-1.508-.987-1.014-1.482-2.29-1.482-3.787 0-1.54.484-2.793 1.482-3.818.988-1.02 2.18-1.508 3.655-1.508z"/></svg>
|
After Width: | Height: | Size: 3.5 KiB |
1
icons/cypressio/cypressio-plain.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#1b1e2e" d="M63.994.107c-2.123 0-4.249.119-6.36.329V.431c-.11.01-.217.03-.327.04-.827.087-1.65.184-2.471.301-.32.046-.638.1-.957.15-.441.07-.886.129-1.324.208l.004.016C22.26 6.55 0 32.723 0 64.005c0 6.006.837 11.913 2.477 17.619l-.012.004c.158.55.334 1.091.506 1.635.068.215.13.433.2.648 8.542 26 33.198 43.967 60.796 43.98h.014c.889 0 1.776-.014 2.665-.054 4.568-.189 8.652-3.057 10.403-7.3l2.531-6.16-.008-.001 29.365-71.48h-9.619L86.963 74.204 74.516 42.897H64.33l17.461 42.732-12.719 30.851h.002l-.271.66c-.431 1.038-1.415 1.753-2.52 1.794a65.02 65.02 0 0 1-2.303.052c-24.452 0-46.224-16.368-52.947-39.81a54.973 54.973 0 0 1-2.129-15.17c0-27.224 19.603-49.953 46.135-54.246.4-.065.8-.131 1.203-.188.453-.063.91-.115 1.367-.168a56.055 56.055 0 0 1 6.385-.377c23.516 0 44.034 14.524 51.858 36.414a55.722 55.722 0 0 1 .79 2.37 54.784 54.784 0 0 1 2.44 16.195c0 24.371-15.682 45.51-39.016 52.596l2.586 8.529c27.12-8.245 45.334-32.806 45.348-61.112 0-6.42-.96-12.698-2.822-18.75l.006-.002-.075-.228a63.602 63.602 0 0 0-.619-1.88 65.225 65.225 0 0 0-.34-.96c-.106-.292-.201-.587-.312-.879l-.014.006C114.444 16.508 90.91.107 63.994.107zm-19.01 41.981c-6.399 0-11.6 2.047-15.898 6.264-4.27 4.19-6.426 9.457-6.426 15.654 0 6.157 2.169 11.398 6.426 15.574 4.298 4.217 9.5 6.266 15.898 6.266 9.094 0 16.828-5.094 20.196-13.272l.173-.443-8.689-2.951-.148.39c-1.94 4.73-6.25 7.545-11.532 7.545-3.597 0-6.643-1.253-9.04-3.732-2.44-2.506-3.665-5.672-3.665-9.377 0-3.732 1.199-6.83 3.664-9.457 2.412-2.479 5.444-3.73 9.041-3.73 5.174 0 9.376 2.76 11.532 7.556l.162.377 8.676-2.95-.174-.444c-3.355-8.192-11.102-13.27-20.196-13.27z"/></svg>
|
After Width: | Height: | Size: 1.7 KiB |
1
icons/detaspace/detaspace-line-wordmark.svg
Normal file
After Width: | Height: | Size: 9.9 KiB |
1
icons/detaspace/detaspace-line.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f73b95" d="M64.002 0c-35.34 0-64 28.66-64 64.002S28.662 128 64.002 128s63.996-28.656 63.996-63.996v-.002C127.998 28.662 99.344 0 64.002 0m0 .992c34.806 0 63.006 28.207 63.006 63.01v.002c0 34.804-28.201 63.004-63.006 63.004-34.803 0-63.01-28.2-63.01-63.006S29.2.992 64.002.992M63.998 12.7c-28.328 0-51.297 22.974-51.297 51.303 0 28.324 22.97 51.297 51.297 51.297 28.325 0 51.3-22.973 51.3-51.297 0-28.329-22.975-51.3-51.3-51.3zm0 .994c27.789 0 50.309 22.516 50.309 50.309 0 27.788-22.521 50.305-50.309 50.305-27.793 0-50.305-22.517-50.305-50.305 0-27.793 22.513-50.309 50.305-50.309m.004 11.711c-21.314 0-38.6 17.286-38.6 38.6 0 21.31 17.286 38.592 38.6 38.592 21.31 0 38.596-17.282 38.596-38.592 0-21.314-17.286-38.6-38.596-38.6m0 .992c20.773 0 37.603 16.83 37.603 37.608 0 20.773-16.83 37.6-37.603 37.6-20.778 0-37.607-16.827-37.607-37.6 0-20.778 16.83-37.608 37.607-37.608m-.004 11.706c-14.298 0-25.896 11.601-25.896 25.9 0 14.294 11.601 25.896 25.9 25.896 14.294 0 25.896-11.602 25.896-25.896 0-14.299-11.605-25.9-25.9-25.9m0 .992c13.758 0 24.908 11.146 24.908 24.908 0 13.757-11.147 24.904-24.904 24.904-13.762 0-24.908-11.147-24.908-24.904 0-13.762 11.142-24.908 24.904-24.908"/></svg>
|
After Width: | Height: | Size: 1.2 KiB |
1
icons/detaspace/detaspace-original-wordmark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f73b95" d="M16.703 47.297c9.225 0 16.704 7.478 16.704 16.703s-7.479 16.703-16.704 16.703S0 73.225 0 64s7.478-16.703 16.703-16.703"/><path fill="#bd399c" d="M16.743 50.558c7.468 0 13.522 6.054 13.522 13.522S24.21 77.602 16.743 77.602 3.221 71.548 3.221 64.08s6.054-13.522 13.522-13.522"/><path fill="#93388e" d="M16.743 54.137c5.491 0 9.942 4.452 9.942 9.943s-4.451 9.942-9.942 9.942-9.942-4.451-9.942-9.942 4.45-9.943 9.942-9.943"/><path fill="#6030a2" d="M16.664 57.16a6.76 6.76 0 1 1 0 13.521 6.76 6.76 0 0 1 0-13.522z"/><path fill="#fdf3f8" d="M42.567 70.204V57.92h4.776c3.385 0 5.463 2.2 5.463 6.15 0 3.952-2.01 6.134-5.411 6.134zm2.044-10.549v8.814h2.629c2.749 0 3.522-2.045 3.522-4.398 0-2.354-.773-4.416-3.522-4.416zm13.528 9.33c1.495 0 2.096-.928 2.251-1.461h1.804c-.447 1.666-1.752 2.938-4.003 2.938-2.732 0-4.398-1.89-4.398-4.639 0-2.852 1.666-4.639 4.312-4.639 2.835 0 4.226 1.976 4.226 5.103h-6.734c0 1.477.945 2.697 2.542 2.697zm-.034-6.375c-1.46 0-2.508.98-2.508 2.337h4.93c0-1.357-.962-2.337-2.422-2.337m9.488.292h-1.65v4.76c0 .996.481 1.116 1.65 1.047v1.478a5.2 5.2 0 0 1-1.237.137c-1.444 0-2.234-.653-2.234-2.508v-4.914h-1.271v-1.477h1.271v-2.766h1.821v2.766h1.65zm6.67.825c0-.636-.378-1.117-1.58-1.117-1.444 0-1.977.447-2.062 1.58h-1.753c.086-1.683 1.168-3.006 3.814-3.006 1.942 0 3.385.74 3.385 3.076v4.174c0 .619.137.945.842.877v.859a2.7 2.7 0 0 1-1.048.189c-.963 0-1.41-.344-1.581-1.203h-.034c-.55.773-1.547 1.306-2.904 1.306-1.787 0-2.886-1.031-2.886-2.509 0-1.924 1.426-2.525 3.625-2.955 1.357-.257 2.182-.43 2.182-1.271m-2.526 5.309c1.495 0 2.526-.739 2.526-2.165v-1.323c-.292.206-.997.412-1.839.584-1.494.327-2.147.756-2.147 1.65 0 .807.481 1.254 1.46 1.254m14.343-6.15c2.629.67 4.622 1.236 4.622 3.985 0 1.959-1.478 3.59-4.57 3.59-3.007 0-5.292-1.563-5.412-4.346h2.045c.103 1.564 1.168 2.594 3.367 2.594 1.821 0 2.525-.807 2.525-1.752 0-1.46-1.048-1.735-3.47-2.337-1.924-.48-4.003-1.22-4.003-3.556 0-2.182 1.684-3.402 4.364-3.402 2.697 0 4.656 1.41 4.828 3.935H88.33c-.189-1.426-1.082-2.182-2.783-2.182-1.46 0-2.337.55-2.337 1.46 0 1.34 1.151 1.58 2.87 2.01zm10.58-1.702c2.234 0 3.9 1.753 3.9 4.639s-1.666 4.639-3.9 4.639c-1.374 0-2.233-.653-2.697-1.306h-.034v4.038h-1.821v-11.77h1.82v1.032h.035c.464-.619 1.323-1.272 2.698-1.272zm-.343 7.8c1.58 0 2.423-1.443 2.423-3.161s-.842-3.161-2.423-3.161c-1.46 0-2.371 1.202-2.371 3.161 0 1.941.91 3.161 2.371 3.161m10.864-5.257c0-.636-.378-1.117-1.58-1.117-1.444 0-1.976.447-2.062 1.58h-1.753c.086-1.683 1.169-3.006 3.814-3.006 1.942 0 3.385.74 3.385 3.076v4.174c0 .619.137.945.842.877v.859a2.7 2.7 0 0 1-1.048.189c-.962 0-1.409-.344-1.58-1.203h-.035c-.55.773-1.547 1.306-2.904 1.306-1.787 0-2.886-1.031-2.886-2.509 0-1.924 1.426-2.525 3.625-2.955 1.357-.257 2.182-.43 2.182-1.271m-2.526 5.309c1.495 0 2.526-.739 2.526-2.165v-1.323c-.292.206-.996.412-1.838.584-1.495.327-2.148.756-2.148 1.65 0 .807.481 1.254 1.46 1.254m12.275-4.398c-.069-.894-.636-1.976-2.182-1.976-1.77 0-2.525 1.512-2.525 3.161s.738 3.161 2.525 3.161c1.546 0 2.113-1.065 2.182-2.044h1.804c-.137 2.027-1.7 3.522-3.986 3.522-2.629 0-4.33-1.89-4.33-4.639s1.701-4.639 4.313-4.639c2.285 0 3.78 1.46 4.003 3.454zm6.878 4.346c1.495 0 2.096-.927 2.25-1.46h1.805c-.447 1.666-1.753 2.938-4.004 2.938-2.731 0-4.398-1.89-4.398-4.639 0-2.852 1.667-4.639 4.313-4.639 2.834 0 4.226 1.976 4.226 5.103h-6.735c0 1.477.945 2.697 2.543 2.697m-.034-6.374c-1.46 0-2.509.98-2.509 2.337h4.931c0-1.357-.962-2.337-2.422-2.337"/></svg>
|
After Width: | Height: | Size: 3.4 KiB |
1
icons/detaspace/detaspace-original.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f73b95" d="M128 64.003C128 99.349 99.348 128 64.001 128c-35.345 0-64-28.65-64-63.998S28.657 0 64.002 0C99.35 0 128 28.657 128 64.002Zm0 0"/><path fill="#bd399c" d="M115.204 64.003c0 28.275-22.926 51.201-51.202 51.201-28.28 0-51.2-22.926-51.2-51.201 0-28.28 22.921-51.2 51.2-51.2 28.276 0 51.202 22.92 51.202 51.2m0 0"/><path fill="#93388e" d="M102.399 64.003c0 21.206-17.19 38.396-38.397 38.396-21.21 0-38.4-17.19-38.4-38.396 0-21.21 17.19-38.4 38.4-38.4 21.206 0 38.397 17.19 38.397 38.4m0 0"/><path fill="#6030a2" d="M89.603 64.003c0 14.135-11.465 25.6-25.6 25.6-14.14 0-25.601-11.465-25.601-25.6 0-14.14 11.46-25.6 25.6-25.6 14.136 0 25.601 11.46 25.601 25.6m0 0"/></svg>
|
After Width: | Height: | Size: 750 B |
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 5.8 KiB |
@ -1 +1 @@
|
||||
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><g fill-rule="nonzero" fill="#0080FF"><path d="M63.724 110.725V92.543c19.352 0 34.282-19.008 26.817-39.118-2.765-7.438-8.57-13.499-16.312-16.254-19.905-7.162-38.982 7.714-38.982 26.722H17c0-30.303 29.582-54.27 61.93-44.352 14.1 4.407 25.158 15.427 29.582 29.476 9.953 32.231-14.1 61.708-44.788 61.708z"/><path d="M64 92.543H45.753V74.637H64v17.906zm-18.247 14.05H31.929v-14.05h13.824v14.05zm-13.824-14.05H20.318v-11.57h11.611v11.57z"/></g></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#0080ff" d="M64.1424 102.9593H39.2391V78.5231h24.9033ZM39.2391 122.132H20.3732v-19.1726h18.866Zm-18.8659-19.1726H4.5301v-15.792h15.8431Zm43.3934 24.8132v-24.8132c26.4107 0 46.784-25.9396 36.5973-53.3885-3.7744-10.1506-11.694-18.419-22.2605-22.1813-27.1663-9.7717-53.2 10.5274-53.2 36.468H0C0 22.5037 40.3707-10.206 84.5197 3.3281c19.2427 6.0173 34.3342 21.0547 40.3706 40.2293 13.5812 43.9857-19.2457 84.215-61.1237 84.215Zm0 0"/></svg>
|
||||
|
Before Width: | Height: | Size: 507 B After Width: | Height: | Size: 511 B |
Before Width: | Height: | Size: 4.9 KiB |
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><g fill-rule="nonzero" fill="#000"><path d="M63.724 110.725V92.543c19.352 0 34.282-19.008 26.817-39.118-2.765-7.438-8.57-13.499-16.312-16.254-19.905-7.162-38.982 7.714-38.982 26.722H17c0-30.303 29.582-54.27 61.93-44.352 14.1 4.407 25.158 15.427 29.582 29.476 9.953 32.231-14.1 61.708-44.788 61.708z"/><path d="M64 92.543H45.753V74.637H64v17.906zm-18.247 14.05H31.929v-14.05h13.824v14.05zm-13.824-14.05H20.318v-11.57h11.611v11.57z"/></g></svg>
|
Before Width: | Height: | Size: 504 B |
1
icons/eslint/eslint-line-wordmark.svg
Normal file
After Width: | Height: | Size: 5.1 KiB |
1
icons/eslint/eslint-line.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#4b32c3" d="M35.173 7.625c-2.264 0-4.341 1.442-5.545 3.413l-.004.003L.833 61.143l-.002.004a6.622 6.622 0 0 0 0 6.423l.002.004 28.783 49.78c1.12 2.016 3.264 3.021 5.557 3.021h57.672c2.197 0 4.313-.996 5.539-2.89l.005-.01 28.801-49.808.006-.014c1.087-2.173 1.099-4.534-.13-6.432L98.299 11.055l-.002-.002c-1.105-1.987-3.197-3.428-5.552-3.428Zm0 .992h57.57c1.947 0 3.743 1.22 4.687 2.918l.002.004 28.793 50.209.008.012c1.025 1.583 1.037 3.523.078 5.446l-28.763 49.743c-1.029 1.588-2.804 2.434-4.703 2.434H35.173c-2.01 0-3.76-.838-4.688-2.51l-.002-.004L1.699 67.09v-.002a5.635 5.635 0 0 1 0-5.457v-.002l28.78-50.081.002-.004c1.05-1.712 2.862-2.926 4.692-2.926Zm28.785 10.787a2.344 2.344 0 0 0-1.3.391l.027-.017-36.774 21.204.052-.025c-.911.39-1.428 1.29-1.428 2.198v42.51c0 .954.65 1.69 1.349 2.155l.013.01 36.76 21.092a2.35 2.35 0 0 0 2.6 0l-.027.017 36.673-21.204-.052.025c.736-.315 1.126-.986 1.283-1.701h.246V43.155c0-.954-.647-1.69-1.347-2.156l-.014-.01-36.79-21.211.028.017a2.34 2.34 0 0 0-1.299-.391zm0 .992c.263 0 .525.076.748.225l.014.01 36.764 21.198c.528.353.903.846.903 1.325v41.912h-.102v.496c0 .529-.303 1.063-.826 1.287l-.027.012-36.712 21.225-.014.01a1.371 1.371 0 0 1-1.498 0l-.013-.01-36.76-21.091v-.002c-.53-.353-.908-.848-.908-1.328v-42.51c0-.528.305-1.063.828-1.287l.027-.012 36.813-21.225.013-.01c.223-.148.487-.225.75-.225zm-.052 13.733c-.41 0-.818.095-1.194.283l-.014.008-24.085 13.938.027-.014a2.364 2.364 0 0 0-1.3 2.082V78.29c0 .906.489 1.778 1.3 2.184l-.027-.013L62.8 94.401l.014.006a2.666 2.666 0 0 0 2.388 0l.013-.008 24.101-13.946.014-.01c.72-.48 1.244-1.247 1.244-2.153V50.426a2.36 2.36 0 0 0-1.298-2.081l.027.013-24.19-13.94-.014-.006a2.668 2.668 0 0 0-1.194-.283zm0 .992c.254 0 .51.06.746.177l24.17 13.928.013.006c.417.21.748.8.748 1.194v27.865c0 .528-.293.987-.8 1.326L64.757 93.52a1.67 1.67 0 0 1-1.496 0L39.095 79.593l-.013-.006c-.418-.208-.75-.768-.75-1.296V50.426c0-.394.332-.985.75-1.194l.013-.008L63.16 35.298a1.679 1.679 0 0 1 .746-.177"/></svg>
|
After Width: | Height: | Size: 2.0 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#8080F2" d="M13 55.2l6.9-4c.2-.1.4-.1.6 0l6.9 4c.2.1.3.3.3.5v8c0 .2-.1.4-.3.5l-6.9 4c-.2.1-.4.1-.6 0l-6.9-4c-.2-.1-.3-.3-.3-.5v-8c0-.2.1-.4.3-.5"/><path fill="#4B32C3" d="M38.1 58.9l-8.2-14.3c-.3-.5-.9-.9-1.4-.9H11.9c-.6 0-1.2.4-1.5.9L2.2 58.8c-.3.5-.3 1.2 0 1.7l8.2 14.2c.3.5.9.8 1.5.8h16.5c.6 0 1.2-.3 1.4-.8L38 60.5c.4-.5.4-1.1.1-1.6m-6.9 6.9c0 .2-.1.4-.3.5l-10.5 6.1c-.2.1-.4.1-.6 0L9.4 66.3c-.2-.1-.4-.3-.4-.5V53.7c0-.2.1-.4.3-.5l10.5-6.1c.2-.1.4-.1.6 0l10.5 6.1c.2.1.3.3.3.5v12.1z"/><path fill="#666" d="M47.5 49h12.8v2.4h-10v7h8.4v2.4h-8.4v8.1h10.3v2.4H47.5V49zM62 68.4l1.6-1.8c1.6 1.7 3.9 2.7 6.2 2.7 2.9 0 4.6-1.5 4.6-3.6 0-2.3-1.6-3-3.7-3.9l-3.2-1.4c-2.1-.9-4.5-2.5-4.5-5.7 0-3.4 2.9-5.9 7-5.9 2.7 0 5 1.1 6.6 2.7l-1.5 1.8c-1.4-1.2-3.1-2-5.1-2-2.5 0-4.1 1.3-4.1 3.3 0 2.1 1.9 2.9 3.7 3.7l3.2 1.4c2.6 1.1 4.6 2.6 4.6 5.9 0 3.5-2.8 6.3-7.6 6.3-3.2-.2-5.9-1.5-7.8-3.5zM79.9 49h2.8v19.8h9.7v2.4H79.9V49zm14 .6c0-1.1.8-1.8 1.9-1.8s1.9.7 1.9 1.8-.8 1.8-1.9 1.8-1.9-.7-1.9-1.8zm.5 5.2h2.8v16.5h-2.8V54.8zm6.6 0h2.3l.2 2.4h.1c1.6-1.6 3.3-2.8 5.5-2.8 3.5 0 5 2.2 5 6.4v10.4h-2.8v-10c0-3.1-1-4.4-3.1-4.4-1.7 0-2.8.9-4.5 2.5v11.9H101V54.8zm17.2 11.3v-9h-2.4V55l2.6-.2.3-5.3h2.3v5.3h4.4v2.3H121v9.1c0 2 .6 3.2 2.5 3.2.6 0 1.2-.1 1.9-.4l.6 2c-.9.4-2 .7-3.1.7-3.5-.1-4.7-2.3-4.7-5.6z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#8080f2" d="m11.378 59.459 7.121-4.128a.658.658 0 0 1 .62 0l7.121 4.128c.206.103.31.31.31.516v8.256a.568.568 0 0 1-.31.516l-7.121 4.129a.658.658 0 0 1-.62 0l-7.12-4.129a.567.567 0 0 1-.31-.516v-8.256c0-.206.103-.413.31-.516"/><path fill="#4b32c3" d="M37.283 63.278 28.82 48.519c-.31-.516-.929-.929-1.445-.929H10.243c-.62 0-1.238.413-1.548.93L.232 63.173a1.773 1.773 0 0 0 0 1.755l8.463 14.655c.31.516.929.826 1.548.826h17.029c.62 0 1.238-.31 1.445-.826l8.463-14.655c.412-.516.412-1.135.103-1.651m-7.121 7.12a.567.567 0 0 1-.31.517L19.016 77.21a.658.658 0 0 1-.62 0L7.663 70.915c-.206-.104-.413-.31-.413-.516V57.91c0-.206.103-.413.31-.516L18.396 51.1a.658.658 0 0 1 .62 0l10.836 6.295c.206.103.31.31.31.516z"/><path fill="#666" d="M46.984 53.06h13.21v2.477h-10.32v7.224h8.669v2.477h-8.67v8.36h10.631v2.477h-13.52Zm14.965 20.022 1.651-1.858c1.651 1.755 4.025 2.787 6.399 2.787 2.993 0 4.747-1.548 4.747-3.716 0-2.373-1.651-3.096-3.818-4.025l-3.303-1.444c-2.167-.93-4.644-2.58-4.644-5.883 0-3.509 2.993-6.09 7.224-6.09 2.787 0 5.16 1.136 6.812 2.787l-1.548 1.858c-1.445-1.238-3.2-2.064-5.264-2.064-2.58 0-4.231 1.342-4.231 3.406 0 2.167 1.96 2.993 3.819 3.818l3.302 1.445c2.683 1.135 4.748 2.683 4.748 6.09 0 3.611-2.89 6.501-7.844 6.501-3.303-.206-6.09-1.548-8.05-3.612zM80.423 53.06h2.89v20.435h10.01v2.477h-12.9Zm14.448.62c0-1.136.826-1.858 1.961-1.858 1.135 0 1.961.722 1.961 1.857s-.826 1.858-1.96 1.858c-1.136 0-1.962-.722-1.962-1.858zm.516 5.366h2.89v17.029h-2.89zm6.812 0h2.374l.206 2.477h.103c1.652-1.651 3.406-2.89 5.677-2.89 3.612 0 5.16 2.27 5.16 6.605v10.734h-2.89v-10.32c0-3.2-1.032-4.542-3.2-4.542-1.754 0-2.89.93-4.644 2.58v12.282H102.2zm17.751 11.662V61.42h-2.477v-2.167l2.683-.207.31-5.47h2.374v5.47h4.54v2.374h-4.54v9.392c0 2.064.619 3.302 2.58 3.302.62 0 1.238-.103 1.96-.413l.62 2.064c-.929.413-2.064.723-3.2.723-3.611-.103-4.85-2.374-4.85-5.78z"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.9 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#8080F2" d="M39.5 49.2L63 35.6c.6-.3 1.3-.3 1.9 0l23.6 13.6c.6.3 1 1 1 1.6V78c0 .7-.4 1.3-1 1.7L65 93.3c-.6.3-1.3.3-1.9 0L39.5 79.7c-.6-.3-1-1-1-1.7V50.8c0-.6.4-1.3 1-1.6"/><path fill="#4B32C3" d="M125.2 61.6l-28.1-49c-1-1.8-2.9-3.1-5-3.1H35.9c-2 0-3.9 1.3-5 3.1L2.8 61.5c-1 1.8-1 4 0 5.8l28.1 48.6c1 1.8 2.9 2.7 5 2.7h56.3c2 0 3.9-.9 5-2.6l28.1-48.6c1-2 1-4.1-.1-5.8m-23.3 23.5c0 .7-.4 1.4-1.1 1.7L65 107.5c-.6.4-1.4.4-2 0L27.1 86.9c-.6-.4-1.1-1-1.1-1.7V43.7c0-.7.4-1.4 1.1-1.7L63 21.3c.6-.4 1.4-.4 2 0L100.9 42c.6.4 1.1 1 1.1 1.7v41.4z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#8080f2" d="m38.662 48.67 24.26-14.04a2.187 2.187 0 0 1 1.962 0l24.363 14.04c.62.31 1.033 1.032 1.033 1.651v28.08c0 .723-.413 1.342-1.033 1.755l-24.26 14.04a2.187 2.187 0 0 1-1.962 0l-24.363-14.04c-.62-.31-1.033-1.032-1.033-1.755v-28.08c0-.62.413-1.342 1.033-1.651"/><path fill="#4b32c3" d="m127.135 61.47-29.01-50.585c-1.032-1.858-2.993-3.2-5.161-3.2H34.945c-2.064 0-4.026 1.342-5.161 3.2L.774 61.368a6.175 6.175 0 0 0 0 5.987l29.01 50.173c1.032 1.858 2.993 2.787 5.161 2.787h58.122c2.065 0 4.026-.929 5.162-2.684l29.01-50.173c1.032-2.064 1.032-4.232-.104-5.987M103.08 85.73c0 .723-.413 1.445-1.136 1.755l-36.958 21.37a1.875 1.875 0 0 1-2.065 0l-37.06-21.266c-.62-.413-1.136-1.032-1.136-1.755V42.991c0-.722.413-1.445 1.136-1.754l37.061-21.37a1.875 1.875 0 0 1 2.065 0l37.062 21.37c.619.412 1.135 1.032 1.135 1.754v42.74z"/></svg>
|
||||
|
Before Width: | Height: | Size: 621 B After Width: | Height: | Size: 905 B |
1
icons/eslint/eslint-plain-wordmark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#4b32c3" d="M10.242 47.59c-.619 0-1.237.413-1.547.93L.232 63.173c-.31.516-.31 1.24 0 1.756l8.463 14.654c.31.516.928.826 1.547.826h17.03c.619 0 1.238-.31 1.445-.826L37.18 64.93c.412-.516.413-1.137.103-1.653L28.82 48.52c-.31-.516-.929-.93-1.445-.93zm8.463 3.431c.103 0 .207.027.31.079l10.837 6.295c.206.103.31.309.31.515v12.488a.568.568 0 0 1-.31.516l-10.836 6.297a.658.658 0 0 1-.62 0L7.663 70.914c-.206-.103-.412-.31-.412-.516V57.91c0-.206.104-.412.31-.515L18.396 51.1a.684.684 0 0 1 .309-.078zm78.127.801c-1.135 0-1.96.722-1.96 1.858 0 1.135.825 1.857 1.96 1.857s1.961-.722 1.961-1.857c0-1.136-.826-1.858-1.961-1.858m-26.627 1.031c-4.231 0-7.224 2.581-7.224 6.09 0 3.303 2.477 4.954 4.644 5.883l3.303 1.446c2.167.928 3.818 1.65 3.818 4.023 0 2.167-1.755 3.717-4.748 3.717-2.374 0-4.747-1.033-6.398-2.787l-1.65 1.857c1.96 2.064 4.745 3.405 8.048 3.611 4.954 0 7.844-2.89 7.844-6.502 0-3.405-2.063-4.952-4.746-6.088l-3.303-1.445c-1.858-.825-3.818-1.65-3.818-3.818 0-2.064 1.65-3.406 4.23-3.406 2.064 0 3.819.826 5.264 2.064l1.549-1.857c-1.652-1.652-4.026-2.787-6.813-2.787zm-23.22.207v23.014h13.519v-2.476H49.873v-8.36h8.67v-2.476h-8.67v-7.225h10.32V53.06H46.984zm33.437 0v22.913h12.9v-2.479h-10.01V53.06zm40.045.516-.31 5.47-2.684.206v2.168h2.476v9.289c0 3.406 1.24 5.676 4.852 5.78 1.135 0 2.27-.31 3.199-.723l-.62-2.065a4.785 4.785 0 0 1-1.96.412c-1.961 0-2.58-1.236-2.58-3.3V61.42h4.54v-2.373h-4.54v-5.47h-2.373zM18.809 55.254a.681.681 0 0 0-.309.076l-7.121 4.129a.568.568 0 0 0-.31.516v8.256a.57.57 0 0 0 .31.517l7.121 4.127a.658.658 0 0 0 .62 0l7.12-4.127a.569.569 0 0 0 .309-.517v-8.256a.566.566 0 0 0-.309-.516l-7.12-4.129a.69.69 0 0 0-.311-.076m91.75 3.379c-2.27 0-4.025 1.24-5.676 2.89h-.104l-.207-2.476H102.2v16.926h2.785V63.69c1.755-1.652 2.89-2.58 4.645-2.58 2.167 0 3.2 1.341 3.2 4.54v10.323h2.89V65.238c0-4.334-1.548-6.605-5.16-6.605zm-15.172.414v17.027h2.89V59.047z"/></svg>
|
After Width: | Height: | Size: 1.9 KiB |
1
icons/eslint/eslint-plain.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#4b32c3" d="M34.945 7.686c-2.064 0-4.026 1.34-5.162 3.199L.773 61.367a6.177 6.177 0 0 0 0 5.988l29.01 50.172c1.033 1.859 2.994 2.787 5.162 2.787h58.121c2.065 0 4.027-.928 5.162-2.683l29.01-50.172c1.033-2.065 1.032-4.233-.103-5.988l-29.01-50.586c-1.032-1.858-2.992-3.2-5.16-3.2h-58.02zm29.01 11.87c.361 0 .722.105 1.031.311l37.063 21.37c.62.412 1.135 1.032 1.135 1.755v42.739h-.104c0 .722-.412 1.446-1.135 1.755l-36.959 21.37a1.875 1.875 0 0 1-2.064 0L25.862 87.59c-.62-.413-1.137-1.033-1.137-1.756V42.992c0-.723.414-1.446 1.136-1.756l37.061-21.369c.31-.206.672-.31 1.033-.31zm-.053 14.84a2.19 2.19 0 0 0-.98.233L38.662 48.67c-.62.31-1.033 1.031-1.033 1.65v28.082c0 .723.414 1.445 1.033 1.754l24.363 14.041a2.185 2.185 0 0 0 1.961 0l24.262-14.04c.62-.414 1.031-1.032 1.031-1.755V50.32c0-.619-.412-1.34-1.031-1.65L64.883 34.629a2.19 2.19 0 0 0-.98-.232z"/></svg>
|
After Width: | Height: | Size: 935 B |
1
icons/filezilla/filezilla-line-wordmark.svg
Normal file
After Width: | Height: | Size: 12 KiB |
1
icons/filezilla/filezilla-line.svg
Normal file
After Width: | Height: | Size: 8.0 KiB |
1
icons/filezilla/filezilla-original-wordmark.svg
Normal file
After Width: | Height: | Size: 12 KiB |
1
icons/filezilla/filezilla-original.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="187.947" x2="187.947" y1="123.859" y2="258.865" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#bf0000"/><stop offset="1" stop-color="#8f0000"/></linearGradient><linearGradient xlink:href="#a" id="b" x1="187.947" x2="187.947" y1="123.859" y2="258.865" gradientTransform="matrix(.73244 0 0 .73242 -73.663 -75.173)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" d="M0 4.286v5.65a4.29 4.29 0 0 1 4.286 4.286A4.29 4.29 0 0 1 0 18.508v5.65a4.29 4.29 0 0 1 4.286 4.285A4.29 4.29 0 0 1 0 32.729v5.65a4.291 4.291 0 0 1 4.286 4.288A4.291 4.291 0 0 1 0 46.955v5.65a4.29 4.29 0 0 1 4.286 4.285A4.29 4.29 0 0 1 0 61.176v5.65a4.29 4.29 0 0 1 4.286 4.285A4.29 4.29 0 0 1 0 75.398v5.65a4.29 4.29 0 0 1 4.286 4.285A4.29 4.29 0 0 1 0 89.619v5.65a4.29 4.29 0 0 1 4.286 4.285A4.29 4.29 0 0 1 0 103.84v5.65a4.29 4.29 0 0 1 4.286 4.285A4.29 4.29 0 0 1 0 118.062v5.653a4.31 4.31 0 0 1 3.03 1.255A4.315 4.315 0 0 1 4.287 128h5.65a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 18.507 128h5.651a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 32.729 128h5.65a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 46.951 128h5.65a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 61.173 128h5.65a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 75.395 128h5.65a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 89.616 128h5.651a4.29 4.29 0 0 1 4.286-4.285 4.29 4.29 0 0 1 4.285 4.285h5.651a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 118.06 128h5.654a4.31 4.31 0 0 1 1.256-3.03 4.31 4.31 0 0 1 3.03-1.255v-5.65a4.29 4.29 0 0 1-4.286-4.287 4.29 4.29 0 0 1 4.286-4.284v-5.65a4.29 4.29 0 0 1-4.286-4.287A4.29 4.29 0 0 1 128 95.272v-5.65a4.29 4.29 0 0 1-4.286-4.286A4.29 4.29 0 0 1 128 81.05V75.4a4.29 4.29 0 0 1-4.286-4.287A4.29 4.29 0 0 1 128 66.83v-5.65a4.29 4.29 0 0 1-4.286-4.287A4.29 4.29 0 0 1 128 52.608v-5.65a4.291 4.291 0 0 1-4.286-4.288A4.291 4.291 0 0 1 128 38.383v-5.651a4.29 4.29 0 0 1-4.286-4.286A4.29 4.29 0 0 1 128 24.16v-5.65a4.29 4.29 0 0 1-4.286-4.286A4.29 4.29 0 0 1 128 9.94V4.286a4.315 4.315 0 0 1-3.03-1.254A4.316 4.316 0 0 1 123.714 0h-5.651a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 109.492 0h-5.65a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 95.27 0h-5.65a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 81.048 0h-5.65a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 66.826 0h-5.65a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 52.605 0h-5.651a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 38.383 0h-5.65a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 24.16 0h-5.65a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 9.939 0H4.286A4.321 4.321 0 0 1 3.03 3.032 4.32 4.32 0 0 1 0 4.286Z"/><path fill="#fff" d="M109.04 51.217H45.167l3.334-15.596h38.93L91 18.836H35.047l-17.62 83.096h16.906l7.737-36.31h40.549l-35.234 34.88 6.19 10.952c2.857-1.904 7.5-2.143 10.714-2.143 5.716 0 11.31 1.906 17.142 1.906 5.348 0 10.822-.357 19.752-4.643l3.12-14.643c-6.072 2.5-15.057 4.881-22.872 4.881-3.212 0-6.189-.714-9.284-1.19l34.154-33.214z"/></svg>
|
After Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 4.6 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="filezilla-plain-a" gradientUnits="userSpaceOnUse" x1="63.997" y1="15.543" x2="63.997" y2="114.424"><stop offset="0" stop-color="#BF0000"/><stop offset="1" stop-color="#8F0000"/></linearGradient></defs><path d="M4.285 0c0 1.129-.457 2.234-1.254 3.031S1.129 4.285 0 4.285v5.652a4.29 4.29 0 014.285 4.285A4.29 4.29 0 010 18.508v5.648c2.363 0 4.285 1.926 4.285 4.285S2.363 32.73 0 32.73v5.648a4.29 4.29 0 014.285 4.289A4.29 4.29 0 010 46.953v5.652a4.29 4.29 0 014.285 4.285A4.29 4.29 0 010 61.176v5.652a4.286 4.286 0 014.285 4.281A4.29 4.29 0 010 75.398v5.648a4.29 4.29 0 014.285 4.283A4.29 4.29 0 010 89.617v5.652a4.29 4.29 0 014.285 4.285A4.29 4.29 0 010 103.84v5.652a4.29 4.29 0 014.285 4.285A4.29 4.29 0 010 118.063v5.652c1.129 0 2.234.457 3.031 1.254s1.254 1.902 1.254 3.031h5.652a4.29 4.29 0 014.285-4.285A4.29 4.29 0 0118.508 128h5.648a4.293 4.293 0 014.289-4.285A4.29 4.29 0 0132.73 128h5.648a4.29 4.29 0 014.283-4.285A4.29 4.29 0 0146.949 128h5.652a4.29 4.29 0 014.285-4.285A4.29 4.29 0 0161.172 128h5.652a4.29 4.29 0 014.285-4.285A4.29 4.29 0 0175.395 128h5.652a4.29 4.29 0 014.285-4.285A4.29 4.29 0 0189.617 128h5.648a4.293 4.293 0 014.289-4.285A4.29 4.29 0 01103.84 128h5.646a4.29 4.29 0 014.285-4.285 4.29 4.29 0 014.285 4.285h5.656c0-1.129.457-2.234 1.254-3.031s1.902-1.254 3.031-1.254v-5.648a4.293 4.293 0 01-4.285-4.289 4.29 4.29 0 014.285-4.285v-5.646a4.29 4.29 0 01-4.285-4.285A4.29 4.29 0 01128 95.273v-5.652a4.29 4.29 0 01-4.285-4.285A4.29 4.29 0 01128 81.051v-5.652a4.29 4.29 0 01-4.285-4.285A4.29 4.29 0 01128 66.828V61.18a4.29 4.29 0 01-4.285-4.285A4.29 4.29 0 01128 52.609v-5.652a4.29 4.29 0 01-4.285-4.285A4.29 4.29 0 01128 38.383V32.73a4.29 4.29 0 01-4.285-4.285A4.29 4.29 0 01128 24.16v-5.648a4.293 4.293 0 01-4.285-4.289A4.29 4.29 0 01128 9.941V4.285c-1.129 0-2.234-.457-3.031-1.254S123.715 1.129 123.715 0h-5.652a4.29 4.29 0 01-4.285 4.285A4.29 4.29 0 01109.492 0h-5.652a4.29 4.29 0 01-4.285 4.285A4.29 4.29 0 0195.27 0h-5.648a4.29 4.29 0 01-4.283 4.285A4.3 4.3 0 0181.047 0h-5.648a4.29 4.29 0 01-4.285 4.285A4.29 4.29 0 0166.828 0h-5.652a4.29 4.29 0 01-4.285 4.285A4.29 4.29 0 0152.605 0h-5.652a4.29 4.29 0 01-4.285 4.285A4.29 4.29 0 0138.383 0H32.73a4.29 4.29 0 01-4.285 4.285A4.29 4.29 0 0124.16 0h-5.648c0 2.363-1.926 4.285-4.285 4.285S9.938 2.363 9.938 0H4.285zm30.762 18.836H91l-3.57 16.785H48.5l-3.332 15.594h63.871l-2.738 11.189-34.152 33.215c3.094.476 6.07 1.191 9.281 1.191 7.816 0 16.801-2.383 22.875-4.883l-3.121 14.645c-8.93 4.286-14.406 4.646-19.754 4.646-5.828 0-11.426-1.906-17.141-1.906-3.215 0-7.856.239-10.715 2.141l-6.191-10.949 35.234-34.883H42.07l-7.738 36.309H17.43l17.617-83.094z" fill="url(#filezilla-plain-a)"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#bb0001" d="M4.285 0a4.32 4.32 0 0 1-1.254 3.031A4.323 4.323 0 0 1 0 4.287v5.65a4.289 4.289 0 0 1 4.285 4.284A4.291 4.291 0 0 1 0 18.508v5.65a4.29 4.29 0 0 1 4.285 4.285A4.29 4.29 0 0 1 0 32.73v5.65a4.292 4.292 0 0 1 4.285 4.289A4.29 4.29 0 0 1 0 46.955v5.65a4.29 4.29 0 0 1 4.285 4.286A4.29 4.29 0 0 1 0 61.176v5.65a4.29 4.29 0 0 1 4.285 4.285A4.291 4.291 0 0 1 0 75.398v5.65a4.288 4.288 0 0 1 4.285 4.284A4.291 4.291 0 0 1 0 89.619v5.65a4.29 4.29 0 0 1 4.285 4.286A4.29 4.29 0 0 1 0 103.84v5.65a4.29 4.29 0 0 1 4.285 4.285A4.291 4.291 0 0 1 0 118.062v5.653c1.128 0 2.233.457 3.031 1.256A4.313 4.313 0 0 1 4.285 128h5.65a4.291 4.291 0 0 1 4.288-4.285A4.29 4.29 0 0 1 18.508 128h5.65a4.29 4.29 0 0 1 4.285-4.285A4.29 4.29 0 0 1 32.73 128h5.652a4.29 4.29 0 0 1 4.285-4.285A4.29 4.29 0 0 1 46.951 128h5.65a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 61.172 128h5.652a4.29 4.29 0 0 1 4.285-4.285A4.29 4.29 0 0 1 75.395 128h5.65a4.29 4.29 0 0 1 4.285-4.285A4.291 4.291 0 0 1 89.617 128h5.65a4.29 4.29 0 0 1 4.286-4.285 4.29 4.29 0 0 1 4.285 4.285h5.65a4.291 4.291 0 0 1 4.287-4.285 4.29 4.29 0 0 1 4.286 4.285h5.652a4.31 4.31 0 0 1 1.258-3.03 4.308 4.308 0 0 1 3.029-1.255v-5.65a4.29 4.29 0 0 1-4.287-4.286 4.29 4.29 0 0 1 4.287-4.285v-5.65a4.292 4.292 0 0 1-4.287-4.287A4.29 4.29 0 0 1 128 95.27v-5.65a4.29 4.29 0 0 1-4.287-4.285A4.29 4.29 0 0 1 128 81.05V75.4a4.29 4.29 0 0 1-4.287-4.286A4.29 4.29 0 0 1 128 66.83v-5.65a4.292 4.292 0 0 1-4.287-4.287A4.29 4.29 0 0 1 128 52.607v-5.65a4.291 4.291 0 0 1-4.287-4.287A4.292 4.292 0 0 1 128 38.383v-5.65a4.292 4.292 0 0 1-4.287-4.288A4.29 4.29 0 0 1 128 24.162V18.51a4.29 4.29 0 0 1-4.287-4.285A4.292 4.292 0 0 1 128 9.939V4.287a4.315 4.315 0 0 1-3.03-1.256A4.317 4.317 0 0 1 123.714 0h-5.65a4.291 4.291 0 0 1-4.286 4.287A4.291 4.291 0 0 1 109.492 0h-5.65a4.293 4.293 0 0 1-4.287 4.287A4.291 4.291 0 0 1 95.27 0h-5.65a4.291 4.291 0 0 1-4.286 4.287A4.291 4.291 0 0 1 81.049 0h-5.65a4.293 4.293 0 0 1-4.288 4.287A4.291 4.291 0 0 1 66.826 0h-5.65a4.291 4.291 0 0 1-4.285 4.287A4.291 4.291 0 0 1 52.605 0h-5.652a4.291 4.291 0 0 1-4.285 4.287A4.291 4.291 0 0 1 38.383 0h-5.65a4.291 4.291 0 0 1-4.286 4.287A4.293 4.293 0 0 1 24.16 0h-5.65a4.291 4.291 0 0 1-4.285 4.287A4.291 4.291 0 0 1 9.939 0H4.285zm30.762 18.836h55.955L87.43 35.62H48.5l-3.332 15.596h63.871l-2.738 11.191L72.146 95.62c3.096.476 6.073 1.192 9.286 1.192 7.814 0 16.798-2.382 22.87-4.881l-3.118 14.642c-8.93 4.286-14.405 4.643-19.752 4.643-5.832 0-11.428-1.906-17.143-1.906-3.215 0-7.858.24-10.715 2.144l-6.19-10.953 35.235-34.88H42.07l-7.736 36.31H17.428l17.619-83.096z"/></svg>
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.6 KiB |
1
icons/firebase/firebase-line-wordmark.svg
Normal file
After Width: | Height: | Size: 8.8 KiB |
1
icons/firebase/firebase-line.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#ffa000" d="M35.377 0a2.425 2.425 0 0 0-.383.035 2.423 2.423 0 0 0-1.989 2.014L18.062 97.667l.928.309 9.836-18.723 24.995-47.591L37.5 1.215l-.057-.054.09.12a2.422 2.422 0 0 0-2.156-1.28Zm.01.992a1.422 1.422 0 0 1 1.272.756l.035.066.001.002L52.7 31.668 27.947 78.792l-8.443 16.07 14.482-92.66a1.415 1.415 0 0 1 1.174-1.188 1.429 1.429 0 0 1 .227-.022zm28.165 17.16c-.898 0-1.725.498-2.143 1.294v.002l-6.98 13.29-.007-.014L20.16 97.95l.79.58 10.67-10.682 34.195-34.255L77.489 41.9 65.697 19.449v-.002a2.422 2.422 0 0 0-2.144-1.293zm0 .993c.535 0 1.018.292 1.266.764L76.27 41.713 65.111 52.89 30.916 87.145l-8.356 8.371 31.897-60.724.007.013 7.823-14.896a1.42 1.42 0 0 1 1.265-.764zm31.431 7.227v.072c-.045.008-.093.003-.137.014a2.418 2.418 0 0 0-1.138.641h-.002L79.001 41.83 66.537 54.317l-49.08 49.163 41.979 23.543h.048a8.27 8.27 0 0 0 7.917-.064v.002l41.54-23.097.975-.487L97.803 28.41v-.004h-.002a2.424 2.424 0 0 0-1.65-1.898 2.437 2.437 0 0 0-.654-.116zm.48 1.012c.126.005.257.026.387.068.515.165.884.593.975 1.124h.002l11.993 74.22-41.901 23.296a7.289 7.289 0 0 1-7.111 0l-.112-.062h-.002l-40.61-22.775L67.24 55.018l12.462-12.487 14.705-14.73a1.423 1.423 0 0 1 .672-.378 1.402 1.402 0 0 1 .382-.039z"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
icons/firebase/firebase-original-wordmark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#fff" d="M26.994 127.655h-2.032v-15.766h9.231v1.937h-7.199v5.176h6.495v1.892h-6.495zm11.022-13.497a1.442 1.442 0 0 1-1.818.182 1.432 1.432 0 0 1-.533-1.742 1.44 1.44 0 0 1 2.77.547 1.374 1.374 0 0 1-.42 1.013zm0 13.497h-2.033v-10.79h2.033zm4.46 0h-2.03v-10.79h1.942v1.762h.088a2.767 2.767 0 0 1 1.27-1.454 3.642 3.642 0 0 1 1.867-.573 3.884 3.884 0 0 1 1.524.266l-.773 1.892a3.082 3.082 0 0 0-1.082-.155 2.66 2.66 0 0 0-1.957.872c-.567.58-.85 1.34-.85 2.28zm10.226.344c-1.635 0-2.963-.543-3.986-1.63-1.023-1.085-1.535-2.458-1.536-4.118a5.93 5.93 0 0 1 1.494-4.042 4.838 4.838 0 0 1 3.81-1.696c1.605 0 2.89.521 3.855 1.563.965 1.043 1.447 2.438 1.446 4.184l-.022.375h-8.55c.058 1.086.423 1.946 1.094 2.58a3.32 3.32 0 0 0 2.352.947c1.457 0 2.444-.617 2.96-1.85l1.81.749a4.84 4.84 0 0 1-1.744 2.102c-.81.557-1.805.836-2.983.836zm2.916-7.053c-.044-.617-.327-1.204-.85-1.762-.524-.557-1.3-.83-2.33-.819a2.92 2.92 0 0 0-1.955.706 3.597 3.597 0 0 0-1.137 1.892zm9.52 7.053a4.61 4.61 0 0 1-2.22-.516 3.746 3.746 0 0 1-1.474-1.325h-.088v1.497h-1.938v-15.766h2.026v4.976l-.088 1.497h.088a3.746 3.746 0 0 1 1.468-1.321 4.612 4.612 0 0 1 2.22-.528c1.398 0 2.606.55 3.623 1.651 1.017 1.101 1.525 2.466 1.523 4.096 0 1.63-.508 2.995-1.523 4.096-1.016 1.101-2.222 1.649-3.617 1.643zm-.331-1.85a3.238 3.238 0 0 0 2.43-1.068c.677-.712 1.016-1.655 1.016-2.83 0-1.174-.34-2.117-1.017-2.83a3.32 3.32 0 0 0-2.432-1.067 3.32 3.32 0 0 0-2.437 1.057c-.67.705-1.006 1.651-1.005 2.84.001 1.19.336 2.137 1.005 2.84a3.242 3.242 0 0 0 2.44 1.067zM75.452 128c-1.15 0-2.111-.33-2.882-.99-.77-.662-1.157-1.535-1.16-2.62 0-1.175.457-2.096 1.37-2.764.914-.667 2.04-1 3.38-1 1.192 0 2.17.22 2.933.66v-.308a2.405 2.405 0 0 0-.818-1.905 2.939 2.939 0 0 0-2.005-.707 3.11 3.11 0 0 0-1.602.419 2.159 2.159 0 0 0-.983 1.145l-1.855-.793c.25-.645.744-1.244 1.48-1.794s1.709-.826 2.916-.826c1.381 0 2.531.402 3.452 1.204.92.803 1.377 1.94 1.37 3.413v6.522h-1.952v-1.497h-.088c-.81 1.227-1.995 1.84-3.556 1.84zm.331-1.85a3.314 3.314 0 0 0 2.286-.935 2.9 2.9 0 0 0 1.036-2.212c-.575-.47-1.438-.706-2.589-.706-.987 0-1.73.213-2.23.638a1.914 1.914 0 0 0-.751 1.497c-.01.511.253.989.69 1.256a2.736 2.736 0 0 0 1.558.471zM87.025 128c-1.208 0-2.205-.294-2.992-.88a5.213 5.213 0 0 1-1.726-2.203l1.812-.748c.575 1.35 1.553 2.026 2.934 2.026a2.688 2.688 0 0 0 1.553-.418 1.28 1.28 0 0 0 .607-1.1c0-.705-.493-1.182-1.48-1.432l-2.187-.528a5.208 5.208 0 0 1-1.965-1.001 2.405 2.405 0 0 1-.927-1.992c0-.954.424-1.729 1.27-2.323a5.112 5.112 0 0 1 3.015-.89 5.039 5.039 0 0 1 2.56.651 3.667 3.667 0 0 1 1.612 1.862l-1.767.719c-.398-.954-1.223-1.432-2.474-1.432a2.893 2.893 0 0 0-1.524.375 1.14 1.14 0 0 0-.618 1.014c0 .617.479 1.035 1.436 1.255l2.143.508c1.016.23 1.767.63 2.254 1.204a2.92 2.92 0 0 1 .735 1.95 2.999 2.999 0 0 1-1.208 2.423c-.79.64-1.811.96-3.063.96zm10.933 0c-1.634 0-2.963-.543-3.986-1.63-1.023-1.085-1.534-2.458-1.536-4.118a5.931 5.931 0 0 1 1.491-4.05 4.838 4.838 0 0 1 3.81-1.697c1.605 0 2.89.521 3.855 1.564.965 1.042 1.447 2.437 1.446 4.184l-.022.375h-8.547c.059 1.086.424 1.946 1.094 2.58a3.32 3.32 0 0 0 2.352.946c1.458 0 2.444-.616 2.96-1.85l1.81.754a4.84 4.84 0 0 1-1.745 2.102c-.81.56-1.804.84-2.982.84zm2.916-7.053c-.043-.617-.327-1.204-.85-1.762-.524-.557-1.3-.83-2.33-.819a2.92 2.92 0 0 0-1.955.706 3.597 3.597 0 0 0-1.137 1.892z"/><path fill="#ffa000" d="M30.916 72.85 42.029 1.736a2.053 2.053 0 0 1 3.838-.652L57.36 22.521l4.581-8.723a2.053 2.053 0 0 1 3.633 0L96.592 72.85Z"/><path fill="#f57c00" d="M69.31 45.148 57.356 22.51l-26.44 50.34Z"/><path fill="#ffca28" d="m96.592 72.85-8.513-52.674a2.055 2.055 0 0 0-1.399-1.613 2.05 2.05 0 0 0-2.074.504L30.916 72.85l29.708 16.66a6.157 6.157 0 0 0 6.003 0z"/><path fill="#fff" fill-opacity=".2" d="M88.08 20.176a2.055 2.055 0 0 0-1.4-1.612 2.05 2.05 0 0 0-2.074.503L73.949 29.75l-8.38-15.953a2.053 2.053 0 0 0-3.632 0l-4.581 8.722L45.862 1.083A2.053 2.053 0 0 0 43.706.03a2.05 2.05 0 0 0-1.682 1.71L30.916 72.85h-.036l.035.042.293.144L84.59 19.59a2.053 2.053 0 0 1 3.479 1.108L96.51 72.9l.082-.051-8.512-52.675ZM31.012 72.753l11.016-70.51A2.053 2.053 0 0 1 43.71.532a2.054 2.054 0 0 1 2.157 1.054L57.36 23.024l4.582-8.723a2.053 2.053 0 0 1 3.633 0l8.21 15.614z"/><path fill="#a52714" d="M66.627 89.007a6.157 6.157 0 0 1-6.003 0L30.986 72.395l-.072.456 29.709 16.655a6.157 6.157 0 0 0 6.003 0l29.966-16.655-.078-.472-29.888 16.63Z" opacity=".2"/></svg>
|
After Width: | Height: | Size: 4.3 KiB |
1
icons/firebase/firebase-original.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#ffa000" d="M17.474 103.276 33.229 2.462a2.91 2.91 0 0 1 5.44-.924l16.294 30.39 6.494-12.366a2.91 2.91 0 0 1 5.15 0l43.97 83.714H17.474Z"/><path fill="#f57c00" d="M71.903 64.005 54.955 31.913l-37.481 71.363Z"/><path fill="#ffca28" d="M110.577 103.276 98.51 28.604a2.913 2.913 0 0 0-1.984-2.286 2.906 2.906 0 0 0-2.94.714l-76.112 76.243 42.115 23.618a8.728 8.728 0 0 0 8.51 0l42.478-23.618Z"/><path fill="#fff" fill-opacity=".2" d="M98.51 28.604a2.913 2.913 0 0 0-1.984-2.286 2.906 2.906 0 0 0-2.94.713L78.479 42.178 66.6 19.562a2.91 2.91 0 0 0-5.15 0l-6.494 12.365L38.662 1.538A2.91 2.91 0 0 0 35.605.044a2.907 2.907 0 0 0-2.384 2.425L17.474 103.276h-.051l.05.058.415.204 75.676-75.764a2.91 2.91 0 0 1 4.932 1.571l11.965 74.003.116-.073L98.51 28.603Zm-80.898 74.534L33.228 3.182A2.91 2.91 0 0 1 35.613.756a2.911 2.911 0 0 1 3.057 1.495l16.292 30.39 6.495-12.366a2.91 2.91 0 0 1 5.15 0L78.245 42.41 17.61 103.138Z"/><path fill="#a52714" d="M68.099 126.18a8.728 8.728 0 0 1-8.51 0l-42.015-23.55-.102.647 42.115 23.61a8.728 8.728 0 0 0 8.51 0l42.48-23.61-.11-.67-42.37 23.575z" opacity=".2"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g fill="#f58220"><path d="M11.4 115.62H8.25v-24.4H22.5v3.01H11.4v8.02h10.04v2.93H11.42v10.44h-.02zM27.92 94.74c-.43.43-.96.64-1.57.64-.61 0-1.15-.21-1.57-.64-.43-.43-.64-.96-.64-1.57s.21-1.15.64-1.57c.43-.43.96-.64 1.57-.64.61 0 1.15.21 1.57.64s.64.96.64 1.57-.22 1.11-.64 1.57zm0 20.88h-3.14v-16.7h3.14v16.7zM34.47 115.62h-3.14v-16.7h3.01v2.72h.13c.32-.91.96-1.65 1.97-2.24.99-.59 1.95-.88 2.88-.88s1.71.13 2.34.4l-1.2 2.93c-.4-.16-.96-.24-1.68-.24-1.15 0-2.13.45-3.01 1.36-.88.91-1.31 2.08-1.31 3.52v9.13zM49.23 116.18c-2.53 0-4.58-.85-6.15-2.53s-2.37-3.81-2.37-6.37c0-2.42.77-4.53 2.29-6.29 1.55-1.76 3.49-2.64 5.89-2.64 2.48 0 4.45.8 5.94 2.42 1.49 1.63 2.24 3.78 2.24 6.47l-.03.59H43.85c.08 1.68.67 3.01 1.68 4 1.04.99 2.24 1.47 3.62 1.47 2.24 0 3.78-.96 4.58-2.88l2.8 1.17c-.53 1.31-1.44 2.37-2.69 3.25-1.25.89-2.8 1.34-4.61 1.34zm4.51-10.92c-.08-.96-.51-1.87-1.31-2.72-.8-.85-2-1.31-3.6-1.31-1.17 0-2.16.37-3.01 1.09-.85.72-1.44 1.71-1.76 2.93l9.68.01zM68.1 116.18c-1.28 0-2.42-.27-3.44-.83-1.01-.53-1.76-1.23-2.26-2.05h-.13v2.32h-3.01v-24.4h3.14v7.7l-.13 2.32h.13c.51-.83 1.25-1.49 2.26-2.05 1.01-.53 2.16-.83 3.44-.83 2.16 0 4.02.85 5.6 2.56 1.57 1.71 2.34 3.81 2.34 6.34s-.77 4.64-2.34 6.34c-1.58 1.73-3.44 2.58-5.6 2.58zm-.54-2.87c1.47 0 2.72-.56 3.76-1.65 1.04-1.09 1.57-2.56 1.57-4.37s-.53-3.28-1.57-4.37c-1.04-1.09-2.29-1.65-3.76-1.65s-2.74.53-3.76 1.63c-1.01 1.09-1.55 2.56-1.55 4.4 0 1.84.51 3.3 1.55 4.4 1.05 1.07 2.3 1.61 3.76 1.61zM83.84 116.18c-1.79 0-3.25-.51-4.45-1.55-1.2-1.01-1.79-2.37-1.79-4.05 0-1.81.69-3.25 2.1-4.29 1.41-1.04 3.14-1.55 5.22-1.55 1.84 0 3.36.35 4.53 1.01v-.48c0-1.23-.43-2.21-1.25-2.96-.85-.75-1.87-1.12-3.09-1.12-.91 0-1.73.21-2.48.64-.75.43-1.25 1.01-1.52 1.79l-2.88-1.23c.4-1.01 1.15-1.92 2.29-2.77 1.15-.85 2.64-1.28 4.5-1.28 2.13 0 3.92.61 5.33 1.87 1.41 1.25 2.1 3.01 2.1 5.28v10.12h-3.01v-2.32h-.13c-1.23 1.93-3.07 2.89-5.47 2.89zm.51-2.87c1.31 0 2.48-.48 3.52-1.44 1.07-.96 1.6-2.1 1.6-3.44-.88-.72-2.21-1.09-4-1.09-1.52 0-2.66.32-3.44.99-.77.67-1.17 1.44-1.17 2.32 0 .83.35 1.47 1.07 1.95.71.47 1.51.71 2.42.71zM101.19 116.18c-1.87 0-3.41-.45-4.61-1.36a7.894 7.894 0 01-2.66-3.41l2.8-1.17c.88 2.1 2.4 3.14 4.53 3.14.99 0 1.79-.21 2.4-.64.61-.43.93-1.01.93-1.71 0-1.09-.77-1.84-2.29-2.21L98.9 108c-1.07-.27-2.08-.8-3.04-1.55-.96-.77-1.44-1.79-1.44-3.09 0-1.47.67-2.66 1.97-3.6 1.31-.93 2.85-1.39 4.66-1.39 1.47 0 2.8.35 3.94 1.01 1.17.67 2 1.63 2.48 2.88l-2.72 1.12c-.61-1.47-1.89-2.21-3.81-2.21-.93 0-1.71.19-2.34.59-.64.4-.96.91-.96 1.57 0 .96.75 1.6 2.21 1.95l3.3.77c1.57.37 2.72.99 3.49 1.87.75.88 1.12 1.89 1.12 3.01 0 1.49-.61 2.74-1.84 3.76-1.21 1.01-2.79 1.49-4.73 1.49zM117.58 116.18c-2.53 0-4.58-.85-6.15-2.53-1.57-1.68-2.37-3.81-2.37-6.37 0-2.42.77-4.53 2.29-6.29 1.55-1.76 3.49-2.64 5.89-2.64 2.48 0 4.45.8 5.94 2.42 1.49 1.63 2.24 3.78 2.24 6.47l-.03.59H112.2c.08 1.68.67 3.01 1.68 4 1.04.99 2.24 1.47 3.62 1.47 2.24 0 3.78-.96 4.58-2.88l2.8 1.17c-.53 1.31-1.44 2.37-2.69 3.25-1.26.89-2.8 1.34-4.61 1.34zm4.5-10.92c-.08-.96-.51-1.87-1.31-2.72-.8-.85-2-1.31-3.6-1.31-1.17 0-2.16.37-3.01 1.09-.85.72-1.44 1.71-1.76 2.93l9.68.01zM39.25 59.42l7.69-49.28c.27-1.68 2.52-2.08 3.31-.57l8.26 15.47-19.26 34.38zm54.67 11.97L86.58 26c-.22-1.41-1.99-1.99-3.01-.97L37.35 71.39l25.59 14.36c1.59.88 3.58.88 5.17 0l25.81-14.36zM73.14 31.8l-5.92-11.27c-.66-1.28-2.47-1.28-3.14 0l-26.03 46.4L73.14 31.8z"/></g></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#ffa000" d="M43.043 0a1.369 1.369 0 0 0-.216.02A1.363 1.363 0 0 0 41.7 1.157L31.08 69.129l6.99-13.308 17.682-33.665L44.263.725 44.26.724A1.365 1.365 0 0 0 43.043 0Zm20.024 12.905c-.509 0-.973.279-1.21.73l-5.262 10.019-.005-.01L32.536 69.44l7.583-7.595 24.307-24.351 8.114-8.129-8.26-15.73a1.367 1.367 0 0 0-1.213-.73zm22.697 5.855a1.345 1.345 0 0 0-.367.038 1.367 1.367 0 0 0-.644.363L74.298 29.632l-8.858 8.875-34.56 34.62L60.234 89.59h.001a5.535 5.535 0 0 0 5.399 0l30.001-16.681-8.567-53.013v.005a1.366 1.366 0 0 0-.933-1.074 1.38 1.38 0 0 0-.371-.066zm10.537 54.598-.424.035.177.103zm-59.278 38.353a1.44 1.44 0 0 0-1.357.887 1.432 1.432 0 0 0 .532 1.742 1.443 1.443 0 0 0 1.818-.182 1.375 1.375 0 0 0 .419-1.014c0-.684-.486-1.273-1.16-1.406a1.446 1.446 0 0 0-.252-.027zm-12.062.178v15.766h2.033v-6.76h6.496v-1.893h-6.496v-5.176h7.2v-1.937zm34.457 0v15.766h1.938v-1.497h.088a3.743 3.743 0 0 0 1.473 1.325 4.613 4.613 0 0 0 2.222.516c1.395.006 2.6-.542 3.616-1.643s1.524-2.466 1.524-4.096c.001-1.63-.507-2.994-1.524-4.095-1.017-1.101-2.225-1.652-3.624-1.652a4.612 4.612 0 0 0-2.219.528 3.743 3.743 0 0 0-1.468 1.32h-.088l.088-1.496v-4.977zm38.32 4.615a4.839 4.839 0 0 0-3.81 1.697 5.93 5.93 0 0 0-1.49 4.05c0 1.66.512 3.034 1.534 4.12 1.023 1.086 2.352 1.628 3.987 1.628 1.178 0 2.17-.28 2.98-.84a4.842 4.842 0 0 0 1.746-2.102l-1.81-.753c-.515 1.233-1.502 1.85-2.96 1.85a3.319 3.319 0 0 1-2.352-.946c-.67-.634-1.035-1.496-1.094-2.582h8.547l.022-.375c.002-1.746-.48-3.14-1.445-4.183-.965-1.043-2.25-1.564-3.855-1.564zm-10.799.005a5.112 5.112 0 0 0-3.014.891c-.847.594-1.271 1.37-1.271 2.323a2.405 2.405 0 0 0 .927 1.992 5.208 5.208 0 0 0 1.966 1l2.185.53c.987.25 1.48.726 1.48 1.43a1.28 1.28 0 0 1-.606 1.101 2.687 2.687 0 0 1-1.552.418c-1.381 0-2.36-.675-2.934-2.026l-1.812.748a5.211 5.211 0 0 0 1.725 2.202c.787.587 1.784.88 2.992.88 1.252 0 2.273-.318 3.063-.958a3 3 0 0 0 1.209-2.423 2.92 2.92 0 0 0-.736-1.951c-.487-.573-1.238-.974-2.254-1.204l-2.142-.507c-.957-.22-1.436-.64-1.436-1.256a1.138 1.138 0 0 1 .617-1.013 2.895 2.895 0 0 1 1.524-.375c1.251 0 2.076.477 2.475 1.431l1.767-.72a3.666 3.666 0 0 0-1.612-1.86 5.038 5.038 0 0 0-2.56-.653zm-34.454.004a4.839 4.839 0 0 0-3.81 1.697 5.928 5.928 0 0 0-1.495 4.042c.001 1.66.513 3.033 1.536 4.119 1.022 1.086 2.351 1.628 3.986 1.628 1.178 0 2.172-.278 2.983-.835a4.842 4.842 0 0 0 1.745-2.103l-1.812-.748c-.515 1.233-1.502 1.85-2.96 1.85a3.32 3.32 0 0 1-2.351-.948c-.671-.634-1.035-1.494-1.094-2.58h8.55l.022-.375c.001-1.746-.48-3.14-1.446-4.183s-2.25-1.564-3.854-1.564zm23.741.004c-1.208 0-2.179.275-2.915.825-.736.55-1.23 1.15-1.48 1.795l1.854.793a2.16 2.16 0 0 1 .984-1.145 3.112 3.112 0 0 1 1.6-.419 2.94 2.94 0 0 1 2.006.708 2.404 2.404 0 0 1 .818 1.904v.307c-.763-.44-1.74-.66-2.934-.66-1.339 0-2.464.334-3.378 1.002-.913.667-1.37 1.588-1.37 2.762.002 1.086.388 1.96 1.16 2.62.77.66 1.73.99 2.88.99 1.562 0 2.748-.613 3.558-1.84h.088v1.497h1.95v-6.522c.008-1.473-.449-2.61-1.37-3.413-.92-.803-2.07-1.204-3.45-1.204zm-30.613.085a3.64 3.64 0 0 0-1.867.572 2.768 2.768 0 0 0-1.27 1.454h-.087v-1.762h-1.944v10.79h2.032l-.003-5.9c0-.94.284-1.7.852-2.28a2.658 2.658 0 0 1 1.955-.873 3.083 3.083 0 0 1 1.083.155l.773-1.892a3.884 3.884 0 0 0-1.524-.265zm-9.63.264v10.79h2.033v-10.79zm28.82 1.489a3.32 3.32 0 0 1 2.433 1.067c.678.712 1.016 1.655 1.016 2.83 0 1.174-.338 2.117-1.016 2.83a3.235 3.235 0 0 1-2.429 1.068v.009a3.241 3.241 0 0 1-2.44-1.066c-.668-.704-1.004-1.652-1.005-2.84-.001-1.19.335-2.136 1.005-2.84a3.318 3.318 0 0 1 2.437-1.058zm-12.366.011c1.03-.011 1.807.262 2.33.82.523.557.808 1.143.851 1.76l-6.272.018a3.597 3.597 0 0 1 1.137-1.893 2.919 2.919 0 0 1 1.955-.705zm45.257 0c1.03-.011 1.806.262 2.33.82.523.557.807 1.143.851 1.76l-6.272.018a3.597 3.597 0 0 1 1.137-1.893 2.919 2.919 0 0 1 1.954-.705zm-21.177 3.93c1.15 0 2.012.237 2.587.707a2.899 2.899 0 0 1-1.035 2.211 3.312 3.312 0 0 1-2.286.936v.009a2.742 2.742 0 0 1-1.559-.472 1.44 1.44 0 0 1-.69-1.256 1.915 1.915 0 0 1 .751-1.496c.5-.426 1.245-.638 2.232-.638z"/></svg>
|
||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 4.0 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f58220" d="M27.35 80.52l10.68-68.44c.37-2.33 3.5-2.89 4.6-.8l11.48 21.48-26.76 47.76zm75.94 16.63L93.1 34.11c-.31-1.96-2.76-2.76-4.17-1.35L24.71 97.15l35.54 19.95a7.447 7.447 0 007.18 0l35.86-19.95zm-28.85-55L66.21 26.5c-.92-1.78-3.44-1.78-4.36 0L25.7 90.95l48.74-48.8z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#ffa000" d="M34.872 0a1.94 1.94 0 0 0-.307.028A1.933 1.933 0 0 0 32.97 1.64L17.911 98l9.911-18.867 25.066-47.724L36.6 1.028l-.002-.002A1.935 1.935 0 0 0 34.872 0Zm28.387 18.294c-.722 0-1.38.396-1.716 1.035l-7.459 14.203-.008-.014-34.1 64.922 10.75-10.767 34.46-34.52 11.503-11.524-11.712-22.3a1.938 1.938 0 0 0-1.718-1.035zm32.175 8.301a1.907 1.907 0 0 0-.52.054 1.938 1.938 0 0 0-.913.514L79.18 42.006 66.623 54.589l-48.994 49.078 41.613 23.337h.002a7.846 7.846 0 0 0 7.653 0l42.532-23.647-12.145-75.153v.008a1.937 1.937 0 0 0-1.324-1.524 1.957 1.957 0 0 0-.526-.093Zm14.938 77.4-.6.049.249.146z"/></svg>
|
||||
|
Before Width: | Height: | Size: 353 B After Width: | Height: | Size: 680 B |
1
icons/gatling/gatling-line-wordmark.svg
Normal file
After Width: | Height: | Size: 7.7 KiB |
1
icons/gatling/gatling-line.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f78557" d="M28.631 28.703A35.322 35.322 0 0 0 .043 43.429l-.016.015.002.002c-.009.013-.02.023-.029.035l.78.613c15.094-17.457 43.169-12.467 51.483 8.87H37.504c-5.222-6.346-13.034-7.701-19.51-5.371-6.545 2.354-11.762 8.472-11.633 16.824.13 8.352 5.534 14.303 12.149 16.454 6.614 2.15 14.488.516 19.504-6.166l.595-.795H21.892c.263-7.004 5.978-12.603 13.048-12.6h19.373c.096.938.167 1.879.168 2.822a30.533 30.533 0 0 1-19.479 28.457 30.53 30.53 0 0 1-33.58-7.85l-.763.637c.01.012.022.02.031.033l-.002.002c.015.016.033.027.047.043a35.27 35.27 0 0 0 27.962 13.843h50.998c13.215 0 25.175-.391 33.845-1.036 4.335-.322 7.844-.707 10.294-1.144 1.225-.218 2.182-.446 2.87-.702.345-.128.624-.258.852-.429.227-.17.443-.425.444-.77v-.002a.853.853 0 0 0-.266-.591 1.79 1.79 0 0 0-.487-.334c-.375-.188-.867-.348-1.497-.506-1.259-.316-3.057-.61-5.333-.882-4.223-.507-10.369-.91-17.303-1.208 3.01-1.975 5.677-4.423 7.767-7.362h3.877c1.382 0 2.48-.537 3.2-1.346.72-.81 1.07-1.87 1.07-2.923 0-1.054-.35-2.115-1.07-2.925-.661-.743-1.672-1.207-2.898-1.285a29.188 29.188 0 0 0 1.242-6.548h3.593c1.382 0 2.482-.534 3.202-1.344.72-.81 1.069-1.869 1.069-2.923 0-1.053-.349-2.114-1.069-2.924s-1.82-1.346-3.202-1.346h-3.737a29.106 29.106 0 0 0-1.56-6.487h.104c1.38 0 2.48-.538 3.2-1.348.72-.81 1.068-1.87 1.068-2.923s-.349-2.115-1.068-2.924c-.72-.81-1.82-1.345-3.2-1.344h-4.87c-5.585-6.843-13.93-10.848-22.773-10.865h-6.438a28.7 28.7 0 0 0-11.65 2.45l.2.95h6.772c14.752 0 26.955 11.457 27.886 26.18.932 14.72-9.728 27.62-24.36 29.482l-.004.002c-.838.065-1.66.126-2.539.126H49.181c4.13-2.519 7.767-5.76 10.56-9.722.157.02.313.057.471.049h25.466c1.382 0 2.48-.536 3.2-1.346.72-.81 1.07-1.871 1.07-2.925 0-1.053-.35-2.113-1.07-2.922-.72-.81-1.818-1.346-3.2-1.346H64.142a36.59 36.59 0 0 0 1.69-6.488h28.826c1.381 0 2.48-.536 3.2-1.346.72-.81 1.069-1.87 1.069-2.924s-.35-2.113-1.069-2.923c-.72-.81-1.819-1.346-3.2-1.346H66.19a35.832 35.832 0 0 0-1.244-6.485h20.87c1.381 0 2.48-.538 3.2-1.348.72-.81 1.067-1.871 1.067-2.925 0-1.053-.347-2.113-1.067-2.922-.72-.81-1.819-1.345-3.2-1.344H61.291c-6.382-10.578-17.819-17.077-30.187-17.1Zm.002.993h2.471a34.35 34.35 0 0 1 29.498 16.855l.146.245h25.068c1.133 0 1.92.405 2.457 1.01.538.605.817 1.43.817 2.263s-.279 1.66-.817 2.265c-.537.606-1.324 1.014-2.457 1.015H63.678l.198.64a34.883 34.883 0 0 1 1.412 7.375l.037.456h29.333c1.133 0 1.92.408 2.457 1.012.538.605.819 1.43.819 2.264 0 .833-.281 1.66-.819 2.265-.537.605-1.324 1.012-2.457 1.012H65.026l-.064.423a35.635 35.635 0 0 1-1.924 7.378l-.256.673H85.68c1.133 0 1.921.407 2.459 1.012s.816 1.43.816 2.263-.278 1.66-.816 2.265c-.538.605-1.326 1.013-2.46 1.013H60.165a1.699 1.699 0 0 1-.504-.05l-.336-.086-.196.283a34.413 34.413 0 0 1-11.733 10.58l.239.932h29.292c.933 0 1.792-.066 2.64-.132h.011l.012-.002C94.733 93 105.784 79.628 104.82 64.392c-.964-15.236-13.61-27.108-28.877-27.11h-3.62c2.693-.843 5.462-1.418 8.296-1.413h6.44a28.496 28.496 0 0 1 22.183 10.678l.15.187h5.31c1.133 0 1.921.405 2.459 1.01.537.605.816 1.432.816 2.265 0 .833-.279 1.658-.816 2.263-.538.606-1.326 1.014-2.46 1.015h-1.506l.264.677a28.145 28.145 0 0 1 1.79 7.35l.046.446h4.6c1.134 0 1.923.407 2.461 1.012.539.606.817 1.433.817 2.266 0 .832-.279 1.658-.816 2.263-.538.605-1.328 1.01-2.462 1.01h-4.501l-.027.47a28.218 28.218 0 0 1-1.404 7.35l-.217.653h1.012c1.133 0 1.921.408 2.459 1.013s.818 1.432.818 2.265c0 .833-.28 1.658-.818 2.263-.538.605-1.326 1.013-2.46 1.013H110.4l-.147.213a27.961 27.961 0 0 1-8.757 8.116l-1.456.858 1.689.066c7.633.298 14.064.754 18.57 1.295 2.253.27 4.027.564 5.209.861.59.149 1.036.301 1.293.43.045.023.048.031.08.051a2.48 2.48 0 0 1-.522.256c-.584.217-1.506.443-2.7.656-2.387.425-5.877.811-10.193 1.132-8.632.642-20.576 1.032-33.77 1.032H28.699c-7.171-.008-13.961-2.425-19.677-6.474C17 96.124 26.6 96.917 35.361 93.514A31.532 31.532 0 0 0 55.474 64.13a28.828 28.828 0 0 0-.203-3.377l-.05-.436H34.94c-7.777-.003-14.095 6.312-14.092 14.09l.002.496h15.547c-4.766 5.552-11.644 6.953-17.58 5.023-6.255-2.034-11.34-7.592-11.463-15.525-.123-7.932 4.787-13.647 10.977-15.874 6.19-2.227 13.614-.95 18.574 5.245l.147.186h16.68l-.242-.665c-6.939-19.09-29.072-25.867-45.26-16.559 5.845-4.388 12.912-7.016 20.404-7.038Z"/></svg>
|
After Width: | Height: | Size: 4.2 KiB |
1
icons/gatling/gatling-original-wordmark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f78557" d="M30.087 73.05a8.448 8.448 0 0 0 2.645-2.452h1.217a1.12 1.12 0 0 0 0-2.24h-.096a8.526 8.526 0 0 0 .424-2.221h1.197a1.12 1.12 0 1 0 0-2.24h-1.233a8.502 8.502 0 0 0-.54-2.22h.231a1.12 1.12 0 0 0 0-2.24h-1.505a8.608 8.608 0 0 0-6.701-3.226h-1.912a8.373 8.373 0 0 0-3.399.714h2.01a8.443 8.443 0 0 1 1.065 16.82c-.252.019-.502.037-.772.037H14.02a10.364 10.364 0 0 0 3.534-3.186.65.65 0 0 0 .193.02h7.568a1.12 1.12 0 0 0 0-2.24h-6.584a10.726 10.726 0 0 0 .58-2.22h8.67a1.12 1.12 0 0 0 0-2.24h-8.573a10.502 10.502 0 0 0-.425-2.222h6.373a1.12 1.12 0 0 0 0-2.24h-7.359a10.346 10.346 0 0 0-8.884-5.076H8.38A10.34 10.34 0 0 0 0 58.703a9.21 9.21 0 0 1 15.622 2.878H10.95a5.074 5.074 0 1 0 .096 6.218h-4.83a4.034 4.034 0 0 1 4.036-4.036h5.89a8.409 8.409 0 0 1 .059.985A9.212 9.212 0 0 1 .193 70.966 10.326 10.326 0 0 0 8.4 75.041h15.14c7.84 0 14.193-.464 14.193-1.065 0-.384-3.109-.749-7.646-.926z"/><path fill="#fff" d="M96.415 52.962a1.962 1.962 0 0 0-2.053 2.054 1.878 1.878 0 0 0 .571 1.43 2.047 2.047 0 0 0 1.482.556 1.994 1.994 0 0 0 1.448-.555 1.903 1.903 0 0 0 .573-1.431 1.992 1.992 0 0 0-.573-1.482 1.915 1.915 0 0 0-1.448-.572zM55.916 55.47A9.216 9.216 0 1 0 65 64.696a8.95 8.95 0 0 0-.101-1.364H58.6a3.801 3.801 0 0 0-3.805 3.805h6.448a5.967 5.967 0 1 1-.522-5.826h3.638a9.216 9.216 0 0 0-8.444-5.841Zm26.441.219v3.687h-1.65a.496.496 0 0 0-.506.505v2.089h2.156v11.6h2.744a.496.496 0 0 0 .506-.505v-11.08h2.373V59.9a.496.496 0 0 0-.505-.504h-1.868v-2.357a1.351 1.351 0 0 0-1.348-1.35zm6.75 0v17.897h2.743a.496.496 0 0 0 .506-.506V57.035a1.351 1.351 0 0 0-1.348-1.346zm18.286 3.385a5.558 5.558 0 0 0-2.745.64 4.085 4.085 0 0 0-1.634 1.564v-.537a1.35 1.35 0 0 0-1.346-1.346H100v14.208h2.744a.496.496 0 0 0 .506-.504v-7.747h.033a3.601 3.601 0 0 1 .893-2.575 3.21 3.21 0 0 1 2.44-.926 2.588 2.588 0 0 1 2.122.858 3.627 3.627 0 0 1 .69 2.374V73.6h2.745a.496.496 0 0 0 .505-.505V64.68a5.83 5.83 0 0 0-1.38-4.075 4.976 4.976 0 0 0-3.906-1.532zm13.84.31A7.07 7.07 0 1 0 128 66.465a6.52 6.52 0 0 0-.05-.808h-5.118a2.57 2.57 0 0 0-2.492 2.575h3.99a3.83 3.83 0 1 1-.405-4.141h3.67a7.07 7.07 0 0 0-6.363-4.707zm-26.45.01v14.192h2.744a.496.496 0 0 0 .504-.506V60.74a1.351 1.351 0 0 0-1.347-1.347zm-21.9.146a7.076 7.076 0 1 0 4.151 13.022v1.023h1.903a1.351 1.351 0 0 0 1.346-1.346V66.58h.003a7.076 7.076 0 0 0-7.403-7.041zm-.444 3.245a3.889 3.889 0 0 1 4.648 3.814 3.89 3.89 0 0 1-3.889 3.889 3.889 3.889 0 0 1-.759-7.703z"/></svg>
|
After Width: | Height: | Size: 2.4 KiB |
1
icons/gatling/gatling-original.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f78557" d="M102.062 92.294a28.66 28.66 0 0 0 8.975-8.32h4.127a3.8 3.8 0 0 0 0-7.599h-.327a28.922 28.922 0 0 0 1.44-7.533h4.062a3.8 3.8 0 1 0 0-7.599h-4.184a28.842 28.842 0 0 0-1.833-7.533h.786a3.8 3.8 0 0 0 0-7.599H110a29.2 29.2 0 0 0-22.731-10.94h-6.484a28.403 28.403 0 0 0-11.53 2.423h6.819a28.642 28.642 0 0 1 3.61 57.054c-.853.066-1.703.13-2.62.13h-29.5a35.158 35.158 0 0 0 11.988-10.807 2.206 2.206 0 0 0 .655.066H85.88a3.8 3.8 0 0 0 0-7.6H63.545a36.387 36.387 0 0 0 1.965-7.532h29.412a3.8 3.8 0 0 0 0-7.6h-29.08a35.625 35.625 0 0 0-1.443-7.532h21.618a3.8 3.8 0 0 0 0-7.6H61.056a35.098 35.098 0 0 0-30.138-17.22h-2.489A35.074 35.074 0 0 0 0 43.627a31.24 31.24 0 0 1 52.993 9.762H37.15a17.214 17.214 0 1 0 .327 21.092H21.091a13.684 13.684 0 0 1 13.69-13.69h19.98a28.525 28.525 0 0 1 .2 3.341A31.251 31.251 0 0 1 .656 85.224a35.027 35.027 0 0 0 27.84 13.822h51.358c26.596 0 48.146-1.572 48.146-3.61.002-1.305-10.545-2.54-25.938-3.142z"/></svg>
|
After Width: | Height: | Size: 1022 B |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#E77500" d="M25.5 43.6H8.8c-4.6 0-8.3 3.7-8.3 8.3v16.7c0 4.6 3.7 8.3 8.3 8.3h16.7c4.6 0 8.3-3.7 8.3-8.3V51.9c0-4.5-3.8-8.3-8.3-8.3zm-7 27.7c-6.2.9-12.2-3.5-12.8-9.3-.8-6.8 3.7-12.3 10.5-12.8 3-.2 6-.1 9 0h2.3v.9c.1.9-.2 2.2-.9 2.7-1 .8-2.4 1.3-3.7 1.5-1.7.2-3.4 0-5.2.1-3.8.1-6.3 1.8-6.8 4.6-.5 2.9.4 5.3 3.2 6.6 3.1 1.5 6.2.6 8.9-2.7-3.4-.7-7.8 1.1-8.3-4.7h13.9c1 6.8-3.1 12.2-10.1 13.1zm18.3-5.2c0-.4 0-.7.1-1.1.1-.4.3-.9.6-1.4.3-.6.7-1.1 1.2-1.5S40 61.3 41 61c1-.3 2.2-.5 3.6-.5 1 0 2 .1 3.2.2 0-2.3-1.3-3.4-3.8-3.4-2 0-3.8.3-5.3.9v-3.6c1.7-.6 3.5-.9 5.5-.9 2.6 0 4.5.7 5.9 2s2 3.2 2 5.7v4.9c0 1.7-.6 3.1-1.9 4.3s-3.1 1.8-5.7 1.8c-2.7 0-4.6-.6-5.9-1.8-1.2-1.3-1.8-2.8-1.8-4.5zm4.3-.6c0 1.9 1.1 2.9 3.4 2.9 2.2 0 3.2-.9 3.2-2.7v-2.3c-1-.1-1.9-.2-2.6-.2-2.6 0-4 .8-4 2.3zm13.7-7.8V54h3v-5.3h4.3V54h4.3v3.7h-4.3v8.9c0 .8.2 1.3.5 1.6s.9.4 1.7.4c.8 0 1.5-.1 2.1-.4v3.6c-.8.4-1.8.5-2.8.5h-.1c-1.8 0-3.2-.5-4.2-1.6s-1.5-2.5-1.5-4.4v-8.6h-3zM71.1 72V47.2h4.3V72h-4.3zm10.2-20.4v-4h4.4v4h-4.4zm0 20.4V54h4.3v18h-4.3zm10.1 0V55.7c2.6-1.3 5.4-2 8.2-2 2.5 0 4.5.7 5.9 2 1.4 1.3 2.1 3.1 2.1 5.5V72h-4.3V60.8c0-.5 0-.9-.1-1.2s-.3-.7-.5-1-.7-.6-1.3-.8-1.4-.3-2.3-.3c-1.1 0-2.2.1-3.3.3V72h-4.4zm21-9.1c0-1.6.2-3 .6-4.1s.9-2.1 1.5-2.7c.6-.6 1.2-1.1 2-1.5s1.4-.6 2-.7c.6-.1 1.1-.1 1.7-.1 2.5 0 4.4.6 5.6 1.7s1.8 2.5 1.8 4.2v12.8c0 .6-.1 1.1-.2 1.6s-.3 1.1-.7 1.7-.8 1.2-1.4 1.6-1.4.8-2.4 1.1-2.2.5-3.6.5c-1.9 0-3.6-.2-5.2-.7v-3.9c1.4.5 3 .7 4.7.7 1 0 1.8-.1 2.5-.2.6-.2 1.1-.4 1.3-.7.2-.3.4-.6.4-.8.1-.2.1-.5.1-.9v-1c-1 .2-1.9.3-2.7.3-2.6 0-4.6-.8-6-2.3-1.3-1.6-2-3.7-2-6.6zm4.3.1c0 2 .3 3.4 1 4.1s1.6 1.1 3 1.1c.9 0 1.7-.1 2.6-.2v-8.3c0-1.3-1-2-3-2h-.1c-1.1 0-2 .4-2.6 1.3s-.9 2.1-.9 4z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f78557" d="M96.414 52.961a1.962 1.962 0 0 0-2.053 2.055 1.878 1.878 0 0 0 .573 1.431 2.047 2.047 0 0 0 1.48.555 1.994 1.994 0 0 0 1.45-.555 1.903 1.903 0 0 0 .572-1.431 1.992 1.992 0 0 0-.573-1.48 1.915 1.915 0 0 0-1.449-.575zM8.381 54.379A10.34 10.34 0 0 0 0 58.703a9.21 9.21 0 0 1 15.621 2.877h-4.67a5.074 5.074 0 1 0 .096 6.219h-4.83a4.034 4.034 0 0 1 4.035-4.035h5.89a8.409 8.409 0 0 1 .06.984 9.212 9.212 0 0 1-16.01 6.219A10.326 10.326 0 0 0 8.4 75.04h15.14c7.84 0 14.193-.464 14.193-1.064 0-.385-3.109-.749-7.646-.926a8.448 8.448 0 0 0 2.646-2.453h1.217a1.12 1.12 0 0 0 0-2.24h-.096a8.526 8.526 0 0 0 .424-2.221h1.197a1.12 1.12 0 1 0 0-2.24H34.24a8.502 8.502 0 0 0-.539-2.221h.23a1.12 1.12 0 0 0 0-2.24h-1.505a8.608 8.608 0 0 0-6.7-3.225h-1.912a8.373 8.373 0 0 0-3.398.715h2.01a8.443 8.443 0 0 1 1.064 16.818c-.251.02-.503.04-.773.04H14.02a10.364 10.364 0 0 0 3.534-3.188.65.65 0 0 0 .193.02h7.568a1.12 1.12 0 0 0 0-2.241h-6.584a10.726 10.726 0 0 0 .58-2.22h8.67a1.12 1.12 0 0 0 0-2.239h-8.574a10.502 10.502 0 0 0-.424-2.22h6.373a1.12 1.12 0 0 0 0-2.24h-7.359a10.346 10.346 0 0 0-8.885-5.077H8.38zm47.535 1.09A9.216 9.216 0 1 0 65 64.695a8.95 8.95 0 0 0-.102-1.363h-6.296a3.801 3.801 0 0 0-3.805 3.805h6.447a5.967 5.967 0 1 1-.521-5.826h3.636a9.216 9.216 0 0 0-8.443-5.842zm26.442.22v3.688h-1.651a.496.496 0 0 0-.506.504v2.088h2.156V73.57h2.745a.496.496 0 0 0 .505-.506V61.986h2.373V59.9a.496.496 0 0 0-.505-.503h-1.868v-2.358a1.351 1.351 0 0 0-1.347-1.35h-1.903zm6.75 0v17.897h2.742a.496.496 0 0 0 .506-.506V57.035a1.351 1.351 0 0 0-1.348-1.346h-1.9zm18.285 3.385a5.558 5.558 0 0 0-2.744.639 4.085 4.085 0 0 0-1.635 1.564v-.537a1.35 1.35 0 0 0-1.346-1.346h-1.666v14.21h2.742a.496.496 0 0 0 .506-.504v-7.748h.035a3.601 3.601 0 0 1 .893-2.575 3.21 3.21 0 0 1 2.44-.925 2.588 2.588 0 0 1 2.12.857 3.627 3.627 0 0 1 .692 2.373v8.52h2.744a.496.496 0 0 0 .506-.506V64.68a5.83 5.83 0 0 0-1.381-4.075 4.976 4.976 0 0 0-3.906-1.53zm13.84.31a7.07 7.07 0 1 0 6.767 7.08 6.52 6.52 0 0 0-.05-.808h-5.118a2.57 2.57 0 0 0-2.492 2.576h3.99a3.83 3.83 0 1 1-.404-4.142h3.67a7.07 7.07 0 0 0-6.363-4.705zm-26.452.009v14.193h2.746a.496.496 0 0 0 .504-.506V60.74a1.351 1.351 0 0 0-1.347-1.347H94.78zm-21.898.146a7.076 7.076 0 1 0 4.15 13.024v1.021h1.905a1.351 1.351 0 0 0 1.345-1.346v-5.656h.002a7.076 7.076 0 0 0-7.402-7.043zm.924 3.219a3.889 3.889 0 0 1 3.281 3.842 3.89 3.89 0 0 1-3.89 3.888 3.889 3.889 0 0 1-.758-7.703 3.889 3.889 0 0 1 1.367-.027z"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 2.5 KiB |
@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#E77500" d="M94.3 3.9H33.7C17.1 3.9 3.5 17.5 3.5 34.1v60.6c0 16.6 13.6 30.2 30.2 30.2h60.6c16.6 0 30.2-13.6 30.2-30.2V34.1c0-16.6-13.6-30.2-30.2-30.2zM68.9 104.7c-22.4 3-44.2-12.9-46.6-34.1-2.8-24.8 13.4-44.8 38.2-46.4 10.8-.7 21.8-.4 32.7 0 1.8.1 8.2.1 8.2.1v3.1c.2 3.3-.9 8-3.3 9.9-3.7 2.9-8.7 4.7-13.4 5.4-6.2.9-12.5.1-18.8.3-13.9.3-22.8 6.4-24.6 16.9-1.8 10.6 1.5 19.1 11.6 23.9C64 89.1 75.3 86 85.2 73.9 72.7 71.5 56.7 77.8 55 56.8h50.4c4.1 25-10.9 44.4-36.5 47.9z"/></svg>
|
Before Width: | Height: | Size: 552 B |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#64328B" d="M17.4 47.3C8.2 47.3.7 54.8.7 64s7.5 16.7 16.7 16.7S34.1 73.2 34.1 64s-7.5-16.7-16.7-16.7zM4.1 64.1l13.3 13.3c-7.4 0-13.3-6-13.3-13.3zM20.3 77L4.4 61c1.4-5.9 6.6-10.3 13-10.3 4.3 0 8.2 2.1 10.6 5.3l-2 1.9c-1.9-2.7-5.1-4.5-8.7-4.5-4.6 0-8.5 2.9-10 7 2 1.8 13 12.8 13.7 13.6 3.3-1.2 5.8-4.1 6.7-7.6H22V64l8.6.1c0 6.3-4.4 11.6-10.3 12.9z"/><path d="M56.9 63.9v2.8h4.7c-.9 2.3-3.2 4-5.9 4-3.5 0-6.4-2.9-6.4-6.4s2.9-6.4 6.4-6.4c2 0 3.8.9 5 2.4l2.8-2c-1.8-2.3-4.6-3.8-7.7-3.8h-.2c-5.4 0-9.7 4.3-9.7 9.7s4.3 9.7 9.7 9.7h.2c5.4 0 9.7-4.3 9.7-9.7v-.4l-8.6.1zM75.8 63.4c-1-1.3-2.4-2.1-4.1-2.1-3 0-5.4 2.9-5.4 6.4 0 3.5 2.4 6.4 5.4 6.4 1.7 0 3.2-.9 4.2-2.3v1.6h3.3V61.6h-3.4v1.8zm-2.7 7.5c-1.9 0-3.4-1.5-3.4-3.4s1.5-3.4 3.4-3.4 3.4 1.5 3.4 3.4-1.6 3.4-3.4 3.4zM107.4 61.2c-1.6 0-3.1.8-4.1 2.1v-9.7H100v19.7h3.3v-1.6c1 1.4 2.5 2.3 4.2 2.3 3 0 5.4-2.9 5.4-6.4 0-3.5-2.5-6.4-5.5-6.4zm-1.3 9.7c-1.9 0-3.4-1.5-3.4-3.4s1.5-3.4 3.4-3.4 3.4 1.5 3.4 3.4c-.1 1.9-1.6 3.4-3.4 3.4zM85.5 57.6h-3.1v4h-1.3v2.7h1.2v9h3.2v-9H88v-2.7h-2.5zM93.1 65.5c-.9 0-1.3-3.5 2.8-1.1l1.6-1.9s-3.9-2.8-7.2 0c-2.4 3.5 1.1 5.2 1.1 5.2l2.1.9s2.9 1.3 0 2.8c-2.4.1-3.2-1.6-3.2-1.6l-1.6 2s4.3 4.4 8.9 0c2.4-5.7-3.2-5.7-4.5-6.3zM123.7 61.6l-3.4 6.7-3.6-6.7h-3.8l5.5 10.2-4.4 8h3.9l9.5-18.2z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#64328b" d="M16.832 47.016C7.559 47.016 0 54.578 0 63.848 0 73.12 7.559 80.68 16.832 80.68s16.832-7.559 16.832-16.832c0-9.27-7.559-16.832-16.832-16.832ZM3.426 63.949l13.406 13.406c-7.457 0-13.406-6.046-13.406-13.406Zm16.328 13.004L3.73 60.824c1.41-5.945 6.653-10.379 13.102-10.379 4.332 0 8.266 2.117 10.684 5.34L25.5 57.7a10.742 10.742 0 0 0-8.77-4.535c-4.636 0-8.566 2.926-10.078 7.055 2.016 1.816 13.102 12.902 13.809 13.707 3.324-1.207 5.844-4.13 6.75-7.656h-5.742v-2.422l8.668.101c0 6.352-4.438 11.692-10.383 13.004Zm0 0"/><path d="M56.64 63.746v2.824h4.739a6.405 6.405 0 0 1-5.945 4.032c-3.528 0-6.45-2.922-6.45-6.45 0-3.527 2.922-6.453 6.45-6.453a6.41 6.41 0 0 1 5.039 2.422l2.82-2.016c-1.813-2.32-4.633-3.832-7.758-3.832h-.203a9.725 9.725 0 0 0-9.777 9.778 9.725 9.725 0 0 0 9.777 9.777h.203a9.721 9.721 0 0 0 9.774-9.777v-.403Zm19.051-.504c-1.007-1.308-2.418-2.113-4.132-2.113-3.024 0-5.442 2.922-5.442 6.45 0 3.526 2.418 6.448 5.442 6.448 1.714 0 3.226-.906 4.234-2.316v1.613h3.324V61.43h-3.426Zm-2.722 7.563a3.399 3.399 0 0 1-3.426-3.43 3.398 3.398 0 0 1 3.426-3.426 3.399 3.399 0 0 1 3.43 3.426c0 1.918-1.614 3.43-3.43 3.43Zm34.57-9.778c-1.613 0-3.125.805-4.133 2.118v-9.778h-3.324v19.856h3.324v-1.614c1.008 1.41 2.52 2.317 4.235 2.317 3.023 0 5.441-2.922 5.441-6.45 0-3.527-2.52-6.449-5.543-6.449Zm-1.309 9.778a3.399 3.399 0 0 1-3.425-3.43 3.398 3.398 0 0 1 3.425-3.426 3.398 3.398 0 0 1 3.426 3.426c-.101 1.918-1.613 3.43-3.426 3.43ZM85.47 57.398h-3.125v4.032H81.03v2.722h1.211v9.07h3.227v-9.07h2.52V61.43h-2.52Zm7.66 7.961c-.91 0-1.313-3.527 2.82-1.105l1.614-1.918s-3.93-2.82-7.258 0c-2.418 3.527 1.11 5.242 1.11 5.242l2.116.906s2.922 1.313 0 2.825c-2.418.097-3.226-1.614-3.226-1.614l-1.614 2.016s4.336 4.434 8.973 0c2.418-5.746-3.227-5.746-4.535-6.352Zm30.84-3.93-3.426 6.755-3.629-6.754h-3.832l5.543 10.28-4.434 8.063h3.93L127.7 61.43Zm0 0"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.9 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#64328B" d="M64 0C28.7 0 0 28.7 0 64s28.7 64 64 64 64-28.7 64-64S99.3 0 64 0zM13.2 64L64 114.8c-28.1 0-50.8-22.7-50.8-50.8zm62.2 49.5l-60.9-61C19.7 30 39.9 13.2 64 13.2c16.6 0 31.3 7.9 40.5 20.2L97 40.6c-7.3-10.4-19.3-17.1-33-17.1-17.6 0-32.5 11.2-38.1 26.8C33.1 57 75.4 98.8 78.1 102c12.7-4.7 22.3-15.5 25.4-28.9H81.9v-9.4l33 .2c-.1 24.3-16.9 44.5-39.5 49.6z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#64328B" d="M64 0C28.7 0 0 28.7 0 64s28.7 64 64 64 64-28.7 64-64S99.3 0 64 0zM13.2 64L64 114.8c-28.1 0-50.8-22.7-50.8-50.8zm62.2 49.5l-60.9-61C19.7 30 39.9 13.2 64 13.2c16.6 0 31.3 7.9 40.5 20.2L97 40.6c-7.3-10.4-19.3-17.1-33-17.1-17.6 0-32.5 11.2-38.1 26.8C33.1 57 75.4 98.8 78.1 102c12.7-4.7 22.3-15.5 25.4-28.9H81.9v-9.4l33 .2c-.1 24.3-16.9 44.5-39.5 49.6z"/></svg>
|
||||
|
Before Width: | Height: | Size: 442 B After Width: | Height: | Size: 443 B |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#64328B" d="M17.4 47.3C8.2 47.3.7 54.8.7 64s7.5 16.7 16.7 16.7S34.1 73.2 34.1 64s-7.5-16.7-16.7-16.7zM4.1 64.1l13.3 13.3c-7.4 0-13.3-6-13.3-13.3zM20.3 77L4.4 61c1.4-5.9 6.6-10.3 13-10.3 4.3 0 8.2 2.1 10.6 5.3l-2 1.9c-1.9-2.7-5.1-4.5-8.7-4.5-4.6 0-8.5 2.9-10 7 2 1.8 13 12.8 13.7 13.6 3.3-1.2 5.8-4.1 6.7-7.6H22V64l8.6.1c0 6.3-4.4 11.6-10.3 12.9zM57.1 63.9v2.8h4.7c-.9 2.3-3.2 4-5.9 4-3.5 0-6.4-2.9-6.4-6.4s2.9-6.4 6.4-6.4c2 0 3.8.9 5 2.4l2.8-2c-1.8-2.3-4.6-3.8-7.7-3.8h-.2c-5.4 0-9.7 4.3-9.7 9.7s4.3 9.7 9.7 9.7h.2c5.4 0 9.7-4.3 9.7-9.7v-.4l-8.6.1zM75.9 63.4c-1-1.3-2.4-2.1-4.1-2.1-3 0-5.4 2.9-5.4 6.4 0 3.5 2.4 6.4 5.4 6.4 1.7 0 3.2-.9 4.2-2.3v1.6h3.3V61.6h-3.4v1.8zm-2.7 7.5c-1.9 0-3.4-1.5-3.4-3.4s1.5-3.4 3.4-3.4 3.4 1.5 3.4 3.4-1.5 3.4-3.4 3.4zM107.6 61.2c-1.6 0-3.1.8-4.1 2.1v-9.7h-3.4v19.7h3.3v-1.6c1 1.4 2.5 2.3 4.2 2.3 3 0 5.4-2.9 5.4-6.4 0-3.5-2.4-6.4-5.4-6.4zm-1.4 9.7c-1.9 0-3.4-1.5-3.4-3.4s1.5-3.4 3.4-3.4 3.4 1.5 3.4 3.4-1.5 3.4-3.4 3.4zM85.7 57.6h-3.2v4h-1.3v2.7h1.3v9h3.2v-9h2.4v-2.7h-2.4zM93.2 65.5c-.9 0-1.3-3.5 2.8-1.1l1.6-1.9s-3.9-2.8-7.2 0c-2.4 3.5 1.1 5.2 1.1 5.2l2.1.9s2.9 1.3 0 2.8c-2.4.1-3.2-1.6-3.2-1.6l-1.6 2s4.3 4.4 8.9 0c2.4-5.7-3.1-5.7-4.5-6.3zM123.8 61.6l-3.4 6.7-3.6-6.7H113l5.5 10.2-4.3 8h3.8l9.5-18.2z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#64328b" d="M16.832 47.066C7.559 47.066 0 54.625 0 63.898 0 73.172 7.559 80.73 16.832 80.73s16.832-7.558 16.832-16.832c0-9.273-7.559-16.832-16.832-16.832ZM3.426 64l13.406 13.406C9.375 77.406 3.426 71.36 3.426 64Zm16.328 13L3.73 60.875c1.41-5.945 6.653-10.379 13.102-10.379 4.332 0 8.266 2.113 10.684 5.34L25.5 57.75a10.742 10.742 0 0 0-8.77-4.535c-4.636 0-8.566 2.922-10.078 7.055 2.016 1.816 13.102 12.902 13.809 13.707 3.324-1.207 5.844-4.133 6.75-7.66h-5.742v-2.419l8.668.102c0 6.348-4.438 11.691-10.383 13Zm37.09-13.203v2.824h4.738c-.906 2.317-3.227 4.031-5.95 4.031-3.527 0-6.448-2.922-6.448-6.449 0-3.527 2.921-6.453 6.449-6.453 2.02 0 3.832.91 5.043 2.422l2.82-2.016c-1.812-2.32-4.637-3.832-7.762-3.832h-.199a9.722 9.722 0 0 0-9.777 9.778 9.722 9.722 0 0 0 9.777 9.777h.2a9.722 9.722 0 0 0 9.777-9.777v-.403Zm18.949-.504c-1.008-1.309-2.418-2.113-4.133-2.113-3.023 0-5.441 2.922-5.441 6.449 0 3.527 2.418 6.45 5.441 6.45 1.715 0 3.227-.907 4.235-2.317v1.613h3.324V61.48h-3.426Zm-2.723 7.562a3.401 3.401 0 0 1-3.425-3.43A3.398 3.398 0 0 1 73.07 64a3.398 3.398 0 0 1 3.426 3.426 3.401 3.401 0 0 1-3.426 3.43Zm34.672-9.777c-1.613 0-3.125.805-4.133 2.117v-9.777h-3.425v19.855h3.324V71.66c1.008 1.41 2.52 2.317 4.234 2.317 3.024 0 5.442-2.922 5.442-6.45 0-3.527-2.418-6.449-5.442-6.449Zm-1.41 9.777a3.402 3.402 0 0 1-3.43-3.43 3.399 3.399 0 0 1 3.43-3.425 3.398 3.398 0 0 1 3.426 3.426 3.401 3.401 0 0 1-3.426 3.43ZM85.668 57.45h-3.223v4.031h-1.312v2.723h1.312v9.07h3.223v-9.07h2.422V61.48h-2.422Zm7.559 7.961c-.907 0-1.309-3.527 2.824-1.11l1.613-1.913s-3.934-2.82-7.258 0c-2.418 3.527 1.11 5.242 1.11 5.242l2.117.906s2.922 1.309 0 2.824c-2.422.098-3.227-1.613-3.227-1.613l-1.613 2.016s4.336 4.433 8.973 0c2.418-5.746-3.125-5.746-4.54-6.352Zm30.843-3.93-3.43 6.754-3.624-6.754h-3.832l5.543 10.282-4.332 8.062h3.828l9.574-18.344Zm0 0"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.9 KiB |
@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#64328B" d="M64 0C28.7 0 0 28.7 0 64s28.7 64 64 64 64-28.7 64-64S99.3 0 64 0zM13.2 64L64 114.8c-28.1 0-50.8-22.7-50.8-50.8zm62.2 49.5l-60.9-61C19.7 30 39.9 13.2 64 13.2c16.6 0 31.3 7.9 40.5 20.2L97 40.6c-7.3-10.4-19.3-17.1-33-17.1-17.6 0-32.5 11.2-38.1 26.8C33.1 57 75.4 98.8 78.1 102c12.7-4.7 22.3-15.5 25.4-28.9H81.9v-9.4l33 .2c-.1 24.3-16.9 44.5-39.5 49.6z"/></svg>
|
Before Width: | Height: | Size: 442 B |
1
icons/gentoo/gentoo-line-wordmark.svg
Normal file
After Width: | Height: | Size: 20 KiB |
1
icons/gentoo/gentoo-line.svg
Normal file
After Width: | Height: | Size: 7.4 KiB |
1
icons/gentoo/gentoo-original-wordmark.svg
Normal file
After Width: | Height: | Size: 8.0 KiB |
1
icons/gentoo/gentoo-original.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="url(#a)" d="M2.876 102.069c.014-5.4 4.604-12.939 11.127-19.788 4.358-4.577 8.785-8.594 18.435-16.822-6.675-3.663-17.057-8.082-22.265-13.87-1.928-2.14-5.421-6.992-4.744-13.473C6.81 24.905 23.116 4.857 46.293.619c7.711-1.41 16.565-.393 23.852 2.883 22.861 10.278 50.819 35.812 54.259 48.28 1.21 4.387.978 11.382-1.11 15.28-2.586 4.833-11.542 14.646-23.795 24.773-19.225 15.889-46.166 32.95-66.282 35.82-6.5.929-13.141-.039-17.801-2.668-7.292-4.115-9.713-9.608-10.563-11.254-2.263-4.378-1.982-9.925-1.977-11.664Zm54.108-60.667c.248-3.061 12.253-.013 11.495 2.411-.8 2.558-11.78 1.101-11.495-2.41z"/><path fill="url(#b)" d="M38.935 60.4c-6.317 5.334-10.518 8.93-15.784 13.744C10.47 85.734 1.852 94.557 6.295 106.618c5.125 13.912 16.358 13.207 29.532 10.621 33.956-6.697 89.772-49.608 86.927-65.458-2.302-12.825-33.486-38.322-51.95-47.395C65.036 1.55 58.39.085 51.721.399 26.333 1.597 6.506 24.712 7.519 37.236c.985 12.184 31.78 22.8 31.416 23.164Zm-3.81-42.535c-7.64 8.5-2.756 24.944 9.913 33.907 14.825 10.488 38.83 12.387 43.608 4.299 8.91-15.087-.819-31.04-15.342-38.156-14.351-7.032-33.417-5.349-38.18-.05Z"/><path fill="url(#c)" d="M61.177 51.415c10.725 1.491 19.97-2.804 21.415-13.395 1.102-8.067-11.245-16.881-18.668-18.914-6.199-1.697-19.656.486-20.564 12.21-.943 12.187 11.564 19.23 17.817 20.1Zm-5.252-20.27c-7.048 10.92 10.234 14.276 12.88 12.285 11.407-8.585-9.774-17.096-12.88-12.285Z"/><path fill="url(#d)" d="M49.675 3.3c-12.468 1.314-14.856 2.918-26.15 11.464-3.786 2.864-10.753 9.833-12.538 18.1-.68 3.148.124 5.867 2.391 7.773 7.261 6.105 19.414 11.057 29.384 15.845 2.92 1.402.987 3.945-3.722 8.021C27.156 74.791 11.09 87.314 9.969 96.856c-.529 4.497 1.01 10.607 6.468 13.734 6.376 3.652 19.61 1.268 28.448-2.023 12.915-4.809 29.879-15.422 43.347-25.855 14.004-10.848 27.026-24.628 27.67-26.875.79-2.76.712-5.309-.814-8.24-2.397-4.602-5.602-8.021-9.043-11.849-9.233-9.734-19.002-18.287-30.69-24.841-8.44-4.733-15.867-8.641-25.68-7.607Zm18.314 21.823c9.007 4.354 18.257 15.793-.08 22.376-4.987 1.79-20.8-4.397-20.317-12.84.706-12.472 9.399-14.854 20.397-9.536z"/><defs><radialGradient id="c" cx="0" cy="0" r="1" gradientTransform="matrix(21.5958 0 0 16.55244 54.025 28.43)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#fff"/><stop offset="34%" stop-color="#fff"/><stop offset="51%" stop-color="#bebbdb"/><stop offset="75%" stop-color="#928bbe"/><stop offset="87%" stop-color="#9f99c7"/><stop offset="100%" stop-color="#524c76"/></radialGradient><radialGradient id="d" cx="0" cy="0" r="1" gradientTransform="matrix(-2.96054 187.84913 -160.21079 -2.5225 4.891 33.727)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#fff"/><stop offset="34%" stop-color="#fff"/><stop offset="51%" stop-color="#bebbdb"/><stop offset="75%" stop-color="#928bbe"/><stop offset="87%" stop-color="#9f99c7"/><stop offset="100%" stop-color="#524c76"/></radialGradient><linearGradient id="a" x1="0" x2="1" y1="0" y2="0" gradientTransform="rotate(79.19 168.776 -156.268) scale(428.36508)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#fff"/><stop offset="34%" stop-color="#fff"/><stop offset="51%" stop-color="#bebdf3"/><stop offset="75%" stop-color="#867fb7"/><stop offset="87%" stop-color="#9f99c7"/><stop offset="100%" stop-color="#524c76"/></linearGradient><linearGradient id="b" x1="0" x2="1" y1="0" y2="0" gradientTransform="rotate(-102.573 79.15 14.225) scale(111.47795)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#fff"/><stop offset="34%" stop-color="#fff"/><stop offset="51%" stop-color="#bebbdb"/><stop offset="75%" stop-color="#928bbe"/><stop offset="87%" stop-color="#9f99c7"/><stop offset="100%" stop-color="#524c76"/></linearGradient></defs></svg>
|
After Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 7.3 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M54.926 6.137C45.937 6.012 35.82 9.699 27.68 16.145c-8.594 6.804-14.575 16.003-15.383 23.671-.266 2.528.262 5.125 1.578 7.786.879 1.77 1.758 2.972 3.32 4.535 2.89 2.89 5.957 4.84 14.668 9.324 3.184 1.637 4.235 2.2 4.235 2.262 0 .015-.559.5-1.235 1.074-6.89 5.832-13 11.508-16.152 15.008-4.57 5.07-7.727 10.422-8.469 14.347-.18.946-.207 4.7-.043 6.192.258 2.379.793 4.219 1.82 6.238 1.247 2.461 2.458 4.113 4.34 5.934 3.864 3.738 8.246 5.648 14.043 6.132 1.004.082 4.766-.039 5.895-.187 6.648-.89 14.648-3.664 23.586-8.172 17.785-8.973 38.715-24.738 50.847-38.297 2.36-2.637 4.672-5.738 5.372-7.21.972-2.04 1.433-4.532 1.433-7.778.004-2.922-.37-5.055-1.25-7.09-4.012-9.348-20.105-24.793-36.344-34.89-3.933-2.446-9.27-5.247-12.129-6.368-3.515-1.379-6.992-2.144-11.105-2.441-.586-.043-1.18-.07-1.781-.078zm-.34.254c1.441.004 2.871.062 3.836.18 4.621.562 8.387 1.742 12.7 3.98 10.624 5.515 24.636 16.082 33.905 25.562 6.434 6.586 10.188 12.2 10.578 15.832.395 3.668-2.199 8.692-7.777 15.059-1.488 1.7-6.39 6.566-8.484 8.422-15.094 13.386-34.54 25.37-50.496 31.117a72.538 72.538 0 01-16.38 3.852c-1.644.195-5.37.277-6.55.144-2.234-.246-3.828-.684-5.496-1.508-2.149-1.058-3.805-2.527-5.195-4.605a20.658 20.658 0 01-3.082-7.54c-.262-1.359-.239-3.706.046-5.16.653-3.316 2.371-6.535 5.496-10.296 3.47-4.18 10.977-11.164 22.57-21l1.391-1.18-.382-.195c-.211-.106-1.29-.578-2.399-1.051C28.66 53.656 21.883 49.672 17.84 45.64c-1.82-1.813-2.969-3.543-3.512-5.297-.629-2.02-.242-5.223 1.012-8.383 2.215-5.586 7.297-11.813 13.39-16.402 6.692-5.043 14.149-8.102 21.93-8.993 1.024-.117 2.48-.175 3.926-.175zm-1.344 2.55c-1.195.036-2.457.141-3.828.309-6.934.852-10.262 2.055-15.27 5.52-1.851 1.28-6.308 4.64-7.32 5.52-4.152 3.6-7.547 8.343-8.988 12.542-.91 2.656-1.05 4.469-.484 6.16.562 1.684 1.648 2.805 4.785 4.953 3.73 2.559 8.027 4.813 18.16 9.54 5.27 2.456 5.77 2.734 5.992 3.316.266.707-.039 1.558-.988 2.742-.934 1.168-2.11 2.242-7.395 6.77-7.457 6.39-10.195 8.87-13.148 11.894-5.106 5.223-7.758 9.238-8.375 12.684-.508 2.82.23 6.414 1.828 8.89 1.965 3.051 4.879 4.684 9.117 5.11 5.602.558 14.024-1.004 21.367-3.973 13.242-5.352 31.754-17.406 45.356-29.54 6.531-5.827 13.793-13.343 15.172-15.706.402-.692.683-2.336.62-3.637-.077-1.695-.491-2.957-1.593-4.875-1.82-3.168-4.43-6.39-9.129-11.281-6.101-6.344-12.875-12.11-19.281-16.402-5.352-3.586-12.387-7.348-16.57-8.86-3.47-1.254-6.446-1.777-10.028-1.676zM58.84 25.84c.914.015 1.863.11 2.656.273 6.961 1.446 13.324 6.192 14.832 11.055.348 1.125.332 2.785-.039 3.812a9.265 9.265 0 01-.598 1.31c-.504.855-2.093 2.41-3.207 3.144-1.921 1.257-4.8 2.52-6.183 2.71-.434.063-.91.106-1.059.098-4.484-.222-9.972-2.59-13.094-5.648-2.09-2.043-2.945-3.942-2.804-6.223.36-5.797 2.836-9.43 7.062-10.348.645-.14 1.52-.199 2.434-.183zm.972 6.504c-1.32.023-2.367.367-2.93 1.047-.343.418-1.038 1.78-1.273 2.492-.597 1.816-.347 3.476.75 4.933.282.371.688.817.907.993l.402.316.305-.258c.43-.363.953-.476 2.16-.472 1.09 0 1.996.113 3.027.37 2.32.579 4.035 1.426 4.504 2.22.18.3.223.324.418.218.121-.062.606-.504 1.082-.98.965-.965 1.527-1.934 1.711-2.957.402-2.215-1.625-4.782-5.086-6.434-2.133-1.016-4.277-1.52-5.977-1.488zm0 0" fill="#9991d9" stroke-width=".10075" stroke="#9991d9"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#9991d9" d="M53.902.06C43.687-.08 32.19 4.109 22.94 11.434 13.175 19.165 6.379 29.618 5.46 38.332c-.303 2.872.297 5.823 1.793 8.847.999 2.012 1.997 3.377 3.772 5.154 3.284 3.284 6.77 5.5 16.668 10.595 3.618 1.86 4.813 2.5 4.813 2.57 0 .017-.636.568-1.404 1.22-7.83 6.628-14.772 13.078-18.354 17.055-5.193 5.761-8.78 11.843-9.624 16.303-.204 1.075-.235 5.341-.049 7.036.294 2.704.901 4.795 2.069 7.089 1.417 2.796 2.793 4.674 4.931 6.743 4.391 4.248 9.37 6.418 15.958 6.968 1.14.093 5.416-.044 6.699-.212 7.554-1.012 16.645-4.164 26.802-9.287 20.21-10.196 43.993-28.11 57.78-43.518 2.681-2.997 5.308-6.52 6.104-8.193 1.104-2.318 1.628-5.15 1.628-8.839.005-3.32-.42-5.744-1.42-8.057-4.56-10.622-22.846-28.173-41.3-39.647-4.469-2.78-10.533-5.962-13.782-7.236C64.55 1.356 60.599.487 55.925.15a33.799 33.799 0 0 0-2.023-.088Zm-.387.29c1.638.004 3.263.07 4.36.204 5.25.638 9.53 1.98 14.431 4.523 12.072 6.267 27.995 18.274 38.528 29.047 7.311 7.484 11.577 13.863 12.02 17.99.449 4.169-2.499 9.878-8.837 17.113-1.691 1.932-7.262 7.46-9.641 9.57-17.152 15.211-39.25 28.829-57.381 35.36a82.428 82.428 0 0 1-18.613 4.377c-1.868.221-6.102.315-7.443.163-2.539-.279-4.35-.777-6.246-1.713-2.442-1.202-4.323-2.872-5.903-5.233a23.475 23.475 0 0 1-3.502-8.568c-.298-1.544-.272-4.211.052-5.864.742-3.768 2.694-7.426 6.245-11.7 3.943-4.75 12.474-12.686 25.648-23.863l1.58-1.34-.434-.222c-.24-.12-1.466-.657-2.726-1.194-11.598-4.941-19.3-9.468-23.894-14.05-2.068-2.06-3.374-4.026-3.99-6.02-.715-2.295-.276-5.935 1.15-9.525 2.516-6.348 8.291-13.424 15.215-18.639C31.738 5.036 40.212 1.56 49.054.547c1.164-.133 2.818-.199 4.461-.199zm-1.527 2.897a47.58 47.58 0 0 0-4.35.351c-7.88.968-11.661 2.335-17.352 6.273-2.103 1.454-7.168 5.272-8.318 6.272-4.718 4.091-8.576 9.481-10.213 14.252-1.034 3.019-1.194 5.079-.55 7 .638 1.914 1.872 3.188 5.437 5.629 4.239 2.908 9.121 5.469 20.636 10.84 5.989 2.791 6.557 3.107 6.809 3.769.302.803-.044 1.77-1.123 3.115-1.061 1.328-2.397 2.548-8.403 7.694-8.474 7.26-11.585 10.079-14.94 13.515-5.803 5.935-8.816 10.498-9.518 14.414-.577 3.204.262 7.288 2.078 10.102 2.233 3.467 5.544 5.322 10.36 5.806 6.366.634 15.936-1.14 24.28-4.514 15.048-6.082 36.084-19.78 51.54-33.568 7.422-6.621 15.674-15.162 17.24-17.847.458-.787.777-2.655.705-4.133-.087-1.926-.558-3.36-1.81-5.54-2.068-3.6-5.034-7.261-10.374-12.819-6.932-7.209-14.63-13.761-21.91-18.638-6.081-4.075-14.075-8.35-18.829-10.068-3.943-1.425-7.325-2.02-11.395-1.905Zm6.361 19.203a16.95 16.95 0 0 1 3.018.31c7.91 1.643 15.141 7.037 16.855 12.563.395 1.278.377 3.164-.045 4.331a10.528 10.528 0 0 1-.68 1.489c-.572.972-2.378 2.739-3.643 3.573-2.183 1.428-5.455 2.863-7.026 3.08-.494.07-1.035.12-1.204.11-5.095-.252-11.331-2.943-14.88-6.418-2.374-2.321-3.346-4.479-3.185-7.071.409-6.587 3.222-10.716 8.024-11.759.733-.159 1.728-.226 2.766-.208zm1.105 7.39c-1.5.027-2.69.418-3.33 1.19-.39.476-1.18 2.023-1.446 2.832-.679 2.064-.394 3.95.852 5.606.32.422.782.928 1.03 1.128l.458.36.346-.294c.489-.412 1.083-.54 2.455-.536 1.238 0 2.268.128 3.44.42 2.636.658 4.585 1.62 5.117 2.523.205.341.254.368.475.248.138-.07.689-.573 1.23-1.114 1.097-1.096 1.735-2.197 1.944-3.36.457-2.517-1.846-5.434-5.78-7.311-2.423-1.155-4.86-1.727-6.791-1.691zm0 0"/></svg>
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
1
icons/gimp/gimp-line-wordmark.svg
Normal file
After Width: | Height: | Size: 5.8 KiB |
1
icons/gimp/gimp-line.svg
Normal file
After Width: | Height: | Size: 5.0 KiB |
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 12 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M38.8 37.3c-1 0-2-.6-2.5-1.5l-.8-1.4-.1 1.6-.1.7c0 3 2.4 5.4 5.4 5.4 3 0 5.4-2.4 5.4-5.4 0-2.9-2.2-5.2-5.1-5.4l-1.6-.1 1.2 1c.7.5 1.1 1.3 1.1 2.2 0 1.7-1.3 2.9-2.9 2.9zm-.5-12.1c4.6 0 8.4 3.1 9.7 7.2.7-2 1.9-3.7 3.5-5.1-14.9-1-21.3-14.2-21.3-14.2l-.4 16.7c1.8-2.8 5-4.6 8.5-4.6zm23.6 19c3.4 0 6.1-2.8 6.1-6.1s-2.6-6-5.8-6.1l-1.4-.1 1.1.9c.8.7 1.3 1.7 1.3 2.7 0 1.9-1.6 3.5-3.5 3.5-1.3 0-2.4-.7-3.1-1.8l-.6-1.3-.2 1.4-.1.8c.1 3.4 2.8 6.1 6.2 6.1zm58.6 43.1l-1.1-3.8c-2.3-8.2-4.1-14.6-11.2-14-1.1.1-2 .4-2.8 1L98.2 66H98l-.6-1.7-1.1.7c-2.2-1.4-4.8-2.8-7.3-3.9 8.2-9.8 12.7-27 9.5-55.2-.3-2.5-1.6-2.9-2.5-.3-.8 2.4-5.6 16.7-30.5 20.8 3.3 2.1 5.5 5.8 5.5 10 0 6.5-5.3 11.8-11.8 11.8-5.6 0-10.3-3.9-11.5-9.1-1.5 3.7-5.1 6.2-9.3 6.2-4.2 0-7.8-2.6-9.3-6.2l-.3.5-.4-.6c-4.9-6.8-12.7-9.4-17.6-6-4.8 3.5-4.8 11.8.1 18.6 4.1 5.7 10.2 8.4 14.9 7.2C39.7 69 65 77.9 82.1 67c3.4 1.9 7.2 3.8 10.7 5v.1l.3 1.1 1.5-.6.2.2 8 2.9c.1 2.5 1.6 5.3 4.9 6.6 6.1 2.3 11.9 5.3 12 5.4l.9.5-.1-.9zM19 39.8c0 2.9-2 5.3-4.4 5.3-2.4 0-4.4-2.4-4.4-5.3s2-5.3 4.4-5.3 4.4 2.4 4.4 5.3zm60.2 17.3c-2.9-1-5.1-1.7-5.6-1.8-1.8-.8-3.5-.3-4.1 1.1-.4 1 0 2.2.8 3.1-5.7 2.5-15 1.4-26.9-2.8 16.7 3.3 25.2.2 30.2-3.6-1.3-1.7-3.6-3.6-3.6-3.6s5.8 1.6 7.9 4.3c1.1 1.3 1.3 2.2 1.3 3.3zm-47.1 28l-4.8 27.8 9-.2-.7 2.5-9 .4-.9 6.2 15.7-.5L47.6 85l-15.5.1zm5.3 21l-3.1.1 2.5-14.3 3-.1-2.4 14.3zm11.8-14.9L44.8 118h5.9l4.8-26.9zM59.4 85l-5.8 32.4 6.5.1 4.4-25.6 2.8.2-4.5 25.9h6.3l4.6-25.7 2.9-.1-4.6 25.3 6.2-.1 5.6-32.1zm21.1 37h6.2l.7-4.1 9.2-.2 5.9-32-15.5-.2-6.5 36.5zm11.6-30.1l2.8-.1-3.4 19.7-3 .1 3.6-19.7zM56.8 82h-6l-1 6h6.3z" fill="#716955"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#716955" d="M36.806 36.255c-1.083 0-2.167-.65-2.708-1.624l-.867-1.517-.108 1.733-.108.758c0 3.25 2.6 5.85 5.849 5.85s5.849-2.6 5.849-5.85c0-3.14-2.383-5.632-5.524-5.849l-1.733-.108 1.3 1.083c.758.542 1.19 1.408 1.19 2.383 0 1.842-1.407 3.141-3.14 3.141zm-.542-13.106c4.983 0 9.099 3.358 10.507 7.799.758-2.166 2.058-4.008 3.79-5.524-16.138-1.083-23.07-15.381-23.07-15.381l-.434 18.089c1.95-3.033 5.416-4.983 9.207-4.983zm25.563 20.58c3.683 0 6.607-3.033 6.607-6.607 0-3.575-2.816-6.5-6.282-6.607l-1.517-.109 1.192.975c.866.758 1.408 1.842 1.408 2.925 0 2.058-1.733 3.79-3.791 3.79-1.408 0-2.6-.757-3.358-1.949l-.65-1.408-.217 1.516-.108.867c.108 3.683 3.033 6.607 6.716 6.607zM125.3 90.414l-1.192-4.116c-2.491-8.882-4.44-15.814-12.131-15.164-1.192.108-2.167.433-3.033 1.083l-7.799-4.875h-.217l-.65-1.841-1.191.758a61.006 61.006 0 0 0-7.907-4.224c8.882-10.615 13.756-29.246 10.29-59.791-.325-2.708-1.733-3.141-2.708-.325-.867 2.6-6.066 18.089-33.037 22.53 3.575 2.274 5.958 6.282 5.958 10.832 0 7.04-5.741 12.78-12.782 12.78-6.066 0-11.156-4.223-12.456-9.856-1.625 4.008-5.524 6.716-10.074 6.716-4.549 0-8.448-2.816-10.073-6.716l-.325.542-.433-.65c-5.308-7.366-13.757-10.182-19.064-6.5-5.2 3.792-5.2 12.782.108 20.148 4.441 6.174 11.048 9.098 16.14 7.799 15.055 11.048 42.46 20.688 60.982 8.882 3.683 2.058 7.799 4.116 11.59 5.416v.108l.325 1.191 1.625-.65.216.217 8.666 3.141c.108 2.708 1.733 5.741 5.307 7.15 6.607 2.49 12.89 5.74 12.998 5.848l.975.542zM15.359 38.964c0 3.14-2.166 5.74-4.766 5.74s-4.766-2.6-4.766-5.74 2.166-5.742 4.766-5.742 4.766 2.6 4.766 5.741zm65.207 18.738c-3.141-1.083-5.524-1.841-6.066-1.95-1.95-.866-3.791-.325-4.441 1.192-.433 1.083 0 2.383.867 3.358-6.174 2.708-16.248 1.516-29.138-3.033 18.09 3.574 27.296.216 32.712-3.9-1.408-1.84-3.9-3.899-3.9-3.899s6.283 1.733 8.558 4.658c1.191 1.408 1.408 2.383 1.408 3.574zM29.548 88.031l-5.199 30.112 9.749-.216-.758 2.707-9.749.434-.975 6.715 17.006-.541 6.716-39.32zm5.741 22.747-3.358.108 2.708-15.49 3.25-.108zm12.782-16.14-4.766 29.03h6.39l5.2-29.138zm11.048-6.715-6.282 35.094 7.04.109 4.766-27.73 3.033.217-4.874 28.054h6.824l4.982-27.837 3.142-.108-4.983 27.404 6.716-.109 6.065-34.77zM81.974 128h6.716l.758-4.441 9.965-.217 6.39-34.661-16.789-.217zm12.565-32.603 3.033-.109-3.683 21.339-3.25.108zM56.303 84.672h-6.5l-1.082 6.5h6.824z"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 2.3 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M36.4 54.4c-1.1 0-2.2-.6-2.7-1.6l-.8-1.6-.3 1.8-.1.8c0 3.3 2.6 5.9 5.9 5.9 3.3 0 5.9-2.6 5.9-5.9 0-3.1-2.5-5.7-5.6-5.9l-1.7-.1 1.4 1.1c.7.6 1.2 1.5 1.2 2.4-.1 1.7-1.5 3.1-3.2 3.1zM35.9 41c5 0 9.3 3.4 10.6 7.9.8-2.2 2.1-4.1 3.8-5.6C34 42.3 27 27.8 27 27.8l-.4 18.3c1.9-3 5.3-5.1 9.3-5.1zm25.8 21c3.7 0 6.7-3 6.7-6.7 0-3.6-2.8-6.6-6.4-6.7l-1.5-.1 1.2.9c.9.7 1.4 1.8 1.4 3 0 2.1-1.7 3.8-3.8 3.8-1.4 0-2.7-.8-3.4-2l-.7-1.3-.2 1.5-.1.9C55 58.9 58 62 61.7 62zm64.3 47.2c-.4-1.4-.8-2.8-1.2-4.1-2.5-9-4.4-16-12.3-15.3-1.2.1-2.2.5-3.1 1.1l-7.9-5h-.3l-.6-1.9-1.2.8c-2.5-1.6-5.3-3-8.1-4.3 9-10.7 13.9-29.6 10.5-60.5-.3-2.7-1.8-3.1-2.8-.2-.8 2.5-6.1 18.3-33.4 22.7 3.6 2.3 6 6.3 6 10.9 0 7.2-5.8 13-13 13-6.1 0-11.3-4.3-12.6-10-1.7 4-5.6 6.8-10.2 6.8s-8.5-2.8-10.2-6.8c-.1.2-.2.4-.3.5-.1-.2-.3-.4-.4-.7-5.4-7.4-14-10.4-19.3-6.6C.3 53.5.4 62.6 5.8 70c4.5 6.2 11.2 9.3 16.4 7.9 15.1 11.2 43 20.9 61.7 9 3.7 2.1 7.9 4.1 11.8 5.5v.1l.4 1.2 1.6-.6.2.2 8.8 3.2c.1 2.8 1.8 5.9 5.4 7.3 6.7 2.6 13.1 5.8 13.1 5.9l1 .5-.2-1zM5 57.1c0-3.2 2.2-5.8 4.8-5.8 2.7 0 4.8 2.6 4.8 5.8 0 3.2-2.2 5.8-4.8 5.8-2.7 0-4.8-2.6-4.8-5.8zm36.6 18.6c18.3 3.7 27.7.3 33.1-4-1.4-1.9-3.9-3.9-3.9-3.9s6.4 1.8 8.7 4.7c1 1.3 1.3 2.4 1.2 3.5-3.2-1.1-5.6-1.8-6.1-2-2-.9-3.9-.3-4.4 1.2-.4 1.1-.1 2.4.9 3.4-6.3 2.9-16.6 1.7-29.5-2.9z" fill="#716955"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#716955" d="M35.685 54.134c-1.13 0-2.261-.616-2.775-1.644l-.823-1.645-.308 1.85-.103.823c0 3.392 2.673 6.065 6.065 6.065s6.066-2.673 6.066-6.065c0-3.187-2.57-5.86-5.757-6.066l-1.748-.103 1.44 1.131c.719.617 1.233 1.542 1.233 2.468-.103 1.747-1.542 3.186-3.29 3.186zm-.514-13.775c5.14 0 9.56 3.495 10.897 8.121a14.012 14.012 0 0 1 3.907-5.757C33.218 41.695 26.022 26.79 26.022 26.79l-.411 18.813a11.284 11.284 0 0 1 9.56-5.243zm26.523 21.588a6.888 6.888 0 0 0 6.887-6.888c0-3.7-2.878-6.784-6.579-6.887l-1.542-.103 1.234.925c.925.72 1.439 1.85 1.439 3.084a3.905 3.905 0 0 1-3.906 3.907c-1.44 0-2.776-.823-3.496-2.056l-.72-1.337-.205 1.542-.103.926c.103 3.7 3.187 6.887 6.99 6.887zm66.1 48.522a213.11 213.11 0 0 0-1.233-4.215c-2.57-9.252-4.523-16.448-12.645-15.728-1.233.102-2.261.514-3.186 1.13l-8.122-5.14h-.308l-.617-1.953-1.233.822c-2.57-1.644-5.449-3.084-8.327-4.42 9.252-11 14.289-30.429 10.794-62.194-.309-2.776-1.85-3.187-2.879-.206-.822 2.57-6.27 18.813-34.335 23.336 3.7 2.364 6.168 6.476 6.168 11.205A13.337 13.337 0 0 1 58.507 66.47c-6.27 0-11.616-4.42-12.953-10.28-1.747 4.112-5.756 6.99-10.485 6.99-4.73 0-8.738-2.878-10.486-6.99-.103.206-.206.411-.308.514-.103-.205-.309-.41-.412-.72-5.55-7.607-14.392-10.69-19.84-6.784-5.448 4.01-5.346 13.364.206 20.971 4.626 6.374 11.513 9.56 16.859 8.121 15.523 11.514 44.204 21.486 63.428 9.252 3.803 2.16 8.12 4.215 12.13 5.654v.103l.411 1.234 1.645-.617.206.206 9.046 3.29c.103 2.878 1.85 6.064 5.551 7.504 6.888 2.672 13.467 5.962 13.467 6.065l1.028.514zM3.406 56.909c0-3.289 2.262-5.962 4.934-5.962 2.776 0 4.935 2.673 4.935 5.963s-2.262 5.962-4.935 5.962c-2.775 0-4.934-2.672-4.934-5.962zm37.625 19.122c18.812 3.803 28.476.308 34.027-4.112-1.44-1.953-4.01-4.01-4.01-4.01s6.58 1.85 8.944 4.832c1.028 1.337 1.337 2.467 1.234 3.598-3.29-1.13-5.757-1.85-6.27-2.056-2.057-.925-4.01-.308-4.524 1.234-.411 1.13-.103 2.467.925 3.495-6.476 2.981-17.065 1.747-30.326-2.981z"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 2.0 KiB |