Merge branch 'develop' into feature/2171-laravel-jetstream
2
.github/scripts/requirements.txt
vendored
@@ -1,2 +1,2 @@
|
||||
selenium==4.1.0
|
||||
requests==2.25.1
|
||||
requests==2.32.3
|
||||
|
26
.github/workflows/build_icons.yml
vendored
@@ -5,9 +5,9 @@ jobs:
|
||||
name: Get Fonts From Icomoon
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-python@v4
|
||||
with:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.10'
|
||||
|
||||
- name: Install dependencies (python, pip, npm)
|
||||
@@ -21,26 +21,26 @@ jobs:
|
||||
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
|
||||
python ./.github/scripts/icomoon_build.py
|
||||
./.github/scripts/build_assets/geckodriver-v0.32.2-linux64/geckodriver ./icomoon.json
|
||||
./devicon.json ./icons ./ $GITHUB_TOKEN --headless
|
||||
|
||||
- name: Upload geckodriver.log for debugging purposes
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v4
|
||||
if: failure()
|
||||
with:
|
||||
name: geckodriver-log
|
||||
path: ./geckodriver.log
|
||||
|
||||
- name: Upload log file for debugging purposes
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v4
|
||||
if: always()
|
||||
with:
|
||||
name: logfile
|
||||
path: ./log.txt
|
||||
|
||||
- name: Build devicon.min.css
|
||||
if: success()
|
||||
if: success()
|
||||
run: npm run build-css
|
||||
|
||||
# - name: Upload screenshot of the newly made icons
|
||||
@@ -58,11 +58,11 @@ jobs:
|
||||
uses: juliangruber/read-file-action@v1.0.0
|
||||
with:
|
||||
# taken from icomoon_build.py's get_release_message()
|
||||
path: ./release_message.txt
|
||||
path: ./release_message.txt
|
||||
|
||||
- name: Create Pull Request
|
||||
if: success()
|
||||
uses: peter-evans/create-pull-request@v3
|
||||
if: success()
|
||||
uses: peter-evans/create-pull-request@v7
|
||||
env:
|
||||
MESSAGE: |
|
||||
Hello,
|
||||
@@ -81,14 +81,14 @@ jobs:
|
||||
|
||||
More information can be found in the GitHub Action logs for this workflow.
|
||||
|
||||
Adios,
|
||||
Adios,
|
||||
Build Bot :sunglasses:
|
||||
with:
|
||||
branch: 'bot/build-result'
|
||||
commit-message: 'Built new icons, icomoon.json and devicon.css'
|
||||
title: 'bot:build new icons, icomoon.json and devicon.css'
|
||||
body: >
|
||||
${{
|
||||
${{
|
||||
format(
|
||||
env.MESSAGE,
|
||||
steps.release_message_step.outputs.content
|
||||
|
12
.github/workflows/check_icon_pr.yml
vendored
@@ -6,17 +6,17 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
if: startsWith(github.event.pull_request.title, 'new icon') || startsWith(github.event.pull_request.title, 'update icon') # only checks icon PR
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Check if PR is develop
|
||||
if: ${{ github.base_ref != 'develop' }}
|
||||
run: |
|
||||
echo -e "The PR's base branch is \`${{ github.base_ref }}\`, but should be \`develop\`\nPlease change the PR so that it's based on, and merged into \`develop\`" > ./err_messages.txt
|
||||
echo "wrong_branch=true" >> $GITHUB_ENV
|
||||
|
||||
- uses: actions/setup-python@v4
|
||||
|
||||
- uses: actions/setup-python@v5
|
||||
if: ${{ !env.wrong_branch }}
|
||||
with:
|
||||
with:
|
||||
python-version: 3.8
|
||||
|
||||
- name: Install dependencies
|
||||
@@ -32,7 +32,7 @@ jobs:
|
||||
run: python ./.github/scripts/check_icon_pr.py "$PR_TITLE" ./icons ./devicon.json
|
||||
|
||||
- name: Upload the err messages
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
if: success()
|
||||
with:
|
||||
name: err_messages
|
||||
@@ -46,7 +46,7 @@ jobs:
|
||||
run: echo $PR_NUM > pr_num.txt
|
||||
|
||||
- name: Upload the pr num
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
if: success()
|
||||
with:
|
||||
name: pr_num
|
||||
|
8
.github/workflows/codeql-analysis.yml
vendored
@@ -15,7 +15,7 @@ jobs:
|
||||
security-events: write
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v2
|
||||
@@ -31,10 +31,10 @@ jobs:
|
||||
security-events: write
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
uses: actions/setup-python@v5
|
||||
id: setup-python
|
||||
with:
|
||||
python-version: '3.10'
|
||||
@@ -65,7 +65,7 @@ jobs:
|
||||
security-events: write
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Find Python files outside the .github folder
|
||||
id: find_files
|
||||
|
14
.github/workflows/in_develop_labeler.yml
vendored
@@ -2,7 +2,7 @@ name: Label Issue In Develop
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: ['On Develop PR Merge']
|
||||
types:
|
||||
types:
|
||||
- completed
|
||||
jobs:
|
||||
on-failure:
|
||||
@@ -15,20 +15,20 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Python v3.8
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.8
|
||||
|
||||
- name: Install dependencies
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r ./.github/scripts/requirements.txt
|
||||
|
||||
|
||||
- name: Download workflow artifact
|
||||
uses: dawidd6/action-download-artifact@v2.11.0
|
||||
uses: dawidd6/action-download-artifact@v7
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
workflow: peek_icons.yml
|
||||
|
@@ -1,5 +1,5 @@
|
||||
name: On Develop PR Merge
|
||||
on:
|
||||
on:
|
||||
pull_request:
|
||||
types: [closed]
|
||||
branches: [develop]
|
||||
@@ -9,7 +9,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.event.pull_request.merged == true
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Save the PR number in an artifact
|
||||
shell: bash
|
||||
@@ -18,7 +18,7 @@ jobs:
|
||||
run: echo $PR_NUM > pr_num.txt
|
||||
|
||||
- name: Upload the PR number
|
||||
uses: actions/upload-artifact@v2.2.4
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: pr_num
|
||||
path: ./pr_num.txt
|
||||
|
4
.github/workflows/npm_publish.yml
vendored
@@ -7,13 +7,13 @@ jobs:
|
||||
environment: release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
# "ref" specifies the branch to check out.
|
||||
# "github.event.release.target_commitish" is a global variable and specifies the branch the release targeted
|
||||
ref: ${{ github.event.release.target_commitish }}
|
||||
- name: Use Node.js v16
|
||||
uses: actions/setup-node@v3
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 16
|
||||
registry-url: https://registry.npmjs.org/ # Specifies the registry, this field is required!
|
||||
|
22
.github/workflows/peek_icons.yml
vendored
@@ -1,7 +1,7 @@
|
||||
name: Peek Icons
|
||||
on:
|
||||
pull_request:
|
||||
types: [labeled]
|
||||
types: [labeled]
|
||||
jobs:
|
||||
peek:
|
||||
# four outcomes: successful check and upload,
|
||||
@@ -11,14 +11,14 @@ jobs:
|
||||
if: github.event.label.name == 'bot:peek'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Python v3.8
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.8
|
||||
|
||||
- name: Install dependencies
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r ./.github/scripts/requirements.txt
|
||||
@@ -30,7 +30,7 @@ jobs:
|
||||
run: echo $PR_NUM > pr_num.txt
|
||||
|
||||
- name: Upload the PR number
|
||||
uses: actions/upload-artifact@v2.2.4
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: pr_num
|
||||
path: ./pr_num.txt
|
||||
@@ -40,26 +40,26 @@ jobs:
|
||||
PR_TITLE: ${{ github.event.pull_request.title }}
|
||||
shell: bash
|
||||
run: >
|
||||
python ./.github/scripts/icomoon_peek.py
|
||||
./.github/scripts/build_assets/geckodriver-v0.32.2-linux64/geckodriver ./icomoon.json
|
||||
python ./.github/scripts/icomoon_peek.py
|
||||
./.github/scripts/build_assets/geckodriver-v0.32.2-linux64/geckodriver ./icomoon.json
|
||||
./devicon.json ./icons ./ --headless "$PR_TITLE"
|
||||
|
||||
- name: Upload the err messages (created by icomoon_peek.py)
|
||||
uses: actions/upload-artifact@v2.2.4
|
||||
uses: actions/upload-artifact@v4
|
||||
if: always()
|
||||
with:
|
||||
name: err_messages
|
||||
path: ./err_messages.txt
|
||||
|
||||
- name: Upload screenshots for comments
|
||||
uses: actions/upload-artifact@v2.2.4
|
||||
uses: actions/upload-artifact@v4
|
||||
if: success()
|
||||
with:
|
||||
name: screenshots
|
||||
path: ./screenshots/*.png
|
||||
|
||||
- name: Upload geckodriver.log for debugging purposes
|
||||
uses: actions/upload-artifact@v2.2.4
|
||||
uses: actions/upload-artifact@v4
|
||||
if: failure()
|
||||
with:
|
||||
name: geckodriver-log
|
||||
|
10
.github/workflows/post_check_icon_pr_comment.yml
vendored
@@ -2,19 +2,19 @@ name: Post the result of the check_icon_pr workflow into its PR.
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: ['Check Icon PR']
|
||||
types:
|
||||
types:
|
||||
- completed
|
||||
jobs:
|
||||
jobs:
|
||||
post_result_of_svg_check:
|
||||
name: Post the result of the Check SVG Action
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check if the trigger run worked. If it failed, fail the current run.
|
||||
if: github.event.workflow_run.conclusion != 'success'
|
||||
if: github.event.workflow_run.conclusion != 'success'
|
||||
uses: cutenode/action-always-fail@v1.0.1
|
||||
|
||||
- name: Download workflow artifact
|
||||
uses: dawidd6/action-download-artifact@v2.27.0
|
||||
uses: dawidd6/action-download-artifact@v7
|
||||
if: success()
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
@@ -62,7 +62,7 @@ jobs:
|
||||
|
||||
- name: Comment on the PR about the result - Failure
|
||||
uses: jungwinter/comment@v1.1.0 # let us comment on a specific PR
|
||||
if: failure()
|
||||
if: failure()
|
||||
env:
|
||||
MESSAGE: |
|
||||
Hi!
|
||||
|
28
.github/workflows/post_peek_screenshot.yml
vendored
@@ -2,14 +2,14 @@ name: Post the screenshots into a comment from Peek Icons workflow
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: ['Peek Icons']
|
||||
types:
|
||||
types:
|
||||
- completed
|
||||
jobs:
|
||||
jobs:
|
||||
post_screenshots_in_comment:
|
||||
name: Post the screenshot
|
||||
runs-on: ubuntu-latest
|
||||
if: github.event.action == 'completed' && github.event.workflow_run.conclusion != 'skipped'
|
||||
env:
|
||||
env:
|
||||
# three possible values: 'skipped', 'success', 'failure'
|
||||
# have to print github.event to console to see these values
|
||||
# note: can't use this env variable up in the if statement above for some reason.
|
||||
@@ -20,7 +20,7 @@ jobs:
|
||||
run: echo $PEEK_STATUS
|
||||
|
||||
- name: Download workflow artifact
|
||||
uses: dawidd6/action-download-artifact@v2.27.0
|
||||
uses: dawidd6/action-download-artifact@v7
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
workflow: peek_icons.yml
|
||||
@@ -48,7 +48,7 @@ jobs:
|
||||
path: ./screenshots/new_svgs.png
|
||||
client_id: ${{secrets.IMGUR_CLIENT_ID}}
|
||||
|
||||
- name: Upload zoomed in screenshot of the SVGs gotten from the artifacts
|
||||
- name: Upload zoomed in screenshot of the SVGs gotten from the artifacts
|
||||
id: svgs_detailed_img_step
|
||||
uses: devicons/public-upload-to-imgur@v2.2.2
|
||||
if: env.PEEK_STATUS == 'success' && success()
|
||||
@@ -106,8 +106,8 @@ jobs:
|
||||
{5}
|
||||
|
||||
The maintainers will now check for:
|
||||
1. The number of Glyphs matches the number of SVGs that were selected.
|
||||
2. The icons (second group of pictures) look the same as the SVGs (first group of pictures).
|
||||
1. The number of Glyphs matches the number of SVGs that were selected.
|
||||
2. The icons (second group of pictures) look the same as the SVGs (first group of pictures).
|
||||
3. The icons are of high quality (legible, matches the official logo, etc.)
|
||||
4. A new object is added in the `devicon.json` file at the correct alphabetic position as seen [here](https://github.com/devicons/devicon/wiki/Updating-%60devicon.json%60)
|
||||
|
||||
@@ -117,23 +117,23 @@ jobs:
|
||||
|
||||
Note: If the images don't show up, it has been autodeleted by Imgur after 6 months due to our API choice.
|
||||
|
||||
Cheers,
|
||||
Cheers,
|
||||
Peek Bot :blush:
|
||||
with:
|
||||
type: create
|
||||
issue_number: ${{ steps.pr_num_reader.outputs.content }}
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
body: >
|
||||
${{
|
||||
${{
|
||||
format(
|
||||
env.MESSAGE,
|
||||
env.MESSAGE,
|
||||
fromJSON(steps.svgs_overview_img_step.outputs.markdown_urls)[0],
|
||||
join(fromJSON(steps.svgs_detailed_img_step.outputs.markdown_urls), ' '),
|
||||
fromJSON(steps.icons_overview_img_step.outputs.markdown_urls)[0],
|
||||
join(fromJSON(steps.icons_detailed_img_step.outputs.markdown_urls), ' '),
|
||||
join(fromJSON(steps.colored_icons_detailed_img_step.outputs.markdown_urls), ' '),
|
||||
steps.err_message_reader.outputs.content
|
||||
)
|
||||
)
|
||||
}}
|
||||
|
||||
- name: Comment on the PR about the result - Failure
|
||||
@@ -155,9 +155,9 @@ jobs:
|
||||
- Your icon information has been added to the `devicon.json` as seen [here](https://github.com/devicons/devicon/wiki/Updating-%60devicon.json%60)
|
||||
- Your PR title follows the format seen [here](https://github.com/devicons/devicon/wiki/Overview-on-Submitting-Icons)
|
||||
|
||||
I will retry once everything is fixed. If I still fail or there are other error, the maintainers will investigate.
|
||||
I will retry once everything is fixed. If I still fail or there are other error, the maintainers will investigate.
|
||||
|
||||
Best of luck,
|
||||
Best of luck,
|
||||
Peek Bot :relaxed:
|
||||
with:
|
||||
type: create
|
||||
@@ -174,7 +174,7 @@ jobs:
|
||||
I'm Devicons' Peek Bot and we've ran into a problem with the `post_peek_screenshot` workflow.
|
||||
The maintainers will take a look and fix the issue. Please wait for further instructions.
|
||||
|
||||
Thank you,
|
||||
Thank you,
|
||||
Peek Bot :relaxed:
|
||||
with:
|
||||
type: create
|
||||
|
@@ -8,15 +8,6 @@ tasks:
|
||||
- name: Build CSS & run web server
|
||||
init: npm run build-css && npm run dev
|
||||
|
||||
github:
|
||||
prebuilds:
|
||||
addBadge: true
|
||||
addComment: false
|
||||
addCheck: true
|
||||
master: true
|
||||
branches: true
|
||||
pullRequestsFromForks: true
|
||||
|
||||
ports:
|
||||
- port: 8000
|
||||
onOpen: open-preview
|
||||
|
791
devicon.json
1
icons/apex/apex-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#0d9dda" d="m110.4 63.58-8.504-13.3h7.366l5.043 8.257 4.994-8.257h7.366l-8.504 13.3L128 77.72h-7.811l-5.884-9.394-5.834 9.394h-7.811zm-18.096-1.928q-.296-1.632-.988-2.818t-1.681-1.929q-.99-.79-2.225-1.137-1.187-.395-2.522-.395-.988 0-2.175.296-1.137.248-2.225.94t-2.027 1.928q-.89 1.186-1.335 3.115zm-14.98 5.29q.099.692.643 1.68.544.94 1.483 1.83t2.274 1.533q1.385.593 3.164.593 4.4 0 6.329-3.51h6.921q-.593 1.878-1.829 3.609-1.236 1.68-2.966 3.016t-3.906 2.125q-2.126.792-4.549.792-3.114 0-5.784-1.138t-4.598-3.114-3.016-4.598q-1.088-2.67-1.088-5.686 0-2.917 1.039-5.587t2.917-4.696q1.878-2.027 4.548-3.214 2.67-1.236 5.933-1.236 3.362 0 5.982 1.285 2.67 1.236 4.45 3.264 1.83 2.027 2.768 4.597.99 2.571.99 5.142 0 .989-.15 1.83-.098.79-.246 1.483zm-32.58-2.967q0 2.275.79 3.906.84 1.632 2.027 2.67 1.236 1.038 2.62 1.532t2.571.495q1.335 0 2.72-.544 1.433-.544 2.57-1.632 1.187-1.087 1.929-2.67.79-1.63.79-3.757 0-1.878-.691-3.46-.643-1.583-1.78-2.72-1.088-1.137-2.522-1.78-1.384-.642-2.917-.642-1.532 0-3.016.593-1.433.593-2.57 1.73-1.138 1.088-1.83 2.72-.692 1.582-.692 3.56zm-6.18-13.695h6.03v3.214h.1q1.236-1.533 2.57-2.373 1.385-.89 2.62-1.236 1.237-.396 2.226-.445.988-.099 1.483-.099 3.362 0 5.933 1.335 2.57 1.285 4.301 3.411 1.73 2.077 2.62 4.697.89 2.571.89 5.092 0 3.066-1.087 5.735-1.039 2.67-2.917 4.697-1.83 1.978-4.351 3.164-2.472 1.138-5.39 1.138-1.73 0-3.064-.347-1.286-.296-2.275-.79t-1.73-1.138-1.384-1.236v11.767h-6.576zM13.644 61.9h8.405l-4.153-11.223h-.099zm1.582-20.765h5.29L35.845 77.72h-7.466l-3.905-9.443H11.37L7.465 77.72H0z"/></svg>
|
After Width: | Height: | Size: 1.6 KiB |
1
icons/bazel/bazel-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#76d275" d="M11.195 41.61 22.39 52.805 11.195 64 0 52.805Z"/><path fill="#43a047" d="M0 52.805V64l11.195 11.195V64Z"/><path fill="#76d275" d="M33.585 41.61 44.78 52.805 33.585 64 22.39 52.805Z"/><path fill="#43a047" d="M44.78 52.805V64L33.585 75.195V64Zm-22.39 0L33.585 64 22.39 75.195 11.195 64Z"/><path fill="#00701a" d="M22.39 75.195V86.39L11.195 75.195V64Z"/><path fill="#004300" d="M22.39 75.195 33.585 64v11.195L22.39 86.39z"/><path fill="#5f5c5c" d="M54.17 51.598v24.29h9.273c1.988 0 3.682-.626 5.155-1.95 1.435-1.325 2.17-2.982 2.17-4.97 0-1.324-.368-2.465-1.141-3.458s-1.729-1.695-2.943-2.1v-.146c.993-.442 1.803-1.103 2.392-1.987.589-.883.883-1.915.883-3.056q0-2.87-2.098-4.746c-1.398-1.252-3.017-1.877-4.931-1.877zm70.701 0v24.29H128v-24.29zm-67.61 2.98h5.815c1.141 0 2.024.368 2.723 1.14.7.774 1.031 1.62 1.031 2.54 0 .957-.367 1.803-1.066 2.576s-1.657 1.178-2.834 1.178h-5.668zM80.265 58.7c-1.877 0-3.35.443-4.49 1.29-1.142.846-1.914 1.765-2.282 2.759l2.834 1.215c.258-.736.774-1.324 1.51-1.766s1.545-.664 2.465-.664q1.821.001 3.092 1.106c.846.736 1.252 1.728 1.252 2.943v.479c-1.178-.7-2.688-1.03-4.528-1.03q-3.09 0-5.19 1.545c-1.398 1.03-2.097 2.466-2.097 4.27 0 1.693.588 3.018 1.766 4.049 1.177.993 2.651 1.507 4.418 1.507 2.392 0 4.194-.957 5.52-2.834h.148v2.32h2.98V65.84c0-2.282-.699-4.012-2.098-5.264q-2.098-1.877-5.3-1.877zm33.64 0c-2.392 0-4.342.884-5.851 2.614-1.51 1.766-2.283 3.828-2.283 6.257 0 2.54.772 4.674 2.355 6.33 1.546 1.657 3.607 2.502 6.11 2.502 1.803 0 3.35-.44 4.564-1.287 1.251-.883 2.135-1.95 2.687-3.238l-2.799-1.143c-.772 1.877-2.28 2.834-4.525 2.834-1.362 0-2.577-.513-3.607-1.47-1.03-.994-1.62-2.319-1.694-3.975H122l.037-.59c0-2.687-.735-4.822-2.207-6.441-1.472-1.583-3.46-2.393-5.926-2.393zm-23.004.553v2.834h9.202l-9.46 11.078v2.688h13.434v-2.834h-9.605l9.459-11.041v-2.725zm22.967 2.281c1.583 0 2.76.443 3.57 1.29.764.872 1.202 1.743 1.284 2.687h-9.602c.295-1.215.884-2.172 1.73-2.908.847-.7 1.877-1.069 3.018-1.069m-56.642 3.35h6.146c1.251 0 2.245.442 3.018 1.252s1.14 1.729 1.14 2.722q0 1.492-1.103 2.762c-.736.847-1.694 1.25-2.908 1.25h-6.293zm23.408 2.762c1.766 0 3.091.33 3.974 1.066 0 1.325-.514 2.467-1.582 3.424-1.03.957-2.21 1.433-3.498 1.433a4.55 4.55 0 0 1-2.392-.662c-.7-.478-1.067-1.14-1.067-1.949 0-.883.368-1.658 1.141-2.32q1.16-.993 3.424-.992"/></svg>
|
After Width: | Height: | Size: 2.3 KiB |
1
icons/bazel/bazel-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#76d275" d="m32 0 32 32-32 32L0 32Z"/><path fill="#43a047" d="M0 32v32l32 32V64Z"/><path fill="#76d275" d="m96 0 32 32-32 32-32-32Z"/><path fill="#43a047" d="M128 32v32L96 96V64Zm-64 0 32 32-32 32-32-32Z"/><path fill="#00701a" d="M64 96v32L32 96V64Z"/><path fill="#004300" d="m64 96 32-32v32l-32 32Z"/></svg>
|
After Width: | Height: | Size: 383 B |
1
icons/bazel/bazel-plain-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#76d275" d="M11.058 41.871.063 52.867l10.995 10.995 10.995-10.995Zm22.417 0L22.478 52.867l10.997 10.995.148-.148L44.47 52.867Zm20.608 9.787v24.32h9.284c1.99 0 3.687-.627 5.16-1.954 1.438-1.326 2.173-2.984 2.173-4.974 0-1.327-.368-2.468-1.142-3.463-.774-.995-1.73-1.697-2.947-2.102v-.147c.995-.442 1.806-1.104 2.396-1.989.59-.884.884-1.918.884-3.06 0-1.916-.7-3.499-2.1-4.752-1.4-1.252-3.022-1.879-4.938-1.879zm70.784 0v24.32H128v-24.32Zm-102.6 1.422L11.27 64.075l10.995 10.996 10.996-10.996Zm22.266.149L33.686 64.075l-.063.063v10.784l10.91-10.91ZM0 53.23v10.782l10.907 10.909V64.138Zm57.179 1.411h5.82c1.143 0 2.027.368 2.727 1.142.7.774 1.032 1.621 1.032 2.542 0 .958-.367 1.806-1.068 2.58-.7.773-1.658 1.179-2.837 1.179H57.18Zm23.029 4.126c-1.88 0-3.354.443-4.496 1.29-1.142.848-1.915 1.769-2.284 2.764l2.837 1.216c.258-.737.775-1.325 1.512-1.768.737-.442 1.546-.664 2.468-.664 1.216 0 2.248.37 3.095 1.106.848.737 1.254 1.731 1.254 2.947v.48c-1.18-.7-2.69-1.031-4.533-1.031-2.064 0-3.795.515-5.196 1.546-1.4 1.032-2.1 2.47-2.1 4.275 0 1.695.589 3.022 1.768 4.054 1.179.995 2.654 1.51 4.423 1.51 2.395 0 4.2-.959 5.526-2.838h.149v2.323h2.984v-10.06c0-2.285-.7-4.018-2.1-5.27-1.4-1.253-3.17-1.88-5.307-1.88zm33.68 0c-2.395 0-4.348.885-5.859 2.617-1.51 1.768-2.286 3.833-2.286 6.265 0 2.542.774 4.68 2.359 6.337 1.547 1.658 3.61 2.505 6.116 2.505 1.806 0 3.354-.44 4.57-1.288 1.253-.885 2.138-1.953 2.69-3.243l-2.801-1.143c-.774 1.879-2.283 2.837-4.531 2.837-1.364 0-2.58-.515-3.612-1.473-1.032-.994-1.622-2.32-1.695-3.979h13.154l.037-.59c0-2.69-.736-4.828-2.21-6.45-1.473-1.584-3.463-2.395-5.932-2.395zm-23.031.554v2.837h9.212l-9.47 11.091v2.69h13.449v-2.837h-9.617l9.47-11.054v-2.727zm22.994 2.284c1.584 0 2.763.443 3.574 1.29.764.874 1.203 1.746 1.285 2.69h-9.613c.295-1.215.885-2.174 1.732-2.91.848-.7 1.88-1.07 3.022-1.07zm-80.527 2.831-10.909 10.91v10.782l10.91-10.908Zm-22.116.002V75.22l10.908 10.91V75.346l-5.417-5.416zm45.933.52h6.154c1.253 0 2.247.443 3.021 1.254.774.81 1.142 1.73 1.142 2.725 0 .995-.368 1.918-1.105 2.765-.737.848-1.695 1.252-2.911 1.252H57.14Zm23.436 2.765c1.769 0 3.095.33 3.98 1.068 0 1.326-.516 2.47-1.585 3.428-1.031.958-2.212 1.435-3.502 1.435a4.56 4.56 0 0 1-2.395-.663c-.7-.479-1.068-1.14-1.068-1.951 0-.885.368-1.66 1.142-2.324.774-.663 1.917-.993 3.428-.993z"/></svg>
|
After Width: | Height: | Size: 2.3 KiB |
1
icons/bazel/bazel-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#76d275" d="M31.748.46.208 32l31.036 31.035.504.504L63.288 32Zm64.504 0L64.712 32l31.54 31.54.504-.505L127.79 32ZM64 32.714 32.46 64.252 64 95.792l31.54-31.54Zm-64 .504v30.826l31.244 31.244V64.461Zm128 0L96.965 64.252l-.21.209v30.826L128 64.043ZM32.252 65.469v30.826l31.244 31.244V96.713Zm63.496 0L64.504 96.713v30.826l31.244-31.244Z"/></svg>
|
After Width: | Height: | Size: 417 B |
1
icons/clickhouse/clickhouse-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M0 0h128v128H0z" fill="#f9ff69"/><path d="M26.54 23.21a.945.945 0 0 0-.938.938v79.618c0 .511.425.937.937.937h7.168a.945.945 0 0 0 .938-.937V24.148a.945.945 0 0 0-.938-.937Zm18.089 0a.945.945 0 0 0-.938.938v79.618c0 .511.426.937.938.937h7.168a.949.949 0 0 0 .941-.937V24.148a.949.949 0 0 0-.941-.937Zm18.09 0a.945.945 0 0 0-.938.938v79.618c0 .511.426.937.938.937h7.168a.949.949 0 0 0 .941-.937V24.148a.949.949 0 0 0-.941-.937Zm18.18 0a.946.946 0 0 0-.942.938v79.618c0 .511.426.937.941.937h7.165a.949.949 0 0 0 .94-.937V24.148a.949.949 0 0 0-.94-.937Zm18.09 31.743a.952.952 0 0 0-.942.942v16.21c0 .512.43.942.941.942h7.168c.512 0 .938-.43.938-.942v-16.21a.949.949 0 0 0-.938-.942Zm0 0"/></svg>
|
After Width: | Height: | Size: 763 B |
1
icons/clickhouse/clickhouse-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M26.54 23.21a.945.945 0 0 0-.938.938v79.618c0 .511.425.937.937.937h7.168a.945.945 0 0 0 .938-.937V24.148a.945.945 0 0 0-.938-.937Zm18.089 0a.945.945 0 0 0-.938.938v79.618c0 .511.426.937.938.937h7.168a.949.949 0 0 0 .941-.937V24.148a.949.949 0 0 0-.941-.937Zm18.09 0a.945.945 0 0 0-.938.938v79.618c0 .511.426.937.938.937h7.168a.949.949 0 0 0 .941-.937V24.148a.949.949 0 0 0-.941-.937Zm18.18 0a.946.946 0 0 0-.942.938v79.618c0 .511.426.937.941.937h7.165a.949.949 0 0 0 .94-.937V24.148a.949.949 0 0 0-.94-.937Zm18.09 31.743a.952.952 0 0 0-.942.942v16.21c0 .512.43.942.941.942h7.168c.512 0 .938-.43.938-.942v-16.21a.949.949 0 0 0-.938-.942Zm0 0"/></svg>
|
After Width: | Height: | Size: 721 B |
1
icons/cobol/cobol-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M111.477 78.168V49.832h5.359v23.586H128v4.75zm-17.78.487q-2.802 0-5.075-.933-2.274-.934-3.898-2.802-1.583-1.867-2.476-4.587-.893-2.72-.893-6.333 0-3.572.893-6.292.893-2.761 2.476-4.628 1.624-1.868 3.898-2.802 2.273-.933 5.074-.933 2.801 0 5.075.933 2.273.934 3.897 2.802 1.624 1.867 2.476 4.628.893 2.72.893 6.292 0 3.613-.893 6.333-.852 2.72-2.476 4.587-1.624 1.868-3.897 2.802-2.274.933-5.075.933zm0-4.75q3.044 0 4.83-2.03 1.827-2.03 1.827-5.683v-4.384q0-3.654-1.827-5.684-1.786-2.03-4.83-2.03-3.046 0-4.872 2.03-1.787 2.03-1.787 5.684v4.384q0 3.654 1.787 5.684 1.826 2.03 4.871 2.03zm-38.04-24.073H68.77q1.746 0 3.126.528 1.42.527 2.395 1.461.974.934 1.462 2.314.527 1.34.527 2.964 0 1.623-.446 2.76-.406 1.096-1.137 1.827-.69.73-1.624 1.096-.893.365-1.867.406v.244q.934 0 1.989.365 1.096.365 1.99 1.177.933.772 1.542 2.03.609 1.218.609 3.045 0 1.705-.569 3.207-.527 1.461-1.502 2.558-.974 1.096-2.314 1.745-1.34.61-2.922.61H55.657zm5.36 23.79h7.469q1.543 0 2.395-.772.853-.812.853-2.314v-1.38q0-1.502-.853-2.314-.852-.812-2.395-.812h-7.47zm0-11.977h6.616q1.462 0 2.274-.77.812-.813.812-2.234v-1.258q0-1.421-.812-2.192-.812-.812-2.274-.812h-6.617zm-23.14 17.01q-2.802 0-5.075-.933-2.274-.934-3.897-2.802-1.584-1.867-2.477-4.587-.893-2.72-.893-6.333 0-3.572.893-6.292.893-2.761 2.477-4.628 1.623-1.868 3.897-2.802 2.273-.933 5.074-.933t5.075.933q2.273.934 3.897 2.802 1.624 1.867 2.476 4.628.894 2.72.894 6.292 0 3.613-.894 6.333-.852 2.72-2.476 4.587-1.624 1.868-3.897 2.802-2.274.933-5.075.933zm0-4.75q3.044 0 4.83-2.03 1.827-2.03 1.827-5.683v-4.384q0-3.654-1.827-5.684-1.786-2.03-4.83-2.03t-4.872 2.03q-1.787 2.03-1.787 5.684v4.384q0 3.654 1.787 5.684 1.827 2.03 4.871 2.03zm-25.658 4.75q-2.8 0-5.074-.893-2.233-.934-3.857-2.76-1.583-1.827-2.435-4.507Q0 67.775 0 64.203t.853-6.333q.852-2.801 2.435-4.669 1.624-1.908 3.857-2.882 2.273-.974 5.074-.974 3.817 0 6.333 1.624 2.517 1.623 4.02 4.912l-4.588 2.436q-.609-1.908-1.99-3.045-1.38-1.177-3.775-1.177-3.004 0-4.79 2.03-1.746 2.03-1.746 5.683v4.465q0 3.695 1.746 5.684 1.786 1.948 4.79 1.948 2.396 0 3.898-1.299 1.542-1.299 2.232-3.207l4.344 2.558q-1.542 3.166-4.1 4.953-2.557 1.745-6.374 1.745z" style="white-space:pre"/></svg>
|
After Width: | Height: | Size: 2.2 KiB |
1
icons/datadog/datadog-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#632ca6" d="M99.9 0 16.58 9.663 26.847 92.96l9.754-1.416c-.78-1.112-1.992-2.458-4.062-4.18-2.872-2.385-1.858-6.44-.162-9 2.242-4.324 13.792-9.82 13.138-16.732-.235-2.514-.634-5.784-2.968-8.027-.088.93.07 1.825.07 1.825s-.958-1.222-1.435-2.888c-.474-.64-.847-.843-1.35-1.697-.36.987-.313 2.132-.313 2.132s-.783-1.85-.91-3.414c-.464.7-.58 2.027-.58 2.027s-1.018-2.918-.786-4.49c-.464-1.369-1.842-4.084-1.453-10.254 2.542 1.781 8.14 1.359 10.321-1.856.724-1.065 1.221-3.97-.361-9.699-1.016-3.672-3.531-9.14-4.512-11.216l-.117.085c.517 1.672 1.582 5.174 1.992 6.875 1.238 5.152 1.57 6.947.989 9.323-.494 2.066-1.68 3.416-4.685 4.927-3.005 1.515-6.994-2.173-7.245-2.376-2.92-2.327-5.179-6.12-5.43-7.965-.262-2.018 1.163-3.229 1.881-4.879-1.028.293-2.174.816-2.174.816s1.368-1.416 3.054-2.64c.7-.462 1.11-.756 1.845-1.367-1.065-.018-1.931.012-1.931.012s1.778-.96 3.62-1.659c-1.348-.06-2.64-.01-2.64-.01s3.967-1.774 7.098-3.075c2.154-.883 4.258-.622 5.44 1.088 1.552 2.24 3.183 3.456 6.637 4.21 2.122-.941 2.765-1.422 5.43-2.15 2.346-2.581 4.188-2.914 4.188-2.914s-.914.838-1.159 2.155c1.33-1.048 2.788-1.923 2.788-1.923s-.565.696-1.092 1.803l.122.183c1.552-.932 3.376-1.664 3.376-1.664s-.522.659-1.133 1.511c1.171-.01 3.544.05 4.466.154 5.438.12 6.566-5.806 8.653-6.55 2.612-.933 3.78-1.498 8.233 2.876 3.82 3.757 6.805 10.477 5.322 11.983-1.244 1.25-3.694-.488-6.411-3.874-1.435-1.793-2.522-3.913-3.03-6.608-.43-2.273-2.1-3.592-2.1-3.592s.968 2.16.968 4.063c0 1.04.13 4.926 1.797 7.108-.165.319-.242 1.578-.424 1.82-1.94-2.344-6.104-4.021-6.784-4.516 2.3 1.884 7.582 6.21 9.61 10.359 1.92 3.921.79 7.517 1.76 8.446.278.266 4.13 5.066 4.87 7.477 1.293 4.202.076 8.62-1.615 11.358l-4.724.736c-.692-.192-1.157-.287-1.776-.646.342-.605 1.02-2.112 1.027-2.424l-.267-.467c-1.47 2.083-3.933 4.105-5.98 5.267-2.678 1.518-5.765 1.283-7.774.663-5.703-1.759-11.096-5.613-12.397-6.626 0 0-.04.808.205.99 1.437 1.623 4.731 4.555 7.917 6.602l-6.789.747 3.21 24.987c-1.423.203-1.645.304-3.202.525-1.373-4.85-3.998-8.016-6.869-9.86-2.531-1.628-6.022-1.994-9.363-1.332l-.214.25c2.323-.242 5.065.094 7.883 1.878 2.765 1.749 4.993 6.266 5.814 8.984 1.051 3.475 1.778 7.194-1.051 11.135-2.011 2.801-7.883 4.348-12.629 1 1.267 2.038 2.98 3.703 5.287 4.017 3.424.466 6.673-.13 8.91-2.426 1.909-1.963 2.923-6.068 2.656-10.391l3.022-.439 1.092 7.76 50.023-6.024-4.081-39.814-2.546.484zM77.92 27.458c-.597.056-1.118.258-1.38.58.095.014.18.033.247.055.79.274.256.546.114.872-.14.318-.36.528-.03 1.565l.019.059.052.134.138.311c.594 1.214 1.245 2.358 2.336 2.944q.423-.072.877-.095c1.024-.044 1.67.117 2.078.338.037-.205.045-.502.023-.942-.08-1.538.304-4.152-2.652-5.528-.557-.259-1.227-.348-1.823-.293zm-16.052 2.685c-1.334-.023-3.15.305-4.737 1.387-2.34 1.597-2.416 5.02-.174 6.962.224.192.41.328.58.44.655-.31 1.4-.62 2.26-.898 1.45-.47 2.656-.714 3.646-.843.474-.53 1.026-1.463.888-3.152-.189-2.293-1.923-1.93-.62-3.172.342-.324-.51-.7-1.843-.724m21.914 13.041a22 22 0 0 0-2.068.15c-2.426.285-5.045 1.125-5.618 1.573-1.043.807-.57 2.212.202 2.79 2.161 1.614 4.055 2.697 6.054 2.433 1.227-.162 2.31-2.106 3.077-3.869.525-1.214.525-2.525-.243-2.95-.194-.108-.744-.14-1.404-.127m21.023 10.41 2.63 31.837-44.177 7.961-3.82-31.881 6.295-.866c1.017.458 1.726.632 2.947.942 1.902.495 4.102.97 7.362-.671.758-.376 2.339-1.821 2.977-2.645zm-2.365 5.022-6.42 13.461-8.446-5.571-7.044 11.768-8.194-2.395-7.214 11.011.37 3.466 39.226-7.23zm19.936 50q-10.309-.001-10.31 9.424c0 6.634 3.379 9.957 10.136 9.957q3.486 0 5.798-1.018v-9.995h-5.73l-1.198 3.144h3.38v4.474q-1.232.32-2.196.319-6.509 0-6.507-6.88.001-6.352 6.894-6.352 2.88 0 5.355 1.07v-3.208q-2.474-.934-5.622-.936zm-22.194.003c-6.407 0-9.616 3.239-9.616 9.717.29 6.44 3.492 9.663 9.616 9.664q9.464-.002 9.464-9.664.001-9.717-9.463-9.717zM0 108.756v19.106h8.3c5.978 0 8.972-3.362 8.972-10.074 0-6.02-2.994-9.032-8.973-9.032zm25.474 0-8.127 19.106h3.643l6.304-15.46 3.135 7.178H26.45l-1.22 3.07h6.134l2.41 5.212h3.817l-8.304-19.106zm10.112 0-.002 3.072h5.493v16.034h3.547v-16.034h5.49v-3.072zm20.836 0-8.128 19.106h3.644l6.3-15.46 3.135 7.178h-3.978l-1.216 3.07h6.133l2.41 5.212h3.817l-8.302-19.106zm14.47 0v19.106h8.3c5.982 0 8.973-3.362 8.973-10.074q0-9.031-8.973-9.032zm29.29 2.931q5.783 0 5.783 6.567 0 6.666-5.782 6.665-5.93.001-5.932-6.665 0-6.566 5.931-6.567m-96.633.136h4.214q5.958 0 5.957 5.962.001 7.002-5.957 7.001H3.55Zm70.891 0h4.218q5.957 0 5.958 5.962c0 4.669-1.989 7.001-5.958 7.001H74.44Z"/></svg>
|
After Width: | Height: | Size: 4.4 KiB |
1
icons/datadog/datadog-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#632ca6" d="M104.375 90.884 93.726 83.86 84.843 98.7 74.51 95.677l-9.098 13.885.467 4.371 49.463-9.114-2.873-30.905zM58.247 77.56l7.936-1.092c1.284.577 2.178.797 3.718 1.189 2.397.625 5.173 1.224 9.284-.848.957-.474 2.95-2.296 3.755-3.335l32.515-5.898 3.317 40.144-55.704 10.04zm60.4-14.466-3.21.612L109.271 0 4.207 12.183 17.151 117.22l12.297-1.785c-.982-1.402-2.511-3.099-5.122-5.27-3.622-3.01-2.341-8.12-.205-11.348 2.826-5.453 17.39-12.383 16.565-21.099-.296-3.169-.8-7.295-3.741-10.121a9.8 9.8 0 0 0 .088 2.303s-1.208-1.541-1.81-3.643c-.598-.805-1.068-1.063-1.703-2.139-.453 1.245-.393 2.69-.393 2.69s-.988-2.336-1.148-4.306c-.586.882-.734 2.558-.734 2.558s-1.284-3.68-.991-5.662c-.586-1.725-2.323-5.148-1.831-12.929 3.206 2.247 10.265 1.713 13.015-2.34.913-1.343 1.538-5.008-.456-12.23-1.28-4.63-4.453-11.526-5.689-14.142l-.148.106c.652 2.108 1.996 6.526 2.511 8.668 1.56 6.498 1.98 8.76 1.247 11.755-.623 2.604-2.118 4.309-5.908 6.213-3.789 1.91-8.817-2.739-9.136-2.996-3.681-2.933-6.53-7.717-6.847-10.042-.33-2.544 1.466-4.072 2.372-6.152-1.296.37-2.742 1.028-2.742 1.028s1.725-1.785 3.852-3.329c.88-.583 1.398-.954 2.326-1.725-1.344-.022-2.435.016-2.435.016s2.241-1.21 4.564-2.092c-1.7-.075-3.326-.012-3.326-.012s5-2.236 8.95-3.878c2.715-1.113 5.369-.784 6.86 1.371 1.956 2.824 4.011 4.357 8.367 5.308 2.674-1.185 3.487-1.795 6.848-2.71 2.958-3.253 5.28-3.674 5.28-3.674s-1.152 1.057-1.46 2.717a39 39 0 0 1 3.516-2.424s-.711.879-1.375 2.275l.154.229c1.957-1.174 4.257-2.1 4.257-2.1s-.658.832-1.429 1.908c1.475-.012 4.468.063 5.63.195 6.856.15 8.28-7.324 10.91-8.26 3.295-1.177 4.767-1.889 10.382 3.626 4.817 4.734 8.581 13.208 6.713 15.106-1.567 1.576-4.658-.614-8.084-4.885-1.81-2.262-3.18-4.934-3.82-8.332-.542-2.867-2.648-4.53-2.648-4.53s1.223 2.717 1.223 5.118c0 1.31.164 6.212 2.266 8.962-.208.402-.305 1.99-.535 2.293-2.446-2.955-7.697-5.07-8.554-5.693 2.899 2.375 9.561 7.831 12.12 13.06 2.42 4.945.994 9.477 2.218 10.65.349.337 5.205 6.388 6.14 9.428 1.629 5.3.097 10.867-2.036 14.322l-5.957.928c-.872-.242-1.459-.363-2.24-.816.43-.762 1.286-2.664 1.295-3.055l-.336-.59c-1.854 2.625-4.96 5.176-7.54 6.64-3.377 1.914-7.27 1.62-9.803.835C61.744 71 54.944 66.14 53.304 64.864c0 0-.05 1.02.259 1.248 1.813 2.045 5.967 5.745 9.982 8.323l-8.56.942 4.047 31.508c-1.794.257-2.073.382-4.037.662-1.731-6.115-5.042-10.108-8.661-12.434-3.192-2.05-7.594-2.513-11.808-1.679l-.27.314c2.93-.305 6.388.12 9.942 2.37 3.487 2.204 6.297 7.9 7.332 11.329 1.324 4.382 2.24 9.07-1.325 14.039-2.537 3.532-9.942 5.484-15.924 1.261 1.598 2.57 3.758 4.672 6.665 5.068 4.317.586 8.415-.163 11.235-3.058 2.408-2.476 3.685-7.652 3.349-13.104l3.81-.553 1.375 9.785 63.078-7.595zM80.27 36.521c-.176.402-.453.665-.037 1.973l.025.075.066.169.173.392c.75 1.53 1.571 2.974 2.945 3.711q.534-.09 1.105-.12c1.29-.056 2.105.149 2.622.427.046-.258.057-.634.028-1.189-.1-1.939.384-5.236-3.342-6.972-1.407-.653-3.38-.451-4.038.364.12.015.227.04.311.068.994.349.32.691.142 1.102m10.444 18.09c-.488-.269-2.772-.163-4.378.029-3.058.36-6.36 1.421-7.084 1.986-1.315 1.017-.717 2.79.254 3.518 2.725 2.035 5.114 3.4 7.636 3.068 1.548-.203 2.913-2.654 3.88-4.879.663-1.532.663-3.185-.308-3.722m-27.076-15.69c.862-.818-4.297-1.895-8.3.835-2.952 2.013-3.046 6.33-.22 8.777.283.243.516.414.735.555a24 24 0 0 1 2.847-1.133c1.828-.594 3.349-.9 4.598-1.063.598-.668 1.293-1.845 1.12-3.975-.236-2.89-2.426-2.43-.78-3.995"/></svg>
|
After Width: | Height: | Size: 3.4 KiB |
1
icons/datatables/datatables-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#ffffff" d="M64 36.256c-11.825 0-22.382 7.529-26.232 18.709a4.3 4.3 0 0 0 .207 3.299l14.68 29.851a4.3 4.3 0 0 0 2.486 2.176A27.746 27.746 0 0 0 64 91.744c15.272 0 27.744-12.472 27.744-27.744S79.272 36.256 64 36.256zm0 8.6c10.624 0 19.145 8.52 19.145 19.144S74.624 83.145 64 83.145c-1.523 0-3.024-.244-4.5-.602L46.633 56.381C49.67 49.473 56.35 44.855 64 44.855zM64 0C28.705 0 0 28.705 0 64s28.705 64 64 64 64-28.705 64-64S99.295 0 64 0zm0 8.6c30.647 0 55.4 24.753 55.4 55.4S94.647 119.4 64 119.4 8.6 94.647 8.6 64 33.353 8.6 64 8.6z"/></svg>
|
After Width: | Height: | Size: 636 B |
1
icons/dovecot/dovecot-line.svg
Normal file
After Width: | Height: | Size: 7.1 KiB |
1
icons/dovecot/dovecot-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M82.1 74.224c-4.814 0-9.19 2.841-9.19 7.706 0 4.866 4.376 7.656 9.19 7.656 1.74 0 3.326-.332 4.732-1 1.41-.689 2.537-1.74 3.431-3.022.258-.355.157-.715-.074-.918-.23-.207-1.64-1.101-1.87-1.254-.514-.308-.97-.207-1.307.254-.332.46-1.997 2.408-4.912 2.408-2.614 0-5.224-1.435-5.224-4.147 0-2.739 2.61-4.15 5.224-4.15 1.767 0 3.556.563 4.632 1.946.257.332.82.308 1.202.078.383-.23 1.513-.973 1.744-1.152.41-.36.433-.715.18-1.025-1.795-2.328-4.765-3.38-7.758-3.38zm-55.375.028c-4.838 0-9.294 2.74-9.294 7.655 0 2.2.9 4.068 2.666 5.53 1.766 1.457 3.994 2.149 6.628 2.172 4.842 0 9.32-2.79 9.32-7.702 0-4.943-4.478-7.655-9.32-7.655zm75.187 0c-4.837 0-9.293 2.74-9.293 7.655 0 2.2.895 4.068 2.662 5.53 1.767 1.457 3.993 2.149 6.631 2.172 4.838 0 9.32-2.79 9.32-7.702 0-4.943-4.482-7.655-9.32-7.655zm-64.586.304c-.82 0-1.129.669-.899 1.079 1.13 2.099 4.123 7.473 7.222 13.08.101.18.46.46.816.46h1.36a.956.956 0 0 0 .817-.46c2.841-5.48 6.683-12.415 7.043-13.03.202-.36-.028-1.1-.744-1.1h-2.56c-.308 0-.64.05-.82.46l-4.427 8.19-4.506-8.217c-.18-.333-.386-.46-.82-.46zm19.507.028c-.46 0-.87.383-.87.82v12.9c0 .438.41.82.87.82h13.49c.46 0 .871-.382.871-.82v-1.61c0-.437-.41-.82-.871-.82H59.854v-2.69h6.166c.461 0 .872-.382.872-.816v-1.613c0-.439-.41-.82-.87-.82h-6.168v-2.05h9.856c.46 0 .867-.382.867-.82v-1.66c0-.438-.406-.82-.867-.82zm-49.42.023H.87c-.46 0-.871.388-.871.82v12.955c0 .434.41.817.871.817h6.093c4.735 0 8.37-2.583 8.37-7.269 0-2.149-.766-3.942-2.33-5.326-1.465-1.293-3.355-1.96-5.591-1.997zm105.969 0c-.462 0-.872.388-.872.82v1.791c0 .438.41.82.87.82h4.94v10.316c0 .439.41.82.872.82h2.15c.46 0 .87-.381.87-.82V78.04h4.917c.46 0 .871-.383.871-.82v-1.791c0-.433-.41-.82-.871-.82zm-86.657 3.127c2.665 0 5.353 1.356 5.353 4.146 0 1.204-.46 2.176-1.434 2.942-.973.793-2.255 1.204-3.92 1.204-2.66 0-5.321-1.329-5.321-4.146 0-2.818 2.66-4.146 5.322-4.146zm75.187 0c2.661 0 5.35 1.356 5.35 4.146 0 1.204-.46 2.176-1.43 2.942-.974.793-2.255 1.204-3.92 1.204-2.66 0-5.322-1.329-5.322-4.146 0-2.818 2.661-4.146 5.322-4.146zm-98.02.383h3.099c2.48 0 4.376 1.355 4.376 3.786 0 2.536-1.793 3.763-4.376 3.763H3.892Zm0 0"/><path fill="#54bbab" d="M47.361 38.391c-.82 0-1.64.262-2.328.79L11.57 64.753a1.277 1.277 0 0 0 0 2.024l1.384 1.047a1.8 1.8 0 0 0 2.177 0l16.588-12.645c.922-.692 2.2-.692 3.099 0l10.979 8.396c.922.692 2.2.692 3.099 0L63.409 52.49c.95-.692.95-2.098 0-2.814L49.69 39.18a3.834 3.834 0 0 0-2.329-.789zm38.397 0c-.817 0-1.637.262-2.33.79L49.972 64.78a1.268 1.268 0 0 0 0 2.02l1.384 1.05a1.806 1.806 0 0 0 2.173 0l19.15-14.59a2.567 2.567 0 0 1 3.096 0l18.69 14.26c.895.692 2.176.692 3.095 0l11.93-9.14c.95-.715.95-2.126 0-2.842L88.091 39.181a3.837 3.837 0 0 0-2.333-.79zm0 0"/></svg>
|
After Width: | Height: | Size: 2.7 KiB |
1
icons/dovecot/dovecot-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#54bbab" d="M47.361 38.39c-.82 0-1.64.261-2.328.79L11.57 64.75a1.277 1.277 0 0 0 0 2.025l1.384 1.047a1.8 1.8 0 0 0 2.177 0l16.588-12.645c.922-.692 2.2-.692 3.099 0l10.979 8.396c.922.692 2.2.692 3.099 0l14.513-11.086c.95-.692.95-2.098 0-2.814L49.69 39.178a3.834 3.834 0 0 0-2.329-.789zm38.397 0c-.817 0-1.637.261-2.33.79L49.972 64.776a1.273 1.273 0 0 0 0 2.02l1.384 1.05a1.806 1.806 0 0 0 2.173 0l19.15-14.59a2.567 2.567 0 0 1 3.096 0l18.69 14.26c.895.692 2.176.692 3.095 0l11.93-9.14c.95-.715.95-2.126 0-2.842L88.091 39.18a3.837 3.837 0 0 0-2.333-.79zM82.1 74.221c-4.814 0-9.19 2.841-9.19 7.706 0 4.866 4.376 7.656 9.19 7.656 1.74 0 3.326-.332 4.737-1 1.406-.689 2.53-1.74 3.426-3.018.258-.36.157-.719-.074-.922-.23-.207-1.64-1.101-1.868-1.254-.512-.308-.973-.207-1.31.254-.331.46-1.996 2.408-4.91 2.408-2.615 0-5.225-1.435-5.225-4.147 0-2.739 2.61-4.15 5.224-4.15 1.767 0 3.556.563 4.632 1.946.257.332.82.308 1.202.078.383-.23 1.513-.973 1.744-1.152.41-.36.433-.715.18-1.025-1.795-2.328-4.765-3.38-7.758-3.38zm-55.375.028c-4.838 0-9.294 2.74-9.294 7.655 0 2.2.9 4.068 2.666 5.53 1.766 1.457 3.994 2.149 6.628 2.176 4.842 0 9.32-2.79 9.32-7.706 0-4.943-4.478-7.655-9.32-7.655zm75.187 0c-4.837 0-9.293 2.74-9.293 7.655 0 2.2.895 4.068 2.662 5.53 1.767 1.457 3.993 2.149 6.631 2.176 4.838 0 9.32-2.79 9.32-7.706 0-4.943-4.482-7.655-9.32-7.655zm-64.586.304c-.82 0-1.129.669-.899 1.079 1.13 2.099 4.123 7.476 7.222 13.08.101.18.46.46.816.46h1.36a.956.956 0 0 0 .817-.46c2.841-5.48 6.683-12.415 7.043-13.03.202-.36-.028-1.1-.744-1.1h-2.56c-.308 0-.64.05-.82.46l-4.427 8.19-4.506-8.217c-.18-.333-.386-.46-.82-.46zm19.507.028c-.46 0-.87.383-.87.82v12.9c0 .438.41.82.87.82h13.49c.46 0 .871-.382.871-.82v-1.61c0-.437-.41-.82-.871-.82H59.854v-2.69h6.166c.461 0 .872-.382.872-.816v-1.613c0-.435-.41-.82-.87-.82h-6.168v-2.05h9.856c.46 0 .87-.382.87-.82v-1.66c0-.438-.41-.82-.87-.82zm-49.42.023H.87c-.46 0-.871.388-.871.82V88.38c0 .434.41.817.871.817h6.093c4.735 0 8.37-2.583 8.37-7.269 0-2.149-.766-3.942-2.33-5.326-1.465-1.293-3.355-1.96-5.591-1.997zm105.969 0c-.462 0-.872.388-.872.82v1.794c0 .435.41.818.87.818h4.94v10.315c0 .439.41.82.872.82h2.15c.46 0 .87-.381.87-.82V78.037h4.917c.46 0 .871-.383.871-.818v-1.793c0-.433-.41-.82-.871-.82zm-86.657 3.127c2.665 0 5.353 1.356 5.353 4.146 0 1.204-.46 2.176-1.434 2.942-.973.793-2.255 1.204-3.92 1.204-2.66 0-5.321-1.329-5.321-4.146 0-2.818 2.66-4.146 5.322-4.146zm75.187 0c2.661 0 5.35 1.356 5.35 4.146 0 1.204-.457 2.176-1.43 2.942-.974.793-2.255 1.204-3.92 1.204-2.66 0-5.322-1.329-5.322-4.146 0-2.818 2.661-4.146 5.322-4.146zm-98.02.383h3.099c2.48 0 4.376 1.355 4.376 3.786 0 2.536-1.793 3.763-4.376 3.763H3.892Zm0 0"/></svg>
|
After Width: | Height: | Size: 2.7 KiB |
1
icons/duckdb/duckdb-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#000000" d="M64 128C28.6 128 0 99.4 0 64S28.6 0 64 0s64 28.6 64 64-28.6 64-64 64Z"/><path fill="#fff100" d="M98.2 54.5H85.6v18.9h12.6c5.2 0 9.5-4.3 9.5-9.5s-4.3-9.4-9.5-9.4ZM24.2 64c0 14.6 11.9 26.5 26.5 26.5S77.2 78.6 77.2 64 65.3 37.5 50.7 37.5 24.2 49.4 24.2 64Z" class="st0"/></svg>
|
After Width: | Height: | Size: 360 B |
3
icons/duckdb/duckdb-plain.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
|
||||
<path fill="#000000" d="M64 0C28.6 0 0 28.6 0 64s28.6 64 64 64 64-28.6 64-64S99.4 0 64 0ZM50.7 90.5c-14.6 0-26.5-11.9-26.5-26.5s11.9-26.5 26.5-26.5S77.2 49.4 77.2 64 65.3 90.5 50.7 90.5Zm47.5-17.1H85.6V54.5h12.6c5.2 0 9.5 4.2 9.5 9.4s-4.3 9.5-9.5 9.5Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 326 B |
1
icons/dyalog/dyalog-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#f60" d="M94.92 53.4A10.603 10.6 0 0 0 84.316 64 10.603 10.6 0 0 0 94.92 74.6 10.603 10.6 0 0 0 105.523 64 10.603 10.6 0 0 0 94.92 53.4zm0 3.473A7.129 7.126 0 0 1 102.049 64a7.129 7.126 0 0 1-7.13 7.127A7.129 7.126 0 0 1 87.792 64a7.129 7.126 0 0 1 7.129-7.127zM61.027 74.6h3.452L52.464 53.45 40.449 74.6h3.452l8.564-15.063zm7.717-21.2v21.2h13.543v-3.37H72.113V53.4zm-45.082 0h-3.451l9.719 17.11v4.09h3.369v-4.094L43.018 53.4h-3.452l-7.95 13.987zM128 74.6v-5.778h-3.26v2.565h-5.133c-4.2 0-7.582-3.248-7.582-7.283v-.208c0-4.035 3.383-7.285 7.582-7.285H128v-3.21h-8.004c-6.205 0-11.2 4.413-11.2 9.898v1.4c0 5.485 4.995 9.9 11.2 9.9zM0 53.4v5.778h3.26v-2.565h5.133c4.2 0 7.582 3.248 7.582 7.283v.208c0 4.035-3.383 7.285-7.582 7.285H0v3.21h8.004c6.205 0 11.2-4.413 11.2-9.898v-1.4c0-5.485-4.995-9.9-11.2-9.9z"/></svg>
|
After Width: | Height: | Size: 909 B |
1
icons/dyalog/dyalog-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#f60" d="M6.026 0v34.883h19.682V19.4H56.7c25.359 0 45.78 19.613 45.78 43.976v1.25c0 24.363-20.421 43.987-45.78 43.987H6.026V128l48.327-.001c37.465-.001 67.62-26.65 67.62-59.765v-8.456C121.974 26.663 91.819 0 54.354 0z"/></svg>
|
After Width: | Height: | Size: 322 B |
1
icons/dynatrace/dynatrace-line-wordmark.svg
Normal file
After Width: | Height: | Size: 8.3 KiB |
1
icons/dynatrace/dynatrace-line.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M49.91.002c-1.71.036-5.142.512-8.378 3.608-4.528 4.345-27.566 26.204-36.817 35.001l-.001.002c-2.158 2.063-3.157 4.264-3.607 5.992-.225.864-.314 1.61-.347 2.166-.033.557-.01.988-.01.997v1.994h.006c-.002.014-.006-.01-.006.09l.01.003c.022 6.423.292 16.469.988 27.959l.002.002v.002c1.271 19.338 3.721 36.49 3.721 36.49l.136.951 33.062-31.383-.02-.236s-1.176-15.282.725-38.099q.206-2.428.45-4.837c.062-.622.133-1.238.201-1.859a270 270 0 0 1 6.669-.285h.002c22.908-.724 38.01 1.177 38.01 1.177l.232.029 33.065-31.391-.953-.18S100.172 5.02 80.928 2.75h-.002C68.308 1.207 57.236.389 50.971.026h-.029c-.013 0-.46-.035-1.031-.024zm.02.993c.505-.01.771.021.983.023 6.248.362 17.304 1.177 29.895 2.717h.002c18.346 2.163 33.676 5.006 35.089 5.27L84.587 38.732c-.346-.043-15.21-1.883-37.922-1.165-2.388.067-4.762.176-7.115.302l-.42.024-.047.418c-.082.76-.17 1.517-.248 2.29-.162 1.61-.313 3.233-.45 4.857-1.884 22.62-.758 37.658-.732 38.012L6.33 113.203c-.2-1.412-2.379-17.007-3.591-35.451l.002.004c-.696-11.483-.97-21.537-.99-27.934h-.003c.001-.01.002-.008.002-.023v-.064h-.007v-1.967c0-.173-.022-.435.007-.938.03-.504.112-1.184.318-1.975.412-1.582 1.317-3.598 3.33-5.523l.002-.002c9.25-8.797 32.276-30.645 36.817-35.004 3.021-2.89 6.152-3.299 7.713-3.331m72.285 11.74-.702.668-32.362 30.812.017.233s1.087 15.194-.724 38.013a250 250 0 0 1-.62 6.651c-2.192.13-4.396.25-6.611.328-22.907.724-38.099-1.177-38.099-1.177l-.234-.029-33.058 31.477.942.184s17.063 3.358 36.312 5.537a504 504 0 0 0 27.893 2.407l.004.044c.684 0 1.312.091 1.994.091.014 0 .461.035 1.035.024a12 12 0 0 0 2.23-.26c1.784-.378 4.073-1.28 6.32-3.34l.004-.003.004-.004c9.157-8.794 32.188-30.738 36.726-35.095 2.158-2.063 3.157-4.264 3.607-6.004.225-.87.314-1.626.347-2.195.033-.57.01-1 .01-1.047v-.008a619 619 0 0 0-1.182-29.949v-.002c-1.362-19.335-3.72-36.397-3.72-36.397zm-.731 2.066c.194 1.418 2.296 16.921 3.595 35.36a617 617 0 0 1 1.178 29.897c0 .18.022.47-.008.983-.03.516-.112 1.207-.318 2.003-.412 1.594-1.317 3.609-3.331 5.535-4.529 4.348-27.553 26.285-36.719 35.087-2.106 1.93-4.214 2.753-5.854 3.101a11 11 0 0 1-2.047.238c-.523.011-.8-.023-1.013-.023-.532 0-1.133-.07-1.807-.083l-.002-.043a503 503 0 0 1-27.97-2.409c-18.36-2.078-33.88-5.082-35.279-5.354l31.326-29.826c.35.043 15.3 1.883 38.01 1.165h.003c2.37-.083 4.724-.207 7.06-.349l.42-.027.045-.417c.247-2.346.475-4.714.659-7.1 1.795-22.621.757-37.571.732-37.919z"/></svg>
|
After Width: | Height: | Size: 2.4 KiB |
1
icons/dynatrace/dynatrace-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path d="M35.016 52.771v4.204H31.31c-2.246 0-3.61.674-4.46 1.492-1.299 1.267-1.298 3.079-1.298 3.271v4.524c0 .192 0 2.004 1.299 3.271.834.818 2.197 1.492 4.459 1.492h1.652c1.075 0 2.518-.24 3.271-1.427.401-.642.547-1.492.563-2.278V52.771zm42.183 0v14.534c.016.786.146 1.635.563 2.277.754 1.203 2.197 1.428 3.271 1.428h3.192v-1.588h-2.967c-.834 0-1.411-.16-1.764-.514-.353-.337-.53-.899-.53-1.701v-8.629h3.706V56.99h-3.705v-4.219zm-39.008 4.204 5.39 14.035-1.62 4.219h1.844l7.01-18.254H48.97l-4.477 11.644-4.474-11.644H38.19zm18.846 0c-2.117.032-3.416.69-4.234 1.492-1.283 1.267-1.283 3.079-1.283 3.271v9.287h1.765V61.69c0-.657.208-1.506.865-2.148.546-.53 1.59-.947 2.985-.963 1.395.016 2.437.434 2.982.963.642.642.867 1.49.867 2.148v9.336h1.764v-9.287c0-.192 0-2.004-1.283-3.271-.818-.802-2.117-1.46-4.235-1.492zm8.647 0v1.587h4.105c1.46 0 2.375.418 2.92.963.658.642.883 1.491.883 2.149v1.363H67.96c-1.075 0-2.518.24-3.272 1.428-.4.641-.546 1.491-.562 2.277v.563c.016.786.145 1.635.562 2.277.754 1.203 2.197 1.428 3.272 1.428h3.576c1.075 0 2.52-.241 3.274-1.428.4-.642.544-1.491.56-2.277v-5.567c0-.192 0-2.004-1.299-3.271-.834-.818-2.197-1.492-4.459-1.492h-3.93zm29.191 0v1.587h4.105c1.46 0 2.375.418 2.92.963.658.642.883 1.491.883 2.149v1.363h-5.63c-1.075 0-2.518.24-3.272 1.428-.401.641-.545 1.491-.56 2.277v.563c.015.786.143 1.635.56 2.277.754 1.203 2.197 1.428 3.271 1.428h3.578c1.075 0 2.518-.241 3.272-1.428.4-.642.544-1.491.56-2.277v-5.567c0-.192 0-2.004-1.298-3.271-.834-.818-2.198-1.492-4.46-1.492zm27.412 0c-2.117.032-3.416.69-4.234 1.492-1.283 1.267-1.283 3.079-1.283 3.271v4.524c0 .192 0 2.004 1.283 3.271.818.802 2.117 1.46 4.234 1.492h4.17v-1.603h-4.074c-1.396-.016-2.437-.434-2.983-.963-.641-.642-.867-1.49-.867-2.148v-1.653h9.463v-2.92c.016-.192.016-2.004-1.283-3.271-.818-.802-2.117-1.46-4.234-1.492zm-32.816.015c-1.075 0-2.52.225-3.274 1.428-.417.642-.544 1.491-.56 2.277v10.33H87.4v-10.2c0-.803.177-1.396.53-1.733.353-.353.931-.514 1.765-.514h2.967V56.99zm22.246 0c-2.246 0-3.61.674-4.46 1.492-1.298 1.268-1.298 3.08-1.298 3.272v4.523c0 .193 0 2.005 1.299 3.272.834.818 2.197 1.492 4.459 1.492h4.074v-1.588h-4.25c-1.46 0-2.375-.417-2.92-.963-.658-.641-.883-1.49-.883-2.148v-4.653c0-.657.225-1.522.883-2.148.561-.545 1.46-.963 2.92-.963h4.25V56.99zm-80.6 1.588H35v8.647c.016.786-.16 1.346-.514 1.699-.353.337-.93.513-1.763.513h-1.606c-1.46 0-2.372-.417-2.918-.962-.657-.642-.883-1.491-.883-2.149V61.69c0-.657.226-1.506.883-2.148.562-.545 1.459-.963 2.918-.963zm91.281 0c1.396.016 2.44.434 2.985.963.641.642.865 1.49.865 2.148v1.381h-7.7v-1.38c0-.658.21-1.507.868-2.149.545-.53 1.587-.947 2.982-.963m-54.181 6.047h5.39v2.6c0 .786-.176 1.346-.529 1.699-.353.337-.931.513-1.766.513h-3.11c-.835 0-1.412-.16-1.764-.513s-.514-.913-.514-1.7v-.384c0-.802.176-1.364.53-1.701.352-.337.929-.514 1.763-.514m29.193 0h5.389v2.6c0 .786-.177 1.346-.53 1.699-.352.337-.93.513-1.763.513h-3.113c-.834 0-1.411-.16-1.764-.513s-.514-.913-.514-1.7v-.384c0-.802.177-1.364.53-1.701.352-.337.931-.514 1.765-.514"/><path fill="#1496ff" d="M7.492 54.649a62 62 0 0 0-.834 6.079C6.32 64.77 6.53 67.48 6.53 67.48L.835 72.886s-.433-3.032-.657-6.448a91 91 0 0 1-.177-5.1c0-.065.032-.129.032-.193 0-.08.097-.834.835-1.54.802-.77 6.72-5.405 6.624-4.956"/><path fill="#1284ea" d="M7.492 54.649a62 62 0 0 0-.834 6.079s-6.304-.754-6.657.77c0-.08.113-1.01.85-1.716.802-.77 6.737-5.582 6.64-5.133Z"/><path fill="#b4dc00" d="M.001 61.129v.353c.065-.273.177-.465.401-.77.466-.594 1.22-.754 1.524-.786a60 60 0 0 1 6.111-.513c4.058-.129 6.737.208 6.737.208l5.694-5.405s-2.983-.562-6.384-.962a87 87 0 0 0-5.293-.482c-.08 0-.866-.096-1.604.61-.802.77-4.876 4.635-6.512 6.191-.738.706-.674 1.492-.674 1.556"/><path fill="#6f2da8" d="M20.26 68.042c-1.54.208-3.818.465-6.112.545-4.058.129-6.752-.208-6.752-.208L1.702 73.8s3.015.594 6.415.979c2.086.24 3.93.368 5.053.433.08 0 .208-.065.289-.065s.866-.144 1.604-.85c.802-.77 5.645-6.303 5.196-6.255z"/><path fill="#591f91" d="M20.26 68.042c-1.54.208-3.818.465-6.112.545 0 0 .433 6.336-1.09 6.609.08 0 1.122-.049 1.86-.754.802-.77 5.79-6.448 5.341-6.4z"/><path fill="#73be28" d="M13.394 75.228c-.112 0-.224-.016-.352-.016.288-.048.48-.145.785-.37.61-.432.802-1.186.867-1.49.272-1.525.641-3.786.818-6.08.32-4.042.128-6.737.128-6.737l5.694-5.42s.417 3.015.658 6.43c.144 2.23.192 4.203.208 5.294 0 .08.064.866-.674 1.572-.802.77-4.876 4.651-6.496 6.207-.77.706-1.555.61-1.636.61"/></svg>
|
After Width: | Height: | Size: 4.4 KiB |
1
icons/dynatrace/dynatrace-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#1496ff" d="M43.437 10.718c-1.645 8.682-3.656 21.569-4.753 34.638-1.919 23.03-.73 38.476-.73 38.476l-32.445 30.8S3.04 97.358 1.762 77.892C1.03 65.828.756 55.226.756 48.829c0-.366.183-.731.183-1.097 0-.457.548-4.752 4.753-8.774 4.57-4.386 38.293-30.799 37.745-28.24"/><path fill="#1284ea" d="M43.437 10.718c-1.645 8.682-3.656 21.569-4.753 34.638 0 0-35.917-4.296-37.928 4.387 0-.457.64-5.758 4.844-9.78 4.57-4.386 38.385-31.804 37.837-29.245"/><path fill="#b4dc00" d="M.756 47.64v2.011c.366-1.553 1.006-2.65 2.285-4.386 2.65-3.382 6.946-4.296 8.682-4.479 8.774-1.188 21.752-2.559 34.821-2.924 23.122-.731 38.385 1.188 38.385 1.188l32.444-30.8S100.374 5.053 81 2.768C68.295 1.213 57.146.391 50.839.025c-.456 0-4.935-.548-9.139 3.473-4.57 4.387-27.783 26.413-37.105 35.278C.39 42.796.756 47.276.756 47.64"/><path fill="#6f2da8" d="M116.185 87.03c-8.774 1.189-21.751 2.651-34.82 3.108-23.123.731-38.477-1.188-38.477-1.188l-32.444 30.89s17.182 3.382 36.557 5.576a511 511 0 0 0 28.789 2.467c.457 0 1.188-.365 1.645-.365s4.935-.823 9.139-4.844c4.57-4.387 32.17-35.917 29.611-35.643z"/><path fill="#591f91" d="M116.185 87.03c-8.774 1.189-21.751 2.651-34.82 3.108 0 0 2.467 36.1-6.215 37.654.457 0 6.397-.274 10.601-4.295 4.57-4.387 32.993-36.74 30.434-36.466z"/><path fill="#73be28" d="M77.07 127.975c-.64 0-1.28-.092-2.011-.092 1.645-.274 2.741-.822 4.478-2.102 3.473-2.467 4.57-6.763 4.935-8.5 1.554-8.681 3.656-21.568 4.661-34.637 1.828-23.03.731-38.385.731-38.385l32.444-30.89s2.377 17.181 3.748 36.648a623 623 0 0 1 1.188 30.16c0 .456.365 4.935-3.839 8.956-4.57 4.387-27.783 26.504-37.014 35.369-4.387 4.021-8.865 3.473-9.322 3.473z"/></svg>
|
After Width: | Height: | Size: 1.7 KiB |
1
icons/dynatrace/dynatrace-plain-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M8.611 52.768c-.29.006-.87.084-1.424.613-.801.77-4.875 4.635-6.511 6.191-.738.706-.674 1.493-.674 1.557v.353l.002-.003v.003l-.002.016.002-.006c.004 1.134.05 2.912.174 4.946.224 3.416.658 6.449.658 6.449l5.693-5.407s-.208-2.71.13-6.751q.053-.636.12-1.262a49 49 0 0 1 1.258-.055c4.058-.128 6.736.21 6.736.21l5.696-5.405s-2.985-.562-6.385-.963a87 87 0 0 0-5.293-.483c-.02 0-.083-.005-.18-.003m26.405.003v4.204H31.31c-2.246 0-3.61.674-4.46 1.492-1.299 1.267-1.298 3.079-1.298 3.271v4.524c0 .192 0 2.004 1.299 3.271.834.818 2.197 1.492 4.459 1.492h1.652c1.075 0 2.518-.24 3.271-1.427.401-.642.547-1.492.563-2.278V52.771zm42.183 0v14.534c.016.786.146 1.635.563 2.277.754 1.203 2.197 1.428 3.271 1.428h3.192v-1.588h-2.967c-.834 0-1.411-.16-1.764-.514-.353-.337-.53-.899-.53-1.701v-8.629h3.706V56.99h-3.705v-4.219zm-55.865 2.342-5.693 5.422s.192 2.695-.13 6.736q-.05.633-.116 1.254a49 49 0 0 1-1.247.063c-4.058.128-6.752-.21-6.752-.21l-5.695 5.423s3.016.593 6.416.978c2.03.235 3.822.36 4.951.426l-.027.006c.128 0 .241.018.354.018.08 0 .866.096 1.636-.61 1.62-1.556 5.694-5.439 6.496-6.209.738-.706.672-1.49.672-1.57-.016-1.09-.062-3.064-.207-5.293-.24-3.417-.658-6.434-.658-6.434m16.857 1.862 5.39 14.035-1.62 4.219h1.844l7.01-18.254H48.97l-4.477 11.644-4.474-11.644H38.19zm18.846 0c-2.117.032-3.416.69-4.234 1.492-1.283 1.267-1.283 3.079-1.283 3.271v9.287h1.765V61.69c0-.657.208-1.506.865-2.148.546-.53 1.59-.947 2.985-.963 1.395.016 2.437.434 2.982.963.642.642.867 1.49.867 2.148v9.336h1.764v-9.287c0-.192 0-2.004-1.283-3.271-.818-.802-2.117-1.46-4.235-1.492zm8.647 0v1.587h4.105c1.46 0 2.375.418 2.92.963.658.642.883 1.491.883 2.149v1.363H67.96c-1.075 0-2.518.24-3.272 1.428-.4.641-.546 1.491-.562 2.277v.563c.016.786.145 1.635.562 2.277.754 1.203 2.197 1.428 3.272 1.428h3.576c1.075 0 2.52-.241 3.274-1.428.4-.642.544-1.491.56-2.277v-5.567c0-.192 0-2.004-1.299-3.271-.834-.818-2.197-1.492-4.459-1.492h-3.93zm29.191 0v1.587h4.105c1.46 0 2.375.418 2.92.963.658.642.883 1.491.883 2.149v1.363h-5.63c-1.075 0-2.518.24-3.272 1.428-.401.641-.545 1.491-.56 2.277v.563c.015.786.143 1.635.56 2.277.754 1.203 2.197 1.428 3.271 1.428h3.578c1.075 0 2.518-.241 3.272-1.428.4-.642.544-1.491.56-2.277v-5.567c0-.192 0-2.004-1.298-3.271-.834-.818-2.198-1.492-4.46-1.492zm27.412 0c-2.117.032-3.416.69-4.234 1.492-1.283 1.267-1.283 3.079-1.283 3.271v4.524c0 .192 0 2.004 1.283 3.271.818.802 2.117 1.46 4.234 1.492h4.17v-1.603h-4.074c-1.396-.016-2.437-.434-2.983-.963-.641-.642-.867-1.49-.867-2.148v-1.653h9.463v-2.92c.016-.192.016-2.004-1.283-3.271-.818-.802-2.117-1.46-4.234-1.492zm-32.816.015c-1.075 0-2.52.225-3.274 1.428-.417.642-.544 1.491-.56 2.277v10.33H87.4v-10.2c0-.803.177-1.396.53-1.733.353-.353.931-.514 1.765-.514h2.967V56.99zm22.246 0c-2.246 0-3.61.674-4.46 1.492-1.298 1.268-1.298 3.08-1.298 3.272v4.523c0 .193 0 2.005 1.299 3.272.834.818 2.197 1.492 4.459 1.492h4.074v-1.588h-4.25c-1.46 0-2.375-.417-2.92-.963-.658-.641-.883-1.49-.883-2.148v-4.653c0-.657.225-1.522.883-2.148.561-.545 1.46-.963 2.92-.963h4.25V56.99zm-80.6 1.588H35v8.647c.016.786-.16 1.346-.514 1.699-.353.337-.93.513-1.763.513h-1.606c-1.46 0-2.372-.417-2.918-.962-.657-.642-.883-1.491-.883-2.149V61.69c0-.657.226-1.506.883-2.148.562-.545 1.459-.963 2.918-.963zm91.281 0c1.396.016 2.44.434 2.985.963.641.642.865 1.49.865 2.148v1.381h-7.7v-1.38c0-.658.21-1.507.868-2.149.545-.53 1.587-.947 2.982-.963m-54.181 6.047h5.39v2.6c0 .786-.176 1.346-.529 1.699-.353.337-.931.513-1.766.513h-3.11c-.835 0-1.412-.16-1.764-.513s-.514-.913-.514-1.7v-.384c0-.802.176-1.364.53-1.701.352-.337.929-.514 1.763-.514m29.193 0h5.389v2.6c0 .786-.177 1.346-.53 1.699-.352.337-.93.513-1.763.513h-3.113c-.834 0-1.411-.16-1.764-.513s-.514-.913-.514-1.7v-.384c0-.802.177-1.364.53-1.701.352-.337.931-.514 1.765-.514"/></svg>
|
After Width: | Height: | Size: 3.7 KiB |
1
icons/dynatrace/dynatrace-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M49.81.002c-1.649.034-4.956.48-8.109 3.496-4.57 4.387-27.783 26.412-37.105 35.277-4.204 4.022-3.84 8.5-3.84 8.866v2.009l.008-.025v.037c-.001.018-.008.068-.008.08l.008-.03c.021 6.461.296 16.598.998 28.18 1.28 19.467 3.746 36.739 3.746 36.739l32.445-30.799s-1.189-15.446.73-38.477c.138-1.633.29-3.264.454-4.884.078-.775.167-1.536.25-2.305a277 277 0 0 1 7.158-.305c23.122-.73 38.385 1.19 38.385 1.19L117.373 8.25S100.375 5.052 81 2.768C68.296 1.214 57.146.39 50.84.025c-.114 0-.48-.034-1.03-.023m72.499 13.367L89.863 44.26s1.098 15.355-.73 38.386a256 256 0 0 1-.664 7.142c-2.352.142-4.721.268-7.104.352-23.122.73-38.476-1.19-38.476-1.19l-32.446 30.893s17.182 3.38 36.557 5.574a508 508 0 0 0 28.217 2.432c-.055.01-.102.025-.158.035.73 0 1.37.092 2.01.092.456 0 4.935.548 9.322-3.473 9.23-8.865 32.444-30.982 37.013-35.37 4.204-4.02 3.84-8.5 3.84-8.956a623 623 0 0 0-1.19-30.158c-1.37-19.467-3.745-36.649-3.745-36.649z"/></svg>
|
After Width: | Height: | Size: 994 B |
1
icons/expo/expo-line-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M17.513 45.277c-1.06 0-1.901.139-2.586.635s-1.07 1.151-1.646 2.038c-.385.592-1.306 2.252-2.594 4.604a987 987 0 0 0-4.46 8.244 724 724 0 0 0-4.235 8.017 152 152 0 0 0-1.377 2.708q-.25.51-.396.835c-.048.108-.086.2-.12.292-.035.092-.099.048-.099.465 0 1.07.329 2.197 1.225 3.508.519.76 1.221 1.381 2.1 1.656a2.74 2.74 0 0 0 2.738-.71c.24-.247.318-.4.522-.711.203-.311.458-.717.76-1.204.601-.975 1.384-2.275 2.27-3.744 2.72-4.507 6.409-10.631 8.58-13.612l.009-.013.01-.016c.116-.173-.088-.036.028-.036s.09-.037.14.038l.01.014.008.013c2.17 2.981 5.87 9.106 8.59 13.612.887 1.47 1.672 2.769 2.274 3.744.3.487.556.893.76 1.204.202.31.278.464.518.711a2.75 2.75 0 0 0 2.74.71c.88-.275 1.582-.897 2.1-1.656v-.002c.896-1.31 1.226-2.436 1.226-3.506 0-.417-.064-.374-.098-.465a5 5 0 0 0-.121-.292q-.146-.325-.397-.835c-.334-.68-.807-1.607-1.377-2.708a723 723 0 0 0-4.234-8.017 985 985 0 0 0-4.46-8.244c-1.288-2.352-2.21-4.011-2.596-4.604h.002c-.583-.897-1.007-1.566-1.713-2.052s-1.559-.621-2.622-.621Zm25.412 1.96v29.186h26.448l3.08-4.429 3.082 4.43h8.49v6.3h7.421v-7.568c1.375 1.044 3.07 1.657 5.008 1.657 5.507 0 9.798-4.987 9.798-10.938 0-5.95-4.296-10.9-9.798-10.9h-.985v.112c-1.529.163-2.891.687-4.023 1.546v-1.27H75.152L72.5 59.138l-2.623-3.775H60.91l1.07 1.545 6.03 8.694-6.533 9.388v-6.057H50.613v-3.787h9.666v-7.488h-9.666v-2.931h10.864v-7.49zm-25.412.01h1.48c.913 0 1.239.09 1.503.272.265.182.608.626 1.179 1.504.215.33 1.235 2.134 2.52 4.477a984 984 0 0 1 4.45 8.227 723 723 0 0 1 4.222 7.994 149 149 0 0 1 1.356 2.67c.161.328.287.593.365.769.01.02.01.024.018.042-.01.698-.125 1.251-.848 2.308v.002c-.317.464-.753.789-1.064.886-.31.097-.444.105-.74-.2.1.103-.097-.132-.283-.417a56 56 0 0 1-.733-1.162 476 476 0 0 1-2.261-3.727c-2.715-4.497-6.374-10.573-8.67-13.73-.516-.756-1.378-.899-1.765-.899s-1.207.24-1.655.899c-2.3 3.16-5.943 9.234-8.656 13.73h-.002a471 471 0 0 1-2.262 3.727 58 58 0 0 1-.73 1.162c-.187.285-.385.52-.285.417-.296.305-.43.297-.74.2-.311-.097-.745-.423-1.062-.886-.724-1.059-.84-1.614-.85-2.312l.017-.04c.079-.176.204-.441.366-.77.322-.656.791-1.575 1.357-2.669a724 724 0 0 1 4.223-7.994 986 986 0 0 1 4.45-8.227c1.285-2.343 2.303-4.147 2.518-4.477.578-.888.912-1.345 1.15-1.517.238-.173.522-.26 1.432-.26zm27.381 1.959h14.614v3.552H48.644v6.869h9.666v3.55h-9.666v7.725h10.864v3.552H44.894Zm71.28 5.769v.196c-5.597.508-9.86 4.93-9.86 10.742 0 6.169 4.742 10.9 10.844 10.9 6.066 0 10.842-4.727 10.842-10.9 0-6.172-4.773-10.938-10.842-10.938zm-32.149.415v20.34L76.94 65.564Zm12.429 1.556h.008c4.312.005 7.82 3.917 7.82 8.929 0 5.016-3.517 8.97-7.828 8.97-2.357 0-4.025-.905-5.171-2.633l-1.806-2.724v11.266h-3.483V57.333h3.483v4.965l1.806-2.723c1.145-1.729 2.813-2.629 5.17-2.629zm20.704 0h.01c5.055.005 8.863 3.791 8.863 8.967 0 5.18-3.807 8.931-8.873 8.931-5.109 0-8.875-3.746-8.875-8.93 0-5.185 3.77-8.968 8.875-8.968m-52.487.387h4.175l3.644 5.244 3.685-5.244h4.096l-5.73 8.23 6.194 8.89h-4.172l-4.107-5.91-4.112 5.91H64.25l6.156-8.85zm30.544 2.854c-3.174 0-5.738 2.527-5.738 5.688 0 3.194 2.574 5.688 5.738 5.688 3.143 0 5.74-2.515 5.74-5.688 0-3.14-2.585-5.687-5.738-5.688zm21.943.036c-3.094 0-5.508 2.503-5.508 5.69 0 3.124 2.404 5.65 5.508 5.65 3.07 0 5.505-2.516 5.505-5.65 0-2.831-1.956-5.004-4.52-5.488v-.202zm-21.943 1.933h.002c2.104 0 3.77 1.651 3.77 3.719 0 2.117-1.657 3.72-3.772 3.72-2.17 0-3.769-1.548-3.769-3.72 0-2.125 1.61-3.718 3.77-3.72zm21.933.038h.01c2.04 0 3.537 1.474 3.537 3.72 0 2.153-1.507 3.68-3.537 3.68-2.08 0-3.538-1.516-3.538-3.68 0-2.252 1.445-3.715 3.528-3.72"/></svg>
|
After Width: | Height: | Size: 3.5 KiB |
1
icons/expo/expo-line.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="m81.348 78.69 1.757 2.836c2.363 3.828 4.779 7.775 7.81 12.753l6.872 11.293c5.265 8.628 7.305 11.845 8.31 12.867 5.42 5.531 13.12 3.142 17.575-3.327 3.089-4.483 4.328-8.142 4.328-12.346 0-1.557-1.3-4.186-6.965-15.031-3.783-7.244-8.978-16.992-14.69-27.59-11.656-21.602-22.426-41.094-24.497-44.25-4.943-7.544-7.345-9.176-15.164-9.42h-5.416c-7.82.248-10.222 1.88-15.165 9.416C41.364 23.117 1.836 96.32.19 101.337a3.9 3.9 0 0 0-.19 1.199v1.558a4 4 0 0 0 .013.314c.292 3.535 1.589 6.814 4.266 10.704 4.456 6.469 12.15 8.854 17.576 3.327 1-1.017 3.04-4.239 8.31-12.867l6.872-11.293a2414 2414 0 0 1 9.566-15.593c7.51-12.103 13.275-20.97 17.373-26.554 4.12 5.628 9.88 14.482 17.372 26.554zM7.84 103.248c3.274-7.593 40.559-76.595 44.833-83.117 3.642-5.554 3.881-5.726 8.78-5.886h5.044c4.898.16 5.133.332 8.775 5.886 1.885 2.867 12.7 22.443 24.155 43.674a2462 2462 0 0 1 14.647 27.505c2.022 3.867 3.61 6.97 4.703 9.177.55 1.111.97 1.987 1.244 2.598l.035.062c.036.048.106.07.106-.385 0 2.575-.73 4.725-2.964 7.965-2.014 2.92-4.204 3.601-5.483 2.296-.327-.336-2.894-4.38-7.221-11.478a4448 4448 0 0 1-6.868-11.284 2432 2432 0 0 0-9.602-15.646c-7.642-12.31-13.505-21.328-17.757-27.12-3.071-4.297-9.518-4.297-12.616.044-4.22 5.752-10.088 14.766-17.726 27.08l-1.77 2.85a3037 3037 0 0 0-7.832 12.797l-6.867 11.283c-4.332 7.089-6.894 11.138-7.226 11.474-1.284 1.305-3.465.628-5.478-2.292-1.908-2.77-2.717-4.77-2.912-6.81v-.668z"/></svg>
|
After Width: | Height: | Size: 1.5 KiB |
1
icons/expo/expo-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M16.788 45.985c-2.001 0-2.289.456-3.462 2.259C12.107 50.118 0 72.634 0 73.258c0 .916.233 1.775 1.069 2.998.849 1.242 2.308 1.924 3.373.829.284-.292 1.668-2.584 3.468-5.569 2.761-4.576 6.491-10.78 8.76-13.896.287-.424.601-.477.857-.477.255 0 .682.053.97.477 2.267 3.115 6.01 9.32 8.772 13.896 1.8 2.985 3.184 5.277 3.468 5.569 1.065 1.095 2.524.413 3.373-.83.836-1.222 1.069-2.08 1.069-2.997 0-.624-12.107-23.14-13.327-25.014-1.172-1.803-1.555-2.259-3.562-2.259zm26.807 1.99v27.643h16.842V70.01H49.405v-5.845h9.816v-5.606h-9.816v-4.976h11.032v-5.608Zm53.365 7.86c-2.67 0-4.75 1.104-6.085 3.118v-2.725h-5.537v25.787h5.537v-9.122c1.335 2.014 3.415 3.12 6.085 3.12 4.986 0 8.952-4.54 8.952-10.109 0-5.568-3.966-10.07-8.952-10.07zm21.028 0c-5.694 0-10.013 4.344-10.013 10.109s4.32 10.07 10.013 10.07c5.653 0 10.012-4.305 10.012-10.07s-4.36-10.11-10.012-10.11zm-55.217.393 6.518 9.4-6.95 9.99h6.596l3.652-5.252 3.65 5.252h6.675l-6.989-10.03 6.519-9.36h-6.596l-3.219 4.581-3.182-4.58zm32.933 4.898c2.67 0 4.83 2.133 4.83 4.778 0 2.686-2.16 4.777-4.83 4.777-2.709 0-4.829-2.052-4.829-4.777 0-2.685 2.12-4.778 4.83-4.778zm22.284.04c2.59 0 4.593 2.014 4.593 4.778 0 2.685-2.003 4.737-4.593 4.737-2.632 0-4.594-2.052-4.594-4.737 0-2.764 1.962-4.779 4.594-4.779z"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
icons/expo/expo-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M60.654 48.883c1.051-1.534 2.197-1.727 3.127-1.727s2.475.193 3.527 1.727C75.556 60.12 89.173 82.512 99.22 99.035c6.555 10.767 11.586 19.043 12.622 20.095 3.874 3.952 9.189 1.489 12.278-2.995 3.039-4.412 3.88-7.512 3.88-10.817 0-2.253-44.052-83.515-48.486-90.28C75.25 8.534 73.856 6.89 66.56 6.89h-5.469c-7.28 0-8.331 1.644-12.599 8.148C44.058 21.803 0 103.065 0 105.313c0 3.31.847 6.41 3.892 10.822 3.088 4.484 8.403 6.947 12.278 2.99 1.03-1.053 6.061-9.323 12.615-20.095 10.047-16.518 23.62-38.91 31.874-50.153z"/></svg>
|
After Width: | Height: | Size: 593 B |
1
icons/gitkraken/gitkraken-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M13.635 109.144c-5.325 0-9.611 3.897-9.611 9.352a9.352 9.352 0 0 0 9.548 9.418c3.247 0 7.144-1.623 8.832-5.39a11.3 11.3 0 0 0 .78-4.612H12.207v2.988h6.819a5.196 5.196 0 0 1-1.883 2.729 6.235 6.235 0 0 1-3.637 1.103c-2.857 0-5.846-2.144-5.846-6.236a5.91 5.91 0 0 1 5.846-6.17 5.26 5.26 0 0 1 3.506 1.234 6.04 6.04 0 0 1 1.365 1.494h4.092c-1.17-3.312-4.742-5.91-8.834-5.91zm12.21.326v2.856h3.182v-2.856zm7.468 0v4.676H31.04v2.467h2.272v10.977h3.183v-10.977h2.338v-2.467h-2.338v-4.676zm8.119 0v18.12h3.7v-8.12l6.042 8.12h4.416l-7.209-9.094 6.56-9.026H51.11l-5.977 8.377v-8.377zm41.435 0v18.12h3.182v-6.69l4.871 6.69h3.637l-5.586-7.534 5.586-5.91h-3.832l-4.676 5.13v-9.806zm-18.77 4.286a3.832 3.832 0 0 0-3.702 2.142v-1.752h-3.051v13.444h3.182v-7.274c0-2.273 1.168-3.379 3.44-3.379h.132zm7.534 0c-3.767 0-6.82 3.248-6.82 7.08s2.533 7.142 6.82 7.142a5.066 5.066 0 0 0 4.547-2.338v1.95h3.182v-13.444h-3.182v1.947a5.066 5.066 0 0 0-4.547-2.337zm30.07 0a6.82 6.82 0 0 0-4.937 2.209 7.079 7.079 0 0 0 .39 10.066 7.014 7.014 0 0 0 10.002-.26 6.69 6.69 0 0 0 1.819-3.637 7.728 7.728 0 0 0-.586-4.287l-2.272 2.405a3.507 3.507 0 0 1-.91 3.57 3.767 3.767 0 0 1-5.13.584l7.468-7.922a7.404 7.404 0 0 0-5.844-2.728zm17.08 0c-2.403-.065-3.57 1.105-4.156 2.209v-1.819h-2.988v13.444h3.183v-7.405c0-1.884.778-3.441 3.051-3.441s2.924 1.558 2.924 3.572v7.274h3.182v-8.12c0-2.338-.78-5.714-5.196-5.714zm-92.935.39v13.444h3.181v-13.444zm75.576 2.389a3.637 3.637 0 0 1 2.162.598l-5.26 5.521a3.572 3.572 0 0 1 .455-4.807 3.637 3.637 0 0 1 2.643-1.312zm-29.336.209a3.897 3.897 0 0 1 3.701 2.338 3.767 3.767 0 0 1 .39 1.883 4.806 4.806 0 0 1-.519 1.882 3.702 3.702 0 0 1-3.572 2.145 4.027 4.027 0 0 1-4.092-4.092 4.027 4.027 0 0 1 4.092-4.156z" /><path fill="#179287" d="M119.3 23.288a2.338 2.338 0 0 0-4.545.844 1.624 1.624 0 0 0 .13.78 53.644 53.644 0 0 1 3.442 19.159 54.424 54.424 0 0 1-47.215 53.904V72.58a39.097 39.097 0 0 0 4.74-1.234V92.65A50.007 50.007 0 0 0 88.195.298a2.403 2.403 0 0 0-3.313 1.039 2.923 2.923 0 0 0-.194 1.039 2.338 2.338 0 0 0 1.169 2.078 45.266 45.266 0 0 1-5.262 81.766v-18.9a7.274 7.274 0 0 0 5.066-6.883 7.144 7.144 0 0 0-3.572-6.3c1.688-16.301 9.157-12.015 9.157-17.21v-2.988C91.245 26.08 73.19.752 64.748.103h-1.56C54.746.753 36.69 26.08 36.69 33.939v2.988c0 5.195 7.47.909 9.158 17.21a7.274 7.274 0 0 0 1.558 13.184V86.22a45.266 45.266 0 0 1-5.325-81.766 2.338 2.338 0 0 0 .974-3.117 2.273 2.273 0 0 0-2.143-1.3 2.143 2.143 0 0 0-1.104.26 50.007 50.007 0 0 0 12.34 92.352V71.347a39.097 39.097 0 0 0 4.74 1.234v25.394A54.424 54.424 0 0 1 9.609 44.07a55.073 55.073 0 0 1 3.443-19.16 2.338 2.338 0 0 0-1.234-2.987 2.598 2.598 0 0 0-.975-.194 2.403 2.403 0 0 0-2.208 1.558 59.1 59.1 0 0 0 52.93 79.817V73.23h4.806v29.874a59.035 59.035 0 0 0 56.697-59.034 57.866 57.866 0 0 0-3.767-20.783zM74.88 56.995a4.87 4.87 0 1 1 6.884 6.884 4.87 4.87 0 1 1-6.884-6.884zm-21.822 6.884a4.806 4.806 0 0 1-6.82 0 4.87 4.87 0 0 1 0-6.884 4.806 4.806 0 0 1 6.82 0 4.87 4.87 0 0 1 0 6.884z" /></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
icons/gitkraken/gitkraken-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#179287" d="M123.92 33.219a2.532 2.532 0 0 0-4.923.914 1.758 1.758 0 0 0 .141.844 58.091 58.091 0 0 1 3.727 20.747 58.935 58.935 0 0 1-51.128 58.372V86.598a42.338 42.338 0 0 0 5.134-1.336v23.067A54.153 54.153 0 0 0 90.233 8.322a2.602 2.602 0 0 0-3.587 1.126 3.165 3.165 0 0 0-.21 1.125 2.532 2.532 0 0 0 1.265 2.25 49.019 49.019 0 0 1-5.696 88.544V80.9a7.877 7.877 0 0 0 5.485-7.454 7.736 7.736 0 0 0-3.868-6.822c1.829-17.653 9.917-13.011 9.917-18.637v-3.235c0-8.51-19.552-35.938-28.694-36.642h-1.688c-9.143.704-28.694 28.132-28.694 36.642v3.235c0 5.626 8.088.984 9.916 18.637A7.877 7.877 0 0 0 46.067 80.9v20.466A49.019 49.019 0 0 1 40.3 12.823a2.532 2.532 0 0 0 1.055-3.375 2.461 2.461 0 0 0-2.32-1.407 2.32 2.32 0 0 0-1.196.281A54.153 54.153 0 0 0 51.2 108.33V85.262a42.338 42.338 0 0 0 5.134 1.336v27.498a58.935 58.935 0 0 1-51.2-58.372 59.638 59.638 0 0 1 3.728-20.747 2.532 2.532 0 0 0-1.336-3.235 2.813 2.813 0 0 0-1.055-.211 2.602 2.602 0 0 0-2.391 1.688 63.999 63.999 0 0 0 57.317 86.433v-32.35h5.205v32.35a63.928 63.928 0 0 0 61.396-63.928 62.663 62.663 0 0 0-4.079-22.505zm-48.104 36.5a5.275 5.275 0 1 1 7.455 7.455 5.275 5.275 0 1 1-7.455-7.455zm-23.63 7.455a5.204 5.204 0 0 1-7.385 0 5.275 5.275 0 0 1 0-7.455 5.204 5.204 0 0 1 7.384 0 5.275 5.275 0 0 1 0 7.455z" /></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
icons/gitkraken/gitkraken-plain-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#179287" d="M86.951.001a2.403 2.403 0 0 0-2.07 1.336 2.923 2.923 0 0 0-.195 1.04 2.338 2.338 0 0 0 1.17 2.075 45.266 45.266 0 0 1-5.262 81.768v-18.9a7.274 7.274 0 0 0 5.066-6.883 7.144 7.144 0 0 0-3.572-6.3c1.688-16.302 9.156-12.015 9.156-17.21V33.94C91.244 26.08 73.19.752 64.748.103h-1.56c-8.442.65-26.496 25.978-26.496 33.836v2.988c0 5.195 7.468.908 9.156 17.21a7.274 7.274 0 0 0 1.558 13.183v18.9a45.266 45.266 0 0 1-5.324-81.768 2.338 2.338 0 0 0 .973-3.115 2.273 2.273 0 0 0-2.143-1.3 2.143 2.143 0 0 0-1.103.261 50.007 50.007 0 0 0 12.34 92.35V71.347a39.097 39.097 0 0 0 4.74 1.232v25.395A54.424 54.424 0 0 1 9.609 44.07a55.073 55.073 0 0 1 3.442-19.16 2.338 2.338 0 0 0-1.233-2.987 2.598 2.598 0 0 0-.976-.195 2.403 2.403 0 0 0-2.207 1.558 59.1 59.1 0 0 0 52.93 79.817V73.23h4.806v29.875a59.035 59.035 0 0 0 56.697-59.035 57.866 57.866 0 0 0-3.767-20.784 2.338 2.338 0 0 0-4.547.846 1.624 1.624 0 0 0 .13.78 53.644 53.644 0 0 1 3.442 19.158 54.424 54.424 0 0 1-47.215 53.904V72.579a39.097 39.097 0 0 0 4.74-1.234V92.65A50.007 50.007 0 0 0 88.194.298a2.403 2.403 0 0 0-1.242-.297Zm-8.043 55.485a4.87 4.87 0 0 1 2.854 8.392 4.87 4.87 0 1 1-6.883-6.885 4.87 4.87 0 0 1 4.03-1.507zm-29.261.09a4.806 4.806 0 0 1 3.41 1.417 4.87 4.87 0 0 1 0 6.885 4.806 4.806 0 0 1-6.819 0 4.87 4.87 0 0 1 0-6.885 4.806 4.806 0 0 1 3.409-1.417zm-36.012 53.568c-5.325 0-9.611 3.896-9.611 9.351a9.352 9.352 0 0 0 9.548 9.418c3.247 0 7.144-1.622 8.832-5.39a11.3 11.3 0 0 0 .78-4.612H12.207v2.989h6.819a5.196 5.196 0 0 1-1.883 2.728 6.235 6.235 0 0 1-3.637 1.104c-2.857 0-5.846-2.145-5.846-6.237a5.91 5.91 0 0 1 5.846-6.17 5.26 5.26 0 0 1 3.506 1.235 6.04 6.04 0 0 1 1.365 1.494h4.092c-1.17-3.312-4.742-5.91-8.834-5.91zm12.21.326v2.856h3.182v-2.856zm7.468 0v4.676H31.04v2.467h2.272v10.976h3.183v-10.976h2.338v-2.467h-2.338v-4.676zm8.119 0v18.12h3.7v-8.12l6.042 8.12h4.416l-7.209-9.095 6.56-9.025H51.11l-5.977 8.377v-8.377zm41.435 0v18.12h3.182v-6.69l4.871 6.69h3.637l-5.586-7.534 5.586-5.91h-3.832l-4.676 5.129v-9.805zm-18.77 4.285a3.832 3.832 0 0 0-3.702 2.143v-1.752h-3.051v13.443h3.182v-7.273c0-2.273 1.168-3.38 3.44-3.38h.132zm7.534 0c-3.767 0-6.82 3.248-6.82 7.08s2.533 7.143 6.82 7.143a5.066 5.066 0 0 0 4.547-2.338v1.95h3.182v-13.444h-3.182v1.947a5.066 5.066 0 0 0-4.547-2.338zm30.07 0a6.82 6.82 0 0 0-4.937 2.21 7.079 7.079 0 0 0 .39 10.066 7.014 7.014 0 0 0 10.002-.26 6.69 6.69 0 0 0 1.819-3.637 7.728 7.728 0 0 0-.586-4.287l-2.272 2.404a3.507 3.507 0 0 1-.91 3.57 3.767 3.767 0 0 1-5.13.585l7.468-7.922a7.404 7.404 0 0 0-5.844-2.729zm17.08 0c-2.403-.065-3.57 1.105-4.156 2.21v-1.82h-2.988v13.444h3.183v-7.404c0-1.884.778-3.442 3.051-3.442s2.924 1.559 2.924 3.573v7.273h3.182v-8.119c0-2.338-.78-5.715-5.196-5.715zm-92.935.39v13.444h3.181v-13.443zm75.576 2.39a3.637 3.637 0 0 1 2.162.597l-5.26 5.522a3.572 3.572 0 0 1 .455-4.807 3.637 3.637 0 0 1 2.643-1.312zm-29.336.208a3.897 3.897 0 0 1 3.701 2.338 3.767 3.767 0 0 1 .39 1.883 4.806 4.806 0 0 1-.519 1.883 3.702 3.702 0 0 1-3.572 2.145 4.027 4.027 0 0 1-4.092-4.092 4.027 4.027 0 0 1 4.092-4.157z" /></svg>
|
After Width: | Height: | Size: 3.1 KiB |
1
icons/gleam/gleam-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#ffaff3" d="M50.417 7.19c1.816-5.147 8.57-6.338 12.038-2.122L80.63 27.166a12.189 12.189 0 0 0 9.118 4.44l28.629.697c5.466.133 8.676 6.177 5.735 10.771L108.68 67.177a12.165 12.165 0 0 0-1.415 10.04l8.172 27.411c1.557 5.223-3.2 10.155-8.493 8.78l-27.713-7.2a12.194 12.194 0 0 0-9.989 1.76l-23.578 16.245c-4.504 3.103-10.66.096-10.984-5.345l-1.696-28.554a12.169 12.169 0 0 0-4.763-8.95L5.477 63.993c-4.335-3.31-3.385-10.088 1.706-12.082l26.664-10.447a12.188 12.188 0 0 0 7.048-7.29z"/><path fill="#151515" d="M55.39.154c-3.23.57-6.183 2.715-7.405 6.178l-9.523 26.981a9.598 9.598 0 0 1-5.553 5.744L6.243 49.504c-6.842 2.68-8.165 12.092-2.332 16.547l22.744 17.37a9.571 9.571 0 0 1 3.75 7.047l1.696 28.553c.435 7.325 8.98 11.493 15.034 7.322l23.58-16.245v-.001a9.604 9.604 0 0 1 7.87-1.387l27.714 7.199c7.116 1.849 13.72-4.99 11.623-12.023l-8.17-27.41a9.578 9.578 0 0 1 1.114-7.905l15.432-24.105c3.957-6.181-.504-14.572-7.85-14.751l-28.63-.696a9.595 9.595 0 0 1-7.183-3.497L64.46 3.425C62.127.589 58.619-.417 55.389.153m.869 4.932c1.468-.26 3.07.248 4.206 1.627L78.639 28.81a14.78 14.78 0 0 0 11.052 5.383l28.63.695c3.585.088 5.544 3.783 3.618 6.79L106.508 65.78a14.761 14.761 0 0 0-1.716 12.172l8.171 27.41c1.018 3.415-1.892 6.44-5.363 5.538l-27.714-7.2a14.787 14.787 0 0 0-12.108 2.136l-23.58 16.245c-2.954 2.035-6.722.187-6.933-3.368L35.57 90.16a14.762 14.762 0 0 0-5.775-10.852L7.051 61.939c-2.837-2.167-2.26-6.31 1.078-7.619l26.666-10.447a14.782 14.782 0 0 0 8.545-8.84l9.523-26.98c.594-1.685 1.927-2.71 3.395-2.968"/><path fill="#151515" d="M47.093 72.832a5.082 5.082 0 1 0-1.766-10.01 5.082 5.082 0 0 0 1.766 10.01zm40.945-7.22a5.081 5.081 0 1 0-1.764-10.008 5.081 5.081 0 0 0 1.764 10.008zM63.356 71.7a2.594 2.594 0 0 0-1.434 1.365 2.59 2.59 0 0 0-.048 1.98 6.734 6.734 0 0 0 3.562 3.737h.001c.81.358 1.681.554 2.566.575h.002a6.755 6.755 0 0 0 2.591-.451h.001a6.735 6.735 0 0 0 2.222-1.409h.001a6.74 6.74 0 0 0 2.089-4.722 2.588 2.588 0 0 0-4.952-1.106c-.137.31-.212.645-.22.985a1.55 1.55 0 0 1-.134.595v.002a1.578 1.578 0 0 1-.87.828 1.572 1.572 0 0 1-1.201-.03h-.002a1.573 1.573 0 0 1-.5-.35v-.001a1.568 1.568 0 0 1-.329-.518 2.585 2.585 0 0 0-3.345-1.48z"/></svg>
|
After Width: | Height: | Size: 2.2 KiB |
1
icons/gleam/gleam-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#ffaff3" d="M56.61.014c-.41.021-.818.067-1.221.138v.002c-3.23.57-6.182 2.714-7.405 6.178l-9.523 26.98a9.599 9.599 0 0 1-5.553 5.745L6.244 49.504C-.598 52.184-1.923 61.596 3.91 66.05l22.746 17.37a9.582 9.582 0 0 1 3.75 7.047l1.696 28.553c.434 7.326 8.978 11.493 15.033 7.323v-.002l23.58-16.244a9.602 9.602 0 0 1 7.87-1.389l27.714 7.2c7.116 1.848 13.72-4.99 11.623-12.022l-8.17-27.412a9.579 9.579 0 0 1 1.113-7.905l15.432-24.103c3.958-6.182-.503-14.573-7.85-14.752l-28.63-.695a9.596 9.596 0 0 1-7.182-3.499L64.459 3.426C62.418.944 59.477-.137 56.609.014zm30.435 55.513a5.082 5.082 0 1 1 .222 10.161 5.082 5.082 0 0 1-.222-10.16zM46.1 62.747a5.083 5.083 0 0 1 .992 10.085 5.082 5.082 0 1 1-.992-10.086zm26.283 7.382a2.59 2.59 0 0 1 1.812.799 2.59 2.59 0 0 1 .713 1.847 6.723 6.723 0 0 1-2.088 4.721h-.002a6.733 6.733 0 0 1-2.22 1.41h-.002a6.75 6.75 0 0 1-2.59.451h-.002a6.74 6.74 0 0 1-2.567-.576h-.001a6.758 6.758 0 0 1-3.563-3.736 2.594 2.594 0 0 1 .63-2.805 2.59 2.59 0 0 1 1.847-.715 2.595 2.595 0 0 1 2.35 1.655c.075.192.186.368.328.517v.002c.143.149.312.266.5.35v.002h.002a1.576 1.576 0 0 0 1.201.03l.002-.003a1.552 1.552 0 0 0 .868-.828h.002v-.002c.083-.188.127-.389.132-.594a2.593 2.593 0 0 1 1.653-2.353c.317-.122.654-.18.994-.172z"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
icons/glitch/glitch-original.svg
Normal file
After Width: | Height: | Size: 5.7 KiB |
1
icons/glitch/glitch-plain.svg
Normal file
After Width: | Height: | Size: 5.0 KiB |
1
icons/hoppscotch/hoppscotch-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><radialGradient id="b" cx="0" cy="0" r="1" gradientTransform="matrix(-98.55944 137.6004 -152.84948 -109.48194 126.528 1.92)" gradientUnits="userSpaceOnUse"><stop stop-color="#00D196" stop-opacity=".5"/><stop offset=".997" stop-color="#00D196" stop-opacity="0"/></radialGradient><radialGradient id="d" cx="0" cy="0" r="1" gradientTransform="matrix(-92.15276 33.57 -20.47767 -56.21308 100.15 53.512)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></radialGradient><linearGradient id="a" x1="411.893" x2="411.893" y1="212" y2="612" gradientUnits="userSpaceOnUse"><stop stop-color="#00D196"/><stop offset="1" stop-color="#00B381"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="411.893" x2="411.893" y1="212" y2="612" gradientTransform="scale(.15534)" gradientUnits="userSpaceOnUse"/></defs><rect width="128" height="128" fill="#08110f" rx="28.583"/><rect width="128" height="128" fill="url(#b)" fill-opacity=".5" rx="28.583"/><path fill="url(#c)" d="M63.752 32.934a34.436 34.436 0 0 0-22.236 8.34c-9.06-1.565-19.78-1.576-23.12 5.925-3.745 8.411 5.438 18.094 18.747 26.512 1.884 8.139 7.43 15.329 15.625 18.977 8.195 3.648 17.253 2.959 24.556-1.084 15.162 4.256 28.501 4.601 32.246-3.811 3.34-7.5-3.841-15.461-11.066-21.148a34.411 34.411 0 0 0-20.469-30.711 34.537 34.537 0 0 0-14.283-3zm.842 6.996c3.638.075 7.246.875 10.607 2.37 1.288.574 2.539 1.492 2.399 2.393-.111.583-.436 1.266-2.893 1.274-5.22.24-7.697 1.937-8.826 4.47-1.128 2.535-.082 5.723 2.601 6.918 9.862 4.391 17.423 8.74 22.942 12.684 7.096 5.038 13.29 11.539 11.785 14.922-1.82 4.086-16.978 4.585-43.738-7.328C32.71 65.718 22.938 54.118 24.758 50.03h.002c1.505-3.382 10.477-3.128 18.969-1.226 5.431-5.72 12.366-8.612 19.304-8.864.52-.018 1.041-.022 1.56-.011zM42.447 54.313c-1.457-.026-2.777.562-3.492 1.707-1.205 1.927-.236 4.707 2.164 6.207 2.4 1.499 5.322 1.15 6.526-.778 1.204-1.928.235-4.705-2.165-6.205-.975-.61-2.036-.914-3.033-.931zm19.725 11.226c-1.751-.013-3.3.794-3.94 2.229-.93 2.088.422 4.718 3.02 5.875 2.597 1.156 5.457.4 6.387-1.688.93-2.088-.424-4.717-3.022-5.873a6.143 6.143 0 0 0-2.445-.543zm21.53 7.262c-2.046.014-3.808 1.084-4.298 2.79-.626 2.186 1.07 4.588 3.79 5.368 2.72.78 5.433-.36 6.06-2.545.627-2.185-1.07-4.588-3.79-5.367a6.254 6.254 0 0 0-1.763-.246z"/><path fill="url(#d)" d="M63.752 32.934a34.436 34.436 0 0 0-22.236 8.34c-9.06-1.565-19.78-1.576-23.12 5.925-3.745 8.411 5.438 18.094 18.747 26.512 1.884 8.139 7.43 15.329 15.625 18.977 8.195 3.648 17.253 2.959 24.556-1.084 15.162 4.256 28.501 4.601 32.246-3.811 3.34-7.5-3.841-15.461-11.066-21.148a34.411 34.411 0 0 0-20.469-30.711 34.537 34.537 0 0 0-14.283-3zm.842 6.996c3.638.075 7.246.875 10.607 2.37 1.288.574 2.539 1.492 2.399 2.393-.111.583-.436 1.266-2.893 1.274-5.22.24-7.697 1.937-8.826 4.47-1.128 2.535-.082 5.723 2.601 6.918 9.862 4.391 17.423 8.74 22.942 12.684 7.096 5.038 13.29 11.539 11.785 14.922-1.82 4.086-16.978 4.585-43.738-7.328C32.71 65.718 22.938 54.118 24.758 50.03h.002c1.505-3.382 10.477-3.128 18.969-1.226 5.431-5.72 12.366-8.612 19.304-8.864.52-.018 1.041-.022 1.56-.011zM42.447 54.313c-1.457-.026-2.777.562-3.492 1.707-1.205 1.927-.236 4.707 2.164 6.207 2.4 1.499 5.322 1.15 6.526-.778 1.204-1.928.235-4.705-2.165-6.205-.975-.61-2.036-.914-3.033-.931zm19.725 11.226c-1.751-.013-3.3.794-3.94 2.229-.93 2.088.422 4.718 3.02 5.875 2.597 1.156 5.457.4 6.387-1.688.93-2.088-.424-4.717-3.022-5.873a6.143 6.143 0 0 0-2.445-.543zm21.53 7.262c-2.046.014-3.808 1.084-4.298 2.79-.626 2.186 1.07 4.588 3.79 5.368 2.72.78 5.433-.36 6.06-2.545.627-2.185-1.07-4.588-3.79-5.367a6.254 6.254 0 0 0-1.763-.246z" style="mix-blend-mode:soft-light"/></svg>
|
After Width: | Height: | Size: 3.7 KiB |
1
icons/hoppscotch/hoppscotch-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#00d196" d="M63.682 21.176c-11.063.07-21.94 4.019-30.65 11.498-12.49-2.157-27.267-2.171-31.87 8.168C-4 52.437 8.656 65.782 27 77.387c2.597 11.218 10.243 21.129 21.54 26.158 11.295 5.03 23.784 4.075 33.85-1.498 20.9 5.867 39.285 6.345 44.448-5.25 4.603-10.34-5.294-21.312-15.254-29.15-.433-18.365-11.295-34.801-28.215-42.335a47.604 47.604 0 0 0-19.687-4.136zm-.99 9.662a37.868 37.868 0 0 1 16.77 3.252c1.777.79 3.5 2.057 3.308 3.299-.155.805-.6 1.743-3.987 1.754-7.195.332-10.612 2.668-12.168 6.162-1.555 3.493-.111 7.89 3.588 9.537 13.593 6.052 24.014 12.045 31.621 17.482 9.78 6.944 18.32 15.906 16.244 20.569-2.508 5.633-23.402 6.319-60.289-10.104C20.893 66.366 7.424 50.38 9.932 44.746c2.075-4.662 14.443-4.313 26.148-1.691 7.488-7.884 17.048-11.87 26.611-12.217zM34 50.648c-1.882.051-3.564.857-4.498 2.352-1.66 2.658-.327 6.488 2.98 8.555 3.308 2.067 7.336 1.587 8.997-1.07 1.66-2.658.324-6.488-2.983-8.555-1.447-.905-3.032-1.321-4.496-1.282zm27.504 15.475c-2.414-.017-4.553 1.092-5.434 3.07-1.281 2.878.583 6.504 4.164 8.098 3.581 1.594 7.524.554 8.805-2.324 1.281-2.878-.583-6.504-4.164-8.098a8.467 8.467 0 0 0-3.371-.746zM91.52 76.135c-2.962-.102-5.562 1.394-6.264 3.842-.864 3.012 1.475 6.325 5.224 7.4 3.75 1.075 7.49-.496 8.354-3.508.864-3.012-1.476-6.326-5.225-7.4a8.674 8.674 0 0 0-2.09-.334z"/></svg>
|
After Width: | Height: | Size: 1.4 KiB |
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill-rule="evenodd" clip-rule="evenodd" fill="#FAA625" d="M1 1v125.792c1 .082.99.235 1.359.235 36.269.011 72.665.011 108.934.011 4.994 0 9.859.004 14.854-.011.328-.001.854-.153.854-.235L127 1H1zm114 62.914v48.551c0 1.688-.253 1.535-1.88 1.535H15.771c-1.627 0-1.771.154-1.771-1.534V15.24c0-1.689.144-2.24 1.894-2.24h97.103c1.751 0 2.003.551 2.003 2.363v48.551zM64.414 40.368c-.214-.662-.612-.696-1.193-.693-3.114.019-6.229.069-9.341 0-.984-.021-1.411.274-1.715 1.233-4.385 13.785-8.817 27.561-13.233 41.336-.72 2.246-1.417 4.501-2.185 6.939 2.911 0 5.571-.04 8.229.026.903.022 1.279-.275 1.525-1.126 1.138-3.924 2.37-7.821 3.497-11.748.265-.926.694-1.176 1.625-1.165 4.424.052 8.85.052 13.274 0 .861-.01 1.211.268 1.455 1.062 1.213 3.949 2.502 7.874 3.714 11.823.251.816.566 1.13 1.507 1.062a54.147 54.147 0 013.93-.117h4.592l-.021-.331c-5.222-16.107-10.451-32.19-15.66-48.301zM52.001 68c2.037-7 4.059-13.848 6.051-20.644C60.105 54.128 62.193 61 64.312 68H52.001zM82 89h10V53H82v36zm5.071-50.445c-2.963.003-5.151 2.107-5.131 4.936.02 2.837 2.122 4.857 5.057 4.862 3.051.004 5.208-2.015 5.187-4.856-.022-2.91-2.127-4.945-5.113-4.942z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" data-name="Layer 1" viewBox="0 0 128 128"><path fill="#300" d="M105.33 3.6A20.69 20.69 0 0 1 126 24.27v79.46a20.69 20.69 0 0 1-20.67 20.67H22.67A20.69 20.69 0 0 1 2 103.73V24.27A20.69 20.69 0 0 1 22.67 3.6h82.66M82.11 35.89a8.83 8.83 0 0 0 2.34 6.26l.09.09a8.54 8.54 0 0 0 5.94 2.43H91a8.24 8.24 0 0 0 6-2.48 8.75 8.75 0 0 0 2.43-6.3 8.72 8.72 0 0 0-2.32-6.13 8.36 8.36 0 0 0-6.3-2.48 8.81 8.81 0 0 0-6.13 2.42 8.31 8.31 0 0 0-2.53 6.19M42.37 34a15.74 15.74 0 0 1-.26 2.85c-.14.43-.26.83-.37 1.22l-.12.43-17.16 49.43a1.09 1.09 0 0 0-.05.17 2.76 2.76 0 0 0 .4 2.48 2.61 2.61 0 0 0 2.12 1h10.13a2.92 2.92 0 0 0 2.84-2.2l3.58-11.08h17l3.9 11.31a2.81 2.81 0 0 0 2.66 2h11.2a2.56 2.56 0 0 0 2.1-1 2.66 2.66 0 0 0 .36-2.41s0-.1 0-.14L61.22 33.18a2.56 2.56 0 0 0-2.61-1.85H44.8a2.58 2.58 0 0 0-.39 0 2.54 2.54 0 0 0-2 2.67m43.08 57.81H96A2.65 2.65 0 0 0 98.64 89V47.89A2.62 2.62 0 0 0 96 45.15H85.39a2.6 2.6 0 0 0-2.7 2.74V89a2.73 2.73 0 0 0 2.8 2.85M51.87 50.56c.2.66.43 1.37.68 2.16s.52 1.63.77 2.43l.76 2.44c.55 1.81 1 3.33 1.47 4.66l.4 1.19h-8c.52-1.6 1-3.24 1.46-4.9s1-3.29 1.53-4.91c.31-1 .62-2 .91-2.93v-.14m53.46-49H22.67A22.64 22.64 0 0 0 0 24.27v79.46a22.64 22.64 0 0 0 22.67 22.67h82.66A22.64 22.64 0 0 0 128 103.73V24.27A22.64 22.64 0 0 0 105.33 1.6ZM90.48 42.67a6.61 6.61 0 0 1-4.56-1.87 6.87 6.87 0 0 1-1.81-4.91A6.23 6.23 0 0 1 86 31.15a6.8 6.8 0 0 1 4.74-1.87 6.4 6.4 0 0 1 4.86 1.87 6.75 6.75 0 0 1 1.76 4.74 6.76 6.76 0 0 1-1.87 4.91A6.27 6.27 0 0 1 91 42.68h-.55ZM26.93 89.55c-.58 0-.74-.32-.58-1l17.17-49.4c.16-.54.32-1.12.53-1.76a18.14 18.14 0 0 0 .32-3.47.54.54 0 0 1 .43-.59h13.81c.43 0 .64.16.7.43l19.46 54.93c.16.59 0 .86-.53.86H67a.82.82 0 0 1-.76-.59l-4.37-12.69H42L38 88.8a.94.94 0 0 1-.91.75zm58.56.26a.75.75 0 0 1-.8-.85V47.89c0-.53.22-.74.7-.74H96c.48 0 .69.26.69.74V89c0 .59-.21.85-.69.85ZM51.84 43.2h-.11a64.65 64.65 0 0 1-1.81 6.88c-.8 2.56-1.6 5.23-2.45 7.89s-1.55 5.23-2.35 7.47h13.55c-.32-1.12-.75-2.45-1.23-3.84s-1-3-1.44-4.59-1-3.25-1.55-4.9-1-3.2-1.44-4.75-.8-2.88-1.17-4.16Z"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 2.0 KiB |
1
icons/illustrator/illustrator-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#300" d="M22.7 1.6h82.7c12.5 0 22.7 10.1 22.7 22.7v79.5c0 12.5-10.1 22.7-22.7 22.7H22.7C10.1 126.4 0 116.3 0 103.7V24.3C0 11.7 10.1 1.6 22.7 1.6"/><path fill="#ff9a00" d="M61.9 76.3H42l-4 12.5c-.1.5-.5.8-1 .7H27c-.6 0-.7-.3-.6-1l17.2-49.4c.2-.5.3-1.1.5-1.8.2-1.1.3-2.3.3-3.5-.1-.3.2-.5.4-.6h13.8c.4 0 .6.2.7.4l19.5 54.9c.2.6 0 .9-.5.9H67.1c-.4.1-.7-.2-.9-.6zM45.1 65.4h13.5c-.3-1.1-.7-2.5-1.2-3.8-.5-1.4-1-3-1.4-4.6-.5-1.7-1-3.3-1.5-4.9-.5-1.7-1-3.2-1.4-4.7-.4-1.5-.8-2.9-1.2-4.2h-.1c-.5 2.3-1.1 4.6-1.8 6.9-.8 2.6-1.6 5.2-2.5 7.9-.8 2.7-1.6 5.2-2.4 7.4m45.6-22.7c-1.8.1-3.5-.6-4.7-1.9-1.2-1.3-1.9-3.1-1.8-4.9-.1-1.8.6-3.5 1.9-4.7 1.3-1.2 3-1.9 4.7-1.9 2.1 0 3.7.6 4.9 1.9 1.2 1.3 1.8 3 1.8 4.7.1 1.8-.6 3.6-1.9 4.9-1.3 1.3-3.1 2-4.9 1.9m-6 46.3V47.9c0-.5.2-.7.7-.7H96c.5 0 .7.3.7.7V89c0 .6-.2.9-.7.9H85.5c-.5-.1-.8-.4-.8-.9"/></svg>
|
After Width: | Height: | Size: 929 B |
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill-rule="evenodd" clip-rule="evenodd" fill="#FAA625" d="M47.955 69h15.371c-2.646-9-5.252-17.32-7.816-25.776C53.022 51.71 50.498 60 47.955 69zm76.157-68H2.873C.687 1 1 1.476 1 3.585v121.394C1 127.086.687 127 2.719 127h121.547c2.031 0 2.734.086 2.734-2.022V3.739C127 1.476 126.298 1 124.112 1zM77.298 96c-1.637 0-3.28-.133-4.909-.016-1.175.088-1.568-.406-1.881-1.426-1.514-4.931-3.123-9.86-4.638-14.79-.305-.992-.741-1.354-1.816-1.341-5.523.064-11.049.058-16.573-.007-1.163-.014-1.698.296-2.03 1.45-1.406 4.904-2.944 9.768-4.365 14.667-.308 1.062-.776 1.433-1.904 1.404-3.318-.083-6.641-.032-10.274-.032.959-3.045 1.829-5.861 2.729-8.665 5.514-17.2 11.047-34.4 16.521-51.611.382-1.198.913-1.567 2.143-1.54 3.886.086 7.775.022 11.663 0 .727-.005 1.223.038 1.489.864 6.505 20.116 13.033 40.356 19.555 60.47.028.091.01.573.025.573h-5.735zM98 96H86V51h12v45zm-6.35-51.071c-3.665-.005-6.289-2.528-6.314-6.07-.024-3.532 2.707-6.159 6.406-6.163 3.728-.004 6.355 2.537 6.384 6.171.026 3.545-2.667 6.068-6.476 6.062z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" data-name="Layer 1" viewBox="0 0 128 128"><path fill="#300" d="M105.33 1.6H22.67A22.64 22.64 0 0 0 0 24.27v79.46a22.64 22.64 0 0 0 22.67 22.67h82.66A22.64 22.64 0 0 0 128 103.73V24.27A22.64 22.64 0 0 0 105.33 1.6Zm-27.09 88H67.09a.82.82 0 0 1-.85-.59l-4.37-12.74H42L38 88.8a.93.93 0 0 1-1 .75H27c-.58 0-.74-.32-.58-1l17.1-49.4c.16-.54.32-1.12.53-1.76a18.14 18.14 0 0 0 .32-3.47.54.54 0 0 1 .43-.59h13.81c.43 0 .64.16.7.43l19.46 54.93c.16.59 0 .86-.53.86Zm18.4-.6c0 .59-.21.85-.69.85H85.49a.75.75 0 0 1-.8-.85V47.89c0-.53.22-.74.7-.74H96c.48 0 .69.26.69.74Zm-1.12-48.2a6.3 6.3 0 0 1-4.85 1.87 6.61 6.61 0 0 1-4.75-1.87 6.87 6.87 0 0 1-1.81-4.91A6.23 6.23 0 0 1 86 31.15a6.8 6.8 0 0 1 4.74-1.87 6.4 6.4 0 0 1 4.86 1.87 6.75 6.75 0 0 1 1.76 4.74 6.76 6.76 0 0 1-1.84 4.91ZM58.67 65.44H45.12c.8-2.24 1.6-4.75 2.35-7.47s1.65-5.33 2.45-7.89a64.65 64.65 0 0 0 1.81-6.88h.11c.37 1.28.75 2.67 1.17 4.16s.91 3.09 1.44 4.75 1 3.25 1.55 4.9 1 3.15 1.44 4.59.91 2.72 1.23 3.84Z"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1014 B |
1
icons/inertiajs/inertiajs-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x2="128" y1="64" y2="64" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#9553e9"/><stop offset="1" stop-color="#6d74ed"/></linearGradient></defs><path fill="url(#a)" d="M2.79 59.373h4.789l-2.79 15.902H0zm.279-4.23c.26-1.538 1.72-2.883 3.3-2.883s2.651 1.302 2.419 2.882c-.233 1.581-1.72 2.883-3.348 2.883-1.627 0-2.623-1.398-2.371-2.883zM25.247 65.51l-1.72 9.764h-4.743l1.58-9.067c.358-2.048-.743-2.882-2.278-2.882-1.58 0-3.103.913-3.487 3.068l-1.58 8.88H8.276l2.79-15.9h4.789l-.233 1.487c1.07-1.209 2.883-1.97 4.696-1.952 3.209.03 5.674 2.371 4.929 6.602zm18.69 1.813c-.065.37-.232 1.255-.51 1.906H32.034c.279 1.767 1.767 2.232 3.255 2.232 1.348 0 2.417-.372 3.347-1.255l3.348 2.743c-1.86 1.86-4.045 2.79-6.974 2.79-5.487 0-8.358-3.95-7.58-8.695a9.642 9.642 0 0 1 9.532-8.09c4.557.007 7.839 3.53 6.975 8.37zm-4.51-1.72c-.139-1.767-1.394-2.45-2.882-2.464a4.16 4.16 0 0 0-3.86 2.464zm18.18-6.556-.93 5.393c-1.86-.279-4.873.374-5.44 3.627l-1.255 7.207h-4.743l2.79-15.902h4.789l-.511 2.883c.976-2.185 3.068-3.208 5.3-3.208zm6.463 10.554c-.261 1.437.93 1.535 3.068 1.349l-.744 4.324c-5.718.65-7.834-1.252-7.067-5.673l.977-5.626h-2.558l.837-4.603h2.511l.558-3.022 5.021-1.441-.79 4.463h3.301l-.837 4.603h-3.254zm8.136-10.229h4.79l-2.79 15.902h-4.79zm.28-4.23c.258-1.53 1.72-2.883 3.3-2.883s2.65 1.302 2.418 2.882-1.72 2.883-3.347 2.883-2.624-1.39-2.372-2.883zm24.27 4.23-2.79 15.902h-4.79l.187-1.07c-1.36 1.07-3.059 1.555-4.79 1.535-5.16-.06-7.089-4.46-6.276-8.788.768-4.087 3.999-7.997 8.927-7.997 2.092 0 3.58.837 4.464 2.139l.279-1.674h4.789zm-6.138 7.998c.423-2.417-.883-3.897-3.068-3.906-2.238-.01-4.08 1.647-4.417 3.86-.364 2.38.837 3.834 3.068 3.858 2.14.023 4.003-1.44 4.417-3.812zm29.385-7.626h-8.276l7.997 7.998-7.997 7.997h8.276L128 67.743zm-12.507 0H99.22l7.997 7.998-7.997 7.997h8.276l7.997-7.997z"/></svg>
|
After Width: | Height: | Size: 1.9 KiB |
1
icons/inertiajs/inertiajs-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="0" x2="128" y1="64" y2="64" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#9553e9"/><stop offset="1" stop-color="#6d74ed"/></linearGradient></defs><path fill="url(#a)" d="M92.433 28.433H55.625L91.192 64 55.625 99.567h36.808L128 64zm-55.625 0H0L35.567 64 0 99.567h36.808L72.375 64z"/></svg>
|
After Width: | Height: | Size: 399 B |
1
icons/inertiajs/inertiajs-plain-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#8163eb" d="M2.79 59.373h4.789l-2.79 15.902H0zm.279-4.23c.26-1.538 1.72-2.883 3.3-2.883s2.651 1.302 2.419 2.882c-.233 1.581-1.72 2.883-3.348 2.883-1.627 0-2.623-1.398-2.371-2.883zM25.247 65.51l-1.72 9.764h-4.743l1.58-9.067c.358-2.048-.743-2.882-2.278-2.882-1.58 0-3.103.913-3.487 3.068l-1.58 8.88H8.276l2.79-15.9h4.789l-.233 1.487c1.07-1.209 2.883-1.97 4.696-1.952 3.209.03 5.674 2.371 4.929 6.602zm18.69 1.813c-.065.37-.232 1.255-.51 1.906H32.034c.279 1.767 1.767 2.232 3.255 2.232 1.348 0 2.417-.372 3.347-1.255l3.348 2.743c-1.86 1.86-4.045 2.79-6.974 2.79-5.487 0-8.358-3.95-7.58-8.695a9.642 9.642 0 0 1 9.532-8.09c4.557.007 7.839 3.53 6.975 8.37zm-4.51-1.72c-.139-1.767-1.394-2.45-2.882-2.464a4.16 4.16 0 0 0-3.86 2.464zm18.18-6.556-.93 5.393c-1.86-.279-4.873.374-5.44 3.627l-1.255 7.207h-4.743l2.79-15.902h4.789l-.511 2.883c.976-2.185 3.068-3.208 5.3-3.208zm6.463 10.554c-.261 1.437.93 1.535 3.068 1.349l-.744 4.324c-5.718.65-7.834-1.252-7.067-5.673l.977-5.626h-2.558l.837-4.603h2.511l.558-3.022 5.021-1.441-.79 4.463h3.301l-.837 4.603h-3.254zm8.136-10.229h4.79l-2.79 15.902h-4.79zm.28-4.23c.258-1.53 1.72-2.883 3.3-2.883s2.65 1.302 2.418 2.882-1.72 2.883-3.347 2.883-2.624-1.39-2.372-2.883zm24.27 4.23-2.79 15.902h-4.79l.187-1.07c-1.36 1.07-3.059 1.555-4.79 1.535-5.16-.06-7.089-4.46-6.276-8.788.768-4.087 3.999-7.997 8.927-7.997 2.092 0 3.58.837 4.464 2.139l.279-1.674h4.789zm-6.138 7.998c.423-2.417-.883-3.897-3.068-3.906-2.238-.01-4.08 1.647-4.417 3.86-.364 2.38.837 3.834 3.068 3.858 2.14.023 4.003-1.44 4.417-3.812zm29.385-7.626h-8.276l7.997 7.998-7.997 7.997h8.276L128 67.743zm-12.507 0H99.22l7.997 7.998-7.997 7.997h8.276l7.997-7.997z"/></svg>
|
After Width: | Height: | Size: 1.7 KiB |
1
icons/inertiajs/inertiajs-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#8163eb" d="M92.433 28.433H55.625L91.192 64 55.625 99.567h36.808L128 64zm-55.625 0H0L35.567 64 0 99.567h36.808L72.375 64z"/></svg>
|
After Width: | Height: | Size: 205 B |
1
icons/jhipster/jhipster-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#343333" d="M54.707 50.65a4.282 4.282 0 0 0-.743.055c-2.468.393-4.691 3.134-4.746 6.725-.038 2.468 2.236 4.567 3.933 6.015-5.114 1.605-8.08 7.2-6.746 10.97 1.89 5.338 7.442 1.974 9.575-1.902 1.097-1.995 1.79-3.873 2.321-5.947 1.086.434 2.279.763 2.901.77.313.004.56-.127.83-.352.165-.138.283-.495-.331-.834-.84-.463-2.195-1.285-2.984-1.763 1.322-8.66-.42-13.68-4.01-13.737zm13.309 1.535c-2.018-.017-4.4 1.24-4.902 2.485-.23.57-.214 1.883-.081 1.868.481-.052 1.178-.682 1.943-1.218 1.436-1.006 2.972-1.425 3.53-.516.878 1.432-.397 4.02-1.322 6.653-.974-.005-1.724-.027-2.815.03-.295-.44-.738-.912-1.014-.823-.489.159-.23.92.025 1.432.24.482 1.146 1.465 3.005 1.408-.623 1.83-1.244 3.36-1.862 5.55-.165.586.105 1.025.738 1.328.71.34 1.75-.56 2.189-1.803l1.861-5.28 4.862-.477c-.356 1.238-.637 2.313-.796 3.523-.3 2.29.942 4.82 3.978 3.907 1.208-.362 2.362-1.245 3.486-2.202.123 2.53 3.078 2.063 5.318.4-1.465 2.201-2.676 4.79-2.234 6.839.32 1.482 1.142 2.85 3.156 1.527 1.392-.915 2.332-4.765 2.225-7.402l2.168.368c1.141.195 2.432-.38 3.372-1.018.659 1.31 2.725 1.366 4.724.879 1.793-.437 3.52-1.32 4.343-1.972 1.602 3.799 3.837 1.783 6.886.124 1.72 3.191 5.175 2.02 7.568.32-.014 1.052.376 1.55 1.056 1.686 1.11.222 1.262-1.812 2.998-6.122h.155c.202 1.063.266 2.474 1.3 3.056.807.455 2.096.435 3.978-.877l.146-2.273c-.997.879-2.373 1.489-2.938 1.22-.599-.283-.552-1.086-.452-1.662.152-.869.362-1.765.185-2.09-.442-.815-1.669-.705-2.54.46a8.631 8.631 0 0 0-.997 1.764h-.107c-.001-.887-.005-1.744-.015-2.25-.005-.245-.112-.463-.366-.488a3.065 3.065 0 0 0-.694.003c-.263.032-.5.352-.587.62-.45 1.38-.696 2.747-.93 4.401-2.445 2.163-5.038 2.976-5.6 1.312 2.342-.64 4.604-2.932 3.726-4.93-.676-1.54-2.928-2.046-4.543-.536-1.143 1.068-1.708 2.84-1.736 4.392-1.265.953-2.553 1.802-3.489 1.854-1.214.067-1.481-1.253-1.406-2.843l.107-2.228 1.094-1.435h3.732c.34 0 .622-.407.62-.762-.001-.295-.058-.65-.462-.665l-2.802-.099c1.215-2.092 2.33-4.34 1.189-6.297-.913-1.564-2.7-.796-3.676 1.253-.757 1.59-1.167 2.863-1.552 4.716-1.266-.028-2.947-.3-2.941.598.003.408.227.614.616.649.717.063 1.368.158 2.043.308-.286 1.62-.242 3.47-.024 4.975l-2.951 1.534a8.633 8.633 0 0 0-.29-2.462c-.131-.523-.266-.948-.331-1.565.641-.926 1.109-1.161 1.24-1.86.125-.659-.682-.937-1.24-.93-.698.008-1.146.457-1.552.913-.982 1.101-1.55 2.227-2.566 3.316-1.695 1.815-2.359 1.713-2.387 2.701-1.081.432-2.14.76-3.085.646l-.085-.213c1.303-.592 2.833-1.724 3.158-3.105.696-2.959-.85-4.385-2.644-4.265-2.68.18-3.309 2.569-3.696 5.268-1.634 1.414-3.081 2.723-3.625 1.91-.397-.597.149-2.721 1.119-6.014.129-.44.277-1.23-.688-1.151-.936.076-1.494.198-1.678.923l-.45 1.783a71.33 71.33 0 0 0-.657 2.774l-.21-.536c-2.523 2.47-3.504 2.963-4.44 2.116-.619-.56-.04-3.233.467-5.042.726-.085 1.266-.148 2.047-.183.596-.027 1.487-.17 1.468-.766-.019-.587-.287-.835-1.2-.8-.584.023-1.236.086-1.854.128a68.189 68.189 0 0 1 1.988-5.667c.337-.842.318-1.654-.463-2.038-.859-.422-1.576.491-1.823 1.09-.93 2.251-1.63 4.504-2.354 6.745l-4.758.269c.695-2.72 1.295-4.022 1.26-6.156-.02-1.162-.555-1.992-1.345-2.514-.509-.336-1.142-.483-1.814-.489zm-13.183.463c2.31-.03 1.911 5.434 1.462 10.161-1.233-.88-2.387-1.883-3.313-2.942-1.084-1.24-1.569-2.656-1.09-4.192.425-1.359 1.674-3.011 2.94-3.027zm52.676 1.994a.443.443 0 0 1 .23.077c.441.29.241.858.065 1.475-.276.967-.863 1.93-1.588 3.244l-.59-.065c.317-1.538.718-3.025 1.321-4.286.127-.266.336-.454.562-.445zM84.607 56.19c-1.181.014-1.85.778-1.91 1.617-.065.893.716 1.503 1.701 1.484.84-.016 1.58-.427 1.76-1.094.377-1.394-.44-2.02-1.551-2.007zm6.261 6.141c.768.018.93.88.743 1.646-.39 1.598-1.31 2.522-2.538 3.167.01-1.782.173-4.852 1.795-4.813zm23.498.088c.569-.043.828.467.735.964-.189 1.01-1.449 1.845-2.364 1.897-.096-1.638.596-2.783 1.63-2.861zm-16.334 2.47c.307 1.007.58 1.807.171 2.786-.3.72-1.247.72-1.653.468-.362-.224-.574-.45-.8-.705l-.013-.285zm-42.53.22.358.226c-.698 3.793-3.036 9.606-5.865 9.603-1.873-.002-1.649-3.108-.494-4.973 1.508-2.433 3.392-4.327 6.001-4.855zm31.595 4.539c-.071 1.473-.069 3.194-.278 4.854-.064.506-.407.92-.843.436-.278-.309-.345-.62-.25-1.07.241-1.132.601-2.536 1.371-4.22z"/><path fill="#3474ab" d="M22.702 62.996s-19.28-11.189-20.947-4.23C.088 65.725-1.787 71.013 3.35 71.99c5.136.978 19.352-8.995 19.352-8.995z"/><path fill="#4289c7" d="M19.37 61.313c5.522-2.86 16.464-7.758 17.714-2.57 1.683 6.982 3.574 12.294-1.556 13.29-3.6.7-11.695-4.021-16.185-6.887-.006-3.391.033-.49.026-3.833z"/></svg>
|
After Width: | Height: | Size: 4.4 KiB |
1
icons/jhipster/jhipster-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#3474ab" d="M74.773 59.758S11.268 22.907 5.78 45.827c-5.49 22.92-11.663 40.34 5.254 43.56 16.917 3.22 63.74-29.629 63.74-29.629z"/><path fill="#4289c7" d="M63.795 54.216c18.19-9.417 54.229-25.553 58.348-8.464 5.543 22.994 11.77 40.492-5.125 43.774-11.856 2.303-38.52-13.247-53.308-22.684-.022-11.171.107-1.616.085-12.626z"/></svg>
|
After Width: | Height: | Size: 426 B |
1
icons/jhipster/jhipster-plain-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#4289c7" d="M33.533 56.465c-3.975-.047-10.253 2.83-14.06 4.795-5.56-2.835-16.483-7.657-17.72-2.494-1.666 6.958-3.54 12.248 1.597 13.226 3.573.68 11.532-3.936 16.05-6.81 4.5 2.868 12.542 7.548 16.127 6.851 5.13-.996 3.24-6.31 1.557-13.29-.39-1.622-1.728-2.257-3.55-2.278zm21.174-5.815a4.282 4.282 0 0 0-.743.055c-2.468.393-4.691 3.134-4.746 6.725-.038 2.468 2.236 4.567 3.933 6.015-5.114 1.605-8.08 7.2-6.746 10.97 1.89 5.338 7.442 1.974 9.575-1.902 1.097-1.995 1.79-3.873 2.321-5.947 1.086.434 2.279.763 2.901.77.313.004.56-.127.83-.352.165-.138.283-.495-.331-.834-.84-.463-2.195-1.285-2.984-1.763 1.322-8.66-.42-13.68-4.01-13.737zm13.309 1.535c-2.018-.017-4.4 1.24-4.902 2.485-.23.57-.214 1.883-.081 1.868.481-.052 1.178-.682 1.943-1.218 1.436-1.006 2.972-1.425 3.53-.516.878 1.432-.397 4.02-1.322 6.653-.974-.005-1.724-.027-2.815.03-.295-.44-.738-.912-1.014-.823-.489.159-.23.92.025 1.432.24.482 1.146 1.465 3.005 1.408-.623 1.83-1.244 3.36-1.862 5.55-.165.586.105 1.025.738 1.328.71.34 1.75-.56 2.189-1.803l1.861-5.28 4.862-.477c-.356 1.238-.637 2.313-.796 3.523-.3 2.29.942 4.82 3.978 3.907 1.208-.362 2.362-1.245 3.486-2.202.123 2.53 3.078 2.063 5.318.4-1.465 2.201-2.676 4.79-2.234 6.839.32 1.482 1.142 2.85 3.156 1.527 1.392-.915 2.332-4.765 2.225-7.402l2.168.368c1.141.195 2.432-.38 3.372-1.018.659 1.31 2.725 1.366 4.724.879 1.793-.437 3.52-1.32 4.343-1.972 1.602 3.799 3.837 1.783 6.886.124 1.72 3.191 5.175 2.02 7.568.32-.014 1.052.376 1.55 1.056 1.686 1.11.222 1.262-1.812 2.998-6.122h.155c.202 1.063.266 2.474 1.3 3.056.807.455 2.096.435 3.978-.877l.146-2.273c-.997.879-2.373 1.489-2.938 1.22-.599-.283-.552-1.086-.452-1.662.152-.869.362-1.765.185-2.09-.442-.815-1.669-.705-2.54.46a8.631 8.631 0 0 0-.997 1.764h-.107c-.001-.887-.005-1.744-.015-2.25-.005-.245-.112-.463-.366-.488a3.065 3.065 0 0 0-.694.003c-.263.032-.5.352-.587.62-.45 1.38-.696 2.747-.93 4.401-2.445 2.163-5.038 2.976-5.6 1.312 2.342-.64 4.604-2.932 3.726-4.93-.676-1.54-2.928-2.046-4.543-.536-1.143 1.068-1.708 2.84-1.736 4.392-1.265.953-2.553 1.802-3.489 1.854-1.214.067-1.481-1.253-1.406-2.843l.107-2.228 1.094-1.435h3.732c.34 0 .622-.407.62-.762-.001-.295-.058-.65-.462-.665l-2.802-.099c1.215-2.092 2.33-4.34 1.189-6.297-.913-1.564-2.7-.796-3.676 1.253-.757 1.59-1.167 2.863-1.552 4.716-1.266-.028-2.947-.3-2.941.598.003.408.227.614.616.649.717.063 1.368.158 2.043.308-.286 1.62-.242 3.47-.024 4.975l-2.951 1.534a8.633 8.633 0 0 0-.29-2.462c-.131-.523-.266-.948-.331-1.565.641-.926 1.109-1.161 1.24-1.86.125-.659-.682-.937-1.24-.93-.698.008-1.146.457-1.552.913-.982 1.101-1.55 2.227-2.566 3.316-1.695 1.815-2.359 1.713-2.387 2.701-1.081.432-2.14.76-3.085.646l-.085-.213c1.303-.592 2.833-1.724 3.158-3.105.696-2.959-.85-4.385-2.644-4.265-2.68.18-3.309 2.569-3.696 5.268-1.634 1.414-3.081 2.723-3.625 1.91-.397-.597.149-2.721 1.119-6.014.129-.44.277-1.23-.688-1.151-.936.076-1.494.198-1.678.923l-.45 1.783a71.33 71.33 0 0 0-.657 2.774l-.21-.536c-2.523 2.47-3.504 2.963-4.44 2.116-.619-.56-.04-3.233.467-5.042.726-.085 1.266-.148 2.047-.183.596-.027 1.487-.17 1.468-.766-.019-.587-.287-.835-1.2-.8-.584.023-1.236.086-1.854.128a68.189 68.189 0 0 1 1.988-5.667c.337-.842.318-1.654-.463-2.038-.859-.422-1.576.491-1.823 1.09-.93 2.251-1.63 4.504-2.354 6.745l-4.758.269c.695-2.72 1.295-4.022 1.26-6.156-.02-1.162-.555-1.992-1.345-2.514-.509-.336-1.142-.483-1.814-.489zm-13.183.463c2.31-.03 1.911 5.434 1.462 10.161-1.233-.88-2.387-1.883-3.313-2.942-1.084-1.24-1.569-2.656-1.09-4.192.425-1.359 1.674-3.011 2.94-3.027zm52.676 1.994a.443.443 0 0 1 .23.077c.441.29.241.858.065 1.475-.276.967-.863 1.93-1.588 3.244l-.59-.065c.317-1.538.718-3.025 1.321-4.286.127-.266.336-.454.562-.445zM84.607 56.19c-1.181.014-1.85.778-1.91 1.617-.065.893.716 1.503 1.701 1.484.84-.016 1.58-.427 1.76-1.094.377-1.394-.44-2.02-1.551-2.007zm6.261 6.141c.768.018.93.88.743 1.646-.39 1.598-1.31 2.522-2.538 3.167.01-1.782.173-4.852 1.795-4.813zm23.498.088c.569-.043.828.467.735.964-.189 1.01-1.449 1.845-2.364 1.897-.096-1.638.596-2.783 1.63-2.861zm-16.334 2.47c.307 1.007.58 1.807.171 2.786-.3.72-1.247.72-1.653.468-.362-.224-.574-.45-.8-.705l-.013-.285zm-42.53.22.358.226c-.698 3.793-3.036 9.606-5.865 9.603-1.873-.002-1.649-3.108-.494-4.973 1.508-2.433 3.392-4.327 6.001-4.855zm31.595 4.539c-.071 1.473-.069 3.194-.278 4.854-.064.506-.407.92-.843.436-.278-.309-.345-.62-.25-1.07.241-1.132.601-2.536 1.371-4.22z"/></svg>
|
After Width: | Height: | Size: 4.4 KiB |
1
icons/jhipster/jhipster-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#4289c7" d="M110.449 38.247c-13.093-.152-33.77 9.322-46.311 15.793-18.314-9.337-54.287-25.22-58.36-8.215C.288 68.745-5.883 86.17 11.034 89.39 22.804 91.63 49.018 76.426 63.9 66.958c14.821 9.448 41.307 24.86 53.117 22.567 16.896-3.283 10.67-20.782 5.127-43.777-1.287-5.34-5.693-7.43-11.695-7.5z"/></svg>
|
After Width: | Height: | Size: 398 B |
1
icons/kaldi/kaldi-line-wordmark.svg
Normal file
After Width: | Height: | Size: 15 KiB |
1
icons/kaldi/kaldi-line.svg
Normal file
After Width: | Height: | Size: 12 KiB |
1
icons/kaldi/kaldi-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#8c6432" d="M10.691 78.6c-2.582-.545-4.772-3.476-5.435-7.274-.247-1.42-.284-5.054-.066-6.583.584-4.098 2.863-6.672 5.959-6.73 1.978-.037 2.21.474 2.234 4.935.018 3.313-.234 5.022-1.033 7.02-.589 1.471-.747 2.747-.588 4.754l.13 1.65.027-2.297c.02-1.68.086-2.451.249-2.871.893-2.305 1.205-3.434 1.427-5.17.3-2.343.228-5.967-.14-6.963-.13-.355-.252-.71-.27-.79-.02-.089.403-.126 1.117-.098 1.49.058 2.369.467 3.4 1.583 1.598 1.731 1.964 3.1 1.695 6.34-.191 2.31-.47 3.818-1.013 5.464-.824 2.499-1.873 4.226-3.389 5.577-1.444 1.289-2.844 1.761-4.303 1.453z"/><path fill="#4d4d4d" d="M98.082 74.341c-.258-.217-.552-.59-.652-.83-.157-.372-.146-.506.075-.94.452-.89.576-1.592.798-4.526.247-3.259.791-8.027 1.225-10.726.162-1.002.274-2.1.25-2.44-.043-.58-.086-.637-.725-.943-.845-.403-1.18-.862-.98-1.343.434-1.043.95-1.261 2.781-1.173.805.038 3.08-.032 5.057-.157 4.044-.255 5.47-.173 7.143.408 2.703.94 4.666 3.03 5.371 5.717.312 1.19.303 3.348-.019 4.552-.896 3.352-3.89 6.555-7.936 8.488-1.75.836-3.27 1.365-5.99 2.08-1.885.497-2.735.801-3.737 1.34-1.743.935-2.065.995-2.661.493zm6.365-4.074c2.754-.754 3.918-1.177 5.444-1.975 2.42-1.265 4.41-3.176 5.344-5.129.664-1.388.847-2.358.765-4.042-.057-1.153-.142-1.568-.465-2.246-.748-1.576-2.457-2.868-4.401-3.326-1.096-.258-4.075-.291-6.376-.07-2.107.202-2.18.222-2.28.62-.17.675-1.228 8.39-1.446 10.537-.223 2.196-.299 5.556-.135 5.982.147.383 1.284.27 3.55-.35zm-74.224 4.105c-.744-.324-.804-.773-.412-3.053.187-1.09.508-3.694.713-5.787.816-8.324 1.45-12.971 1.883-13.81.258-.499.968-.883 1.393-.754.958.292 1.199 1.094.811 2.701-.62 2.572-1.405 8.458-1.259 9.446.079.532 2.607-1.536 6.043-4.94 2.724-2.7 3.18-3.221 3.964-4.518.921-1.524 1.324-1.945 1.722-1.802.505.18 1 .629 1.229 1.111.227.48.225.537-.037 1.116-.581 1.282-2.777 3.448-8.258 8.15-1.285 1.102-1.39 1.229-1.149 1.39.146.097 1.737 1.307 3.535 2.688 5.278 4.053 6.231 4.617 8.056 4.772 1.22.103 1.311.194 1.102 1.102-.233 1.012-1.143 1.628-2.133 1.444-1.5-.279-2.52-.943-9.171-5.974-1.198-.906-2.597-1.865-3.108-2.13-.807-.419-.978-.46-1.296-.315-.792.36-1.168 1.573-1.389 4.478-.233 3.068-.614 4.38-1.37 4.725-.2.091-.377.163-.393.16-.016-.003-.23-.093-.476-.2zm42.23.009c-.503-.225-1.582-1.345-2.173-2.255-.227-.35-1.026-1.863-1.776-3.363l-1.364-2.728-.536-.044c-.762-.064-3.867.483-6.14 1.08-2.514.662-2.796.698-3.225.417-.193-.126-.435-.197-.538-.157-.252.096-.858 1.028-2.28 3.506-1.242 2.162-1.723 2.8-2.225 2.942-.347.099-1.11-.37-1.534-.942-.276-.373-.276-.383.003-1.005.154-.345 1.216-2.02 2.359-3.72 2.483-3.693 3.905-6.058 6.03-10.026 2.296-4.29 3.257-5.888 4.015-6.675.613-.636.713-.687 1.15-.599.264.054.641.213.839.354.324.232.36.358.373 1.317.016 1.137-.023 1.007 2.244 7.378 1.375 3.866 2.233 5.95 3.212 7.806.99 1.879 1.484 2.601 2.517 3.683 1.217 1.275 1.362 1.956.578 2.702-.488.464-.988.571-1.53.329zm-12.564-9.642c.75-.114 2.495-.424 3.877-.69 2.238-.43 2.51-.512 2.484-.756-.045-.443-2.796-8.53-2.901-8.53-.053 0-.31.437-.572.97-.261.533-1.365 2.649-2.452 4.702a898.888 898.888 0 0 0-2.225 4.22l-.25.487.338-.098c.185-.054.95-.191 1.701-.305zm18.45 9.274c-.844-.35-1.145-1.245-.866-2.574.389-1.85 1.288-9.204 1.873-15.311.427-4.46.518-4.774 1.462-5.073.745-.235 1.26-.037 1.653.637.218.374.239.58.132 1.292-1.154 7.675-2.062 15.27-1.999 16.705l.042.94.766.044c.42.024 1.584-.084 2.584-.241 2.112-.331 2.818-.407 5.552-.593 1.106-.075 2.475-.215 3.043-.31 1.27-.213 1.665-.076 1.908.66.24.729-.141 1.48-.96 1.894-.567.287-.76.3-3.163.232-3.558-.102-6.25.25-9.514 1.246-1.712.522-2.153.601-2.513.452zm45.435-.504c-.515-.285-.713-.81-.87-2.303-.195-1.853-.103-2.785 1.225-12.422.36-2.618.947-6.08 1.13-6.671.234-.761 1.286-1.459 1.866-1.238.406.154.73.676.866 1.396.057.3-.153 1.423-.623 3.342-1.333 5.44-1.987 11.597-1.598 15.041.176 1.56.045 2.206-.53 2.616-.558.398-1.037.476-1.466.239zM19.507 72.182c-.336-.088-.328-.19.234-3 .267-1.336.53-2.735.583-3.108.053-.373.16-.717.236-.765.076-.047.418.05.76.215.708.342 1.284 1.246 1.452 2.278.076.463.16.606.334.572.387-.074.503-1.128.511-4.636.007-2.95-.026-3.448-.316-4.654-.887-3.704-2.654-6.218-5.358-7.625-1.667-.867-2.996-1.171-5.149-1.179-2.194-.008-3.321.236-5.097 1.105-2.306 1.129-3.815 2.67-5.068 5.173-1.17 2.339-1.61 4.336-1.714 7.79-.077 2.58-.074 2.62.219 2.62.234 0 .344-.159.52-.754.4-1.352 1.286-2.261 2.204-2.261h.484l-.045 3.29c-.025 1.81-.088 3.333-.139 3.384-.198.197-1.137-.12-1.634-.55-.347-.302-.609-.716-.786-1.242-.268-.798-.717-1.167-.717-.59 0 .321-.431.626-.668.472-.284-.186-.358-.957-.353-3.681.006-3.042.177-4.307.89-6.604.999-3.213 2.662-5.572 5.048-7.156 2.028-1.347 4.17-1.97 6.764-1.967 5.13.004 8.747 2.39 10.684 7.047 1.004 2.414 1.469 5.956 1.196 9.117-.214 2.488-.516 4.212-.785 4.481-.273.273-.665.123-.665-.253 0-.546-.362-.295-.62.429-.554 1.563-1.75 2.38-3.005 2.052z"/></svg>
|
After Width: | Height: | Size: 4.8 KiB |
1
icons/kaldi/kaldi-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#8c6432" d="M58.235 127.9c-3.688-.522-7.902-2.352-10.706-4.648-2.582-2.114-6.22-6.404-7.607-8.967-.294-.543-.857-1.557-1.25-2.253-1.387-2.449-2.956-5.889-2.956-6.481 0-.116-.195-.691-.433-1.278-2.915-7.173-4.07-22.105-2.682-34.686.536-4.863.986-7.024 2.3-11.054 1.102-3.378 1.651-4.679 2.863-6.776.545-.943.99-1.732.99-1.755 0-.023.315-.562.699-1.198.982-1.626 1.75-2.562 3.924-4.785 2.734-2.797 5.087-4.15 9.395-5.406 3.581-1.044 8.147-1.298 10.699-.595 2.8.77 4.124 2.701 4.894 7.138.506 2.915.643 6.061.663 15.233.017 7.945-.02 9.497-.28 11.392-.79 5.795-2.014 11.739-2.935 14.25-.326.888-.7 1.956-.834 2.374-.133.417-.577 1.556-.986 2.531-.962 2.288-1.87 5.307-2.11 7.01-.325 2.3-.401 6.747-.187 10.83.276 5.282.53 5.924.454 1.146-.072-4.432.131-10.644.405-12.404.136-.876.53-2.029 1.277-3.742.595-1.362 1.081-2.55 1.081-2.64 0-.09.304-.93.675-1.866 2.394-6.041 3.215-9.883 4.418-20.696.291-2.615.289-16.984-.003-19.998-.368-3.797-.918-6.21-1.8-7.894-.417-.798-.758-1.547-.758-1.663 0-.758 1.627-.895 6.835-.573 3.617.223 5.622.883 8.607 2.834 2.07 1.352 6.202 5.397 7.367 7.211 1.793 2.791 2.494 3.947 3.018 4.979 1.676 3.299 2.397 8.99 2.025 15.99-.165 3.114-.336 4.996-1.019 11.266-.488 4.473-2.027 11.436-3.473 15.704-.41 1.212-.746 2.317-.746 2.456 0 .37-1.644 4.262-2.914 6.902a130.81 130.81 0 0 0-1.442 3.073c-.399.92-1.374 2.46-3.29 5.196-.998 1.425-2.17 2.753-4.409 4.996-4.738 4.745-6.639 6.164-10.56 7.88-2.091.915-2.534 1.002-5.4 1.057-1.532.03-3.246-.011-3.81-.09z"/><path fill="#505050" d="M96.174 99.799c-.49-.138-1.116-.368-1.393-.51-.47-.244-.503-.325-.503-1.233 0-.546.741-4.751 1.686-9.574.927-4.73 1.88-9.701 2.116-11.047 1.47-8.37 1.285-7.878 2.902-7.711 1.176.121 3.321 1.147 4.458 2.131.91.789 2.168 2.732 2.971 4.592.575 1.328 1.225 4.18 1.225 5.37 0 .372.115.772.266.922.329.33 1.643.355 1.907.037.54-.65 1.57-9.388 1.891-16.058.423-8.765-.445-18.351-2.298-25.372-.228-.867-.416-1.716-.416-1.887 0-.42-1.359-4.676-1.993-6.241-1.688-4.164-3.307-7.28-5.173-9.958-.485-.696-1.02-1.531-1.187-1.856-.418-.809-1.802-2.435-3.927-4.613-4.078-4.18-9.357-7.555-14.92-9.54-.773-.276-1.641-.622-1.93-.769-1.32-.674-6.814-1.764-10.764-2.135-2.737-.257-10.323-.11-12.76.248-3.646.535-7.644 1.458-8.861 2.045-.279.135-1.418.596-2.532 1.026-6.493 2.504-12.8 6.897-17.218 11.993-3.705 4.272-7.688 10.82-9.787 16.09-2.208 5.541-4.202 13.317-5.042 19.662-.552 4.166-.807 13.52-.514 18.865.1 1.833.164 2.182.422 2.32.442.237 1.774.2 1.985-.054.1-.12.305-.818.456-1.55.322-1.558.957-3.343 1.862-5.234.497-1.04.955-1.661 2.005-2.722 2.356-2.38 4.442-3.454 6.802-3.502 1.54-.032 1.563.015 1.558 3.258-.008 5.001-.48 25.242-.596 25.543-.206.536-1.051.843-1.979.72-3.527-.468-6.441-2.66-8.121-6.114-.749-1.538-1.62-4.113-1.62-4.788 0-.475-.474-.837-1.095-.837-.989 0-1.099.113-1.099 1.124 0 1.574-.59 2.252-1.96 2.252-1.641 0-2.039-.813-2.258-4.616-.087-1.5-.244-4.093-.35-5.763-.216-3.413-.13-11.24.17-15.274.585-7.904 1.844-13.759 4.934-22.952 1.096-3.26 3.925-8.924 6.088-12.188.905-1.366 1.646-2.552 1.646-2.636 0-.19 1.09-1.593 2.445-3.15.566-.65 1.319-1.54 1.672-1.98.758-.94 4.6-4.427 6.197-5.622 1.95-1.46 3.247-2.362 4.115-2.861a23.831 23.831 0 0 0 1.603-1.025c1.377-.978 4.783-2.552 7.848-3.626C51.248 1.55 56.416.5 61.284.12c3.054-.237 8.876-.107 11.98.268 4.575.553 9.847 1.884 13.648 3.447 1.913.786 5.342 2.554 6.02 3.104.255.205 1.346.972 2.426 1.702 2.698 1.825 5.902 4.705 8.12 7.3 2.342 2.737 2.76 3.284 3.464 4.536a79.82 79.82 0 0 0 1.519 2.531c2.173 3.475 4.384 8.487 5.695 12.911 1.723 5.81 2.923 12.558 3.407 19.155.224 3.058.223 11.147-.001 14.458-.371 5.475-1.26 12.238-2.3 17.484-.427 2.16-.466 2.26-1.094 2.827-.847.765-1.864.822-2.662.15-.46-.386-.52-.54-.52-1.329 0-1.014-.238-1.324-.954-1.241-.557.065-.686.301-1.38 2.52-.796 2.543-2.12 5.057-3.385 6.426-1.365 1.477-2.946 2.608-4.382 3.135-1.419.521-3.456.649-4.711.296z"/></svg>
|
After Width: | Height: | Size: 3.8 KiB |
1
icons/kaldi/kaldi-plain-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#8c6432" d="M12.703 49.309c-2.595-.003-4.738.62-6.766 1.966C3.551 52.86 1.89 55.22.891 58.432.177 60.729.006 61.993 0 65.035c-.005 2.725.07 3.496.353 3.682.237.154.669-.151.669-.473 0-.577.448-.207.716.59.177.526.439.941.785 1.242.497.431 1.437.748 1.635.551.051-.051.114-1.573.139-3.383l.045-3.29h-.485c-.918 0-1.803.908-2.203 2.26-.176.596-.286.755-.521.755-.293 0-.295-.041-.217-2.621.104-3.454.543-5.45 1.713-7.79 1.253-2.504 2.763-4.045 5.068-5.173 1.776-.87 2.903-1.114 5.098-1.106 2.153.008 3.482.313 5.148 1.18 2.705 1.407 4.47 3.921 5.358 7.625.29 1.207.323 1.705.316 4.654-.008 3.509-.125 4.563-.511 4.637-.176.034-.259-.11-.334-.574-.169-1.032-.744-1.935-1.452-2.278-.341-.165-.683-.262-.76-.214-.076.047-.182.392-.236.765-.053.374-.317 1.772-.584 3.108-.561 2.809-.57 2.912-.234 3 1.255.328 2.452-.49 3.008-2.053.257-.724.619-.973.619-.428 0 .377.391.527.664.254.269-.269.57-1.994.785-4.482.273-3.162-.191-6.703-1.195-9.117-1.937-4.657-5.555-7.043-10.684-7.047zm51.238 1.47c-.241.007-.413.156-.873.633-.758.786-1.718 2.383-4.015 6.674-2.124 3.968-3.546 6.334-6.03 10.027-1.143 1.7-2.204 3.374-2.359 3.719-.279.622-.278.633-.002 1.006.424.572 1.186 1.04 1.533.941.502-.142.984-.779 2.225-2.941 1.422-2.478 2.029-3.411 2.281-3.508.103-.04.345.032.537.158.429.281.711.245 3.225-.416 2.274-.597 5.379-1.145 6.14-1.082l.538.045 1.363 2.729c.75 1.5 1.548 3.014 1.775 3.363.591.91 1.672 2.03 2.174 2.254.542.242 1.042.136 1.53-.328.784-.746.638-1.428-.579-2.703-1.032-1.083-1.527-1.804-2.517-3.682-.98-1.857-1.837-3.94-3.213-7.807-2.267-6.37-2.227-6.241-2.242-7.379-.014-.958-.049-1.084-.373-1.316a2.617 2.617 0 0 0-.84-.354 1.242 1.242 0 0 0-.278-.033zm62.948.055c-.594-.004-1.426.613-1.631 1.28-.182.59-.768 4.051-1.13 6.67-1.327 9.636-1.418 10.57-1.224 12.423.157 1.493.355 2.016.87 2.3.428.238.908.16 1.466-.238.575-.409.706-1.056.53-2.615-.39-3.444.264-9.602 1.597-15.04.47-1.92.68-3.043.623-3.343-.136-.72-.46-1.242-.865-1.396a.673.673 0 0 0-.236-.041zm-93.45.127c-.39.077-.84.388-1.033.762-.434.838-1.067 5.486-1.883 13.81-.205 2.093-.525 4.695-.713 5.785-.392 2.28-.331 2.73.413 3.053.246.107.46.198.476.201a2.94 2.94 0 0 0 .393-.16c.756-.345 1.138-1.656 1.37-4.725.222-2.904.597-4.117 1.39-4.478.318-.145.488-.104 1.295.314.51.265 1.91 1.225 3.109 2.131 6.65 5.031 7.67 5.696 9.17 5.975.99.184 1.9-.433 2.133-1.445.209-.908.118-.999-1.102-1.102-1.825-.154-2.779-.719-8.057-4.771-1.798-1.382-3.389-2.593-3.535-2.69-.24-.16-.134-.287 1.15-1.389 5.482-4.701 7.677-6.868 8.258-8.15.263-.578.263-.636.036-1.115a2.315 2.315 0 0 0-1.229-1.112c-.398-.143-.8.277-1.72 1.801-.784 1.297-1.242 1.818-3.965 4.518-3.436 3.405-5.965 5.473-6.044 4.941-.145-.988.64-6.873 1.26-9.445.388-1.607.148-2.41-.81-2.701a.753.753 0 0 0-.361-.008zm47.887 0c-.159.004-.331.035-.517.094-.945.299-1.036.612-1.463 5.072-.585 6.107-1.485 13.462-1.873 15.312-.28 1.33.023 2.225.867 2.575.36.15.8.069 2.512-.453 3.264-.996 5.955-1.349 9.513-1.247 2.404.07 2.597.057 3.164-.23.82-.413 1.2-1.167.96-1.895-.244-.736-.638-.872-1.907-.66-.568.096-1.937.236-3.043.31-2.734.187-3.441.262-5.553.593-1 .157-2.163.266-2.584.242l-.765-.045-.043-.94c-.064-1.435.846-9.029 2-16.705.107-.71.085-.918-.133-1.293-.294-.505-.657-.742-1.135-.73zm27.172.176c-.728.019-1.575.063-2.586.127-1.977.124-4.254.194-5.059.156-1.83-.088-2.346.13-2.78 1.174-.2.48.135.938.98 1.342.639.305.683.363.724.943.025.34-.086 1.438-.248 2.441-.434 2.699-.98 7.466-1.226 10.725-.222 2.934-.347 3.636-.8 4.525-.22.434-.23.57-.073.942.1.239.394.613.652.83.596.502.918.441 2.66-.494 1.002-.539 1.854-.844 3.738-1.34 2.72-.716 4.24-1.244 5.989-2.08 4.045-1.934 7.041-5.137 7.937-8.488.322-1.205.332-3.361.02-4.551-.705-2.688-2.668-4.777-5.371-5.717-1.255-.436-2.372-.593-4.557-.535zm-.1 2.197c1.17.013 2.189.086 2.737.215 1.944.458 3.652 1.75 4.4 3.326.322.679.409 1.094.465 2.246.082 1.685-.102 2.655-.766 4.043-.933 1.953-2.924 3.864-5.343 5.129-1.527.798-2.69 1.22-5.444 1.975-2.265.62-3.404.732-3.55.35-.164-.427-.089-3.786.134-5.981.218-2.147 1.278-9.864 1.447-10.54.1-.397.173-.416 2.28-.619 1.15-.11 2.471-.157 3.64-.144zm-45.048 1.43c.105 0 2.854 8.086 2.9 8.529.025.244-.246.326-2.484.756-1.382.265-3.127.575-3.877.69-.75.113-1.516.252-1.702.306l-.337.098.25-.487c.137-.268 1.139-2.167 2.226-4.22 1.087-2.054 2.19-4.17 2.451-4.704.262-.533.52-.968.573-.968zm-52.202 3.25c-3.096.058-5.375 2.63-5.959 6.728-.217 1.53-.18 5.163.067 6.584.662 3.798 2.853 6.729 5.435 7.274 1.46.308 2.86-.165 4.305-1.453 1.516-1.352 2.565-3.078 3.389-5.577.542-1.645.82-3.153 1.011-5.463.269-3.24-.097-4.61-1.695-6.341-1.03-1.117-1.907-1.524-3.398-1.582-.715-.028-1.137.008-1.118.097.018.08.14.434.27.79.367.995.441 4.62.14 6.964-.222 1.735-.534 2.863-1.427 5.168-.163.42-.23 1.194-.25 2.873l-.025 2.297-.131-1.652c-.159-2.007-.001-3.281.588-4.752.8-1.998 1.05-3.708 1.033-7.022-.024-4.46-.256-4.97-2.235-4.933z"/></svg>
|
After Width: | Height: | Size: 4.8 KiB |
1
icons/kaldi/kaldi-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#8c6432" d="M64.008.008a45.11 45.11 0 0 0-2.723.111C56.417.5 51.248 1.55 47.107 3c-3.064 1.073-6.47 2.647-7.847 3.625-.418.297-1.14.759-1.604 1.025-.868.5-2.165 1.4-4.115 2.86-1.596 1.195-5.438 4.684-6.195 5.625a84.743 84.743 0 0 1-1.672 1.978c-1.356 1.557-2.445 2.96-2.445 3.15 0 .085-.742 1.27-1.647 2.635-2.163 3.264-4.992 8.928-6.088 12.188-3.09 9.193-4.35 15.05-4.935 22.953-.3 4.035-.385 11.861-.168 15.273.106 1.671.263 4.265.35 5.764.219 3.803.616 4.615 2.257 4.615 1.37 0 1.959-.677 1.959-2.252 0-1.01.111-1.123 1.1-1.123.621 0 1.095.363 1.095.838 0 .675.871 3.25 1.62 4.787 1.68 3.453 4.593 5.646 8.12 6.114.928.123 1.773-.185 1.98-.721.115-.3.587-20.54.595-25.541.005-3.244-.016-3.292-1.557-3.26-2.36.049-4.446 1.124-6.803 3.504-1.05 1.06-1.508 1.68-2.005 2.72-.905 1.891-1.54 3.676-1.862 5.233-.151.734-.355 1.433-.455 1.553-.211.254-1.542.291-1.984.055-.259-.139-.324-.49-.424-2.323-.292-5.345-.036-14.699.516-18.865.84-6.344 2.833-14.119 5.04-19.66 2.1-5.27 6.083-11.82 9.788-16.092 4.418-5.096 10.725-9.488 17.219-11.992 1.113-.43 2.252-.891 2.53-1.025 1.218-.588 5.217-1.512 8.862-2.047 2.438-.358 10.022-.504 12.76-.246 3.949.371 9.445 1.46 10.765 2.134.288.147 1.157.494 1.93.77 5.563 1.985 10.84 5.36 14.918 9.539 2.125 2.178 3.51 3.804 3.928 4.613.168.325.702 1.16 1.187 1.856 1.866 2.677 3.484 5.793 5.172 9.957.635 1.565 1.994 5.82 1.994 6.242 0 .17.188 1.02.416 1.887 1.853 7.02 2.722 16.608 2.3 25.373-.323 6.67-1.353 15.405-1.893 16.056-.264.318-1.577.293-1.907-.037-.15-.15-.265-.55-.265-.922 0-1.19-.65-4.04-1.225-5.369-.804-1.859-2.062-3.803-2.973-4.592-1.136-.984-3.28-2.009-4.457-2.13-1.616-.167-1.431-.66-2.902 7.71-.236 1.346-1.188 6.317-2.115 11.047-.945 4.823-1.686 9.027-1.686 9.573 0 .908.032.991.502 1.234.277.143.904.372 1.393.51 1.255.353 3.292.226 4.71-.295 1.436-.527 3.019-1.66 4.384-3.137 1.264-1.368 2.589-3.883 3.384-6.426.694-2.219.823-2.455 1.38-2.52.716-.082.954.229.954 1.243 0 .79.06.942.52 1.328.798.672 1.815.615 2.662-.15.628-.568.666-.667 1.094-2.826 1.038-5.246 1.93-12.01 2.3-17.485.225-3.312.225-11.4 0-14.459-.483-6.597-1.683-13.344-3.406-19.154-1.311-4.424-3.522-9.436-5.695-12.91a80.226 80.226 0 0 1-1.52-2.531c-.704-1.252-1.122-1.8-3.463-4.538-2.218-2.594-5.423-5.474-8.12-7.298-1.08-.73-2.17-1.498-2.425-1.704-.678-.55-4.108-2.317-6.02-3.103C83.11 2.272 77.84.939 73.265.387c-2.33-.282-6.187-.425-9.258-.38zm-4.1 37.615c-2.275-.005-4.899.338-7.137.99-4.308 1.256-6.66 2.61-9.394 5.406-2.174 2.224-2.942 3.16-3.924 4.786-.384.636-.7 1.174-.7 1.197 0 .023-.445.811-.99 1.754-1.211 2.098-1.761 3.4-2.863 6.777-1.314 4.03-1.762 6.192-2.298 11.055-1.388 12.581-.233 27.512 2.681 34.685.238.587.434 1.162.434 1.278 0 .592 1.568 4.032 2.955 6.48.394.696.956 1.711 1.25 2.254 1.387 2.564 5.026 6.852 7.607 8.967 2.804 2.296 7.017 4.125 10.705 4.646.564.08 2.28.122 3.81.092 2.867-.055 3.31-.141 5.401-1.056 3.921-1.716 5.82-3.135 10.559-7.881 2.24-2.243 3.412-3.571 4.41-4.996 1.916-2.736 2.89-4.275 3.29-5.196.189-.437.837-1.82 1.44-3.074 1.271-2.64 2.915-6.531 2.915-6.9 0-.14.336-1.246.746-2.457 1.445-4.269 2.985-11.23 3.472-15.703.684-6.27.854-8.154 1.02-11.268.372-7-.35-12.69-2.025-15.988-.525-1.032-1.225-2.19-3.018-4.98-1.165-1.815-5.297-5.86-7.367-7.212-2.985-1.95-4.99-2.61-8.608-2.834-5.207-.321-6.834-.183-6.834.574 0 .117.34.865.758 1.663.882 1.684 1.433 4.098 1.8 7.894.293 3.015.294 17.383.003 19.998-1.204 10.813-2.023 14.654-4.418 20.695-.371.937-.676 1.777-.676 1.868 0 .09-.486 1.276-1.08 2.638-.748 1.713-1.141 2.867-1.277 3.743-.274 1.76-.476 7.971-.405 12.404.077 4.777-.178 4.137-.455-1.145-.214-4.083-.136-8.531.188-10.832.24-1.702 1.148-4.721 2.11-7.01.409-.974.853-2.113.985-2.53.134-.418.509-1.486.835-2.374.92-2.511 2.145-8.455 2.935-14.25.259-1.895.297-3.447.28-11.392-.02-9.172-.157-12.319-.663-15.233-.77-4.437-2.093-6.367-4.894-7.138-.957-.264-2.198-.392-3.563-.395z"/></svg>
|
After Width: | Height: | Size: 3.8 KiB |
1
icons/linuxmint/linuxmint-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#69b53f" d="M29.736 64a14.264 14.264 0 0 1-14.264 14.264A14.264 14.264 0 0 1 1.21 64a14.264 14.264 0 0 1 14.263-14.264A14.264 14.264 0 0 1 29.736 64" color="#000" style="-inkscape-stroke:none"/><path fill="#fff" d="M15.472 48.528C6.942 48.528 0 55.469 0 64s6.942 15.472 15.472 15.472c8.531 0 15.473-6.941 15.473-15.472s-6.942-15.472-15.473-15.472m0 2.417c7.225 0 13.055 5.83 13.055 13.055s-5.83 13.055-13.055 13.055A13.036 13.036 0 0 1 2.418 64c0-7.224 5.83-13.055 13.054-13.055" color="#000" style="-inkscape-stroke:none"/><path fill="#f8f8f8" d="M7.01 56.143v10.879c0 2.656 2.18 4.835 4.836 4.835h7.253c2.656 0 4.835-2.179 4.835-4.835v-6.044a3.645 3.645 0 0 0-3.627-3.626c-.929 0-1.772.367-2.417.95a3.6 3.6 0 0 0-2.418-.95 3.645 3.645 0 0 0-3.626 3.626v6.044h2.418v-6.044a1.19 1.19 0 0 1 1.208-1.209 1.19 1.19 0 0 1 1.21 1.21v6.043h2.417v-6.044a1.19 1.19 0 0 1 1.208-1.209 1.19 1.19 0 0 1 1.21 1.21v6.043a2.4 2.4 0 0 1-2.418 2.417h-7.253a2.4 2.4 0 0 1-2.418-2.417V56.143Z" color="#000" style="-inkscape-stroke:none"/><path fill="#fff" stroke="#fff" stroke-width=".319" d="m37.796 54.209-2.098.36v14.08q0 1.671.812 2.46.813.79 2.753.835l.293-1.76a7 7 0 0 1-.835-.158 1.36 1.36 0 0 1-.541-.316 1.2 1.2 0 0 1-.294-.541 3.4 3.4 0 0 1-.09-.858zm4.903.902q-.565 0-.97.384-.384.36-.384.993 0 .632.383 1.015.407.361.97.361.566 0 .948-.36.407-.384.407-1.016 0-.631-.407-.993a1.3 1.3 0 0 0-.947-.384zm61.18 0q-.565 0-.971.384-.384.36-.384.993 0 .632.384 1.015.405.361.97.361c.565 0 .692-.12.948-.36q.406-.384.406-1.016 0-.631-.406-.993a1.3 1.3 0 0 0-.948-.384zm19.04 1.241-2.098.362v10.47q0 1.172.18 2.075.204.88.678 1.49.474.608 1.24.924.79.294 1.986.294 1.016 0 1.805-.249.79-.225 1.106-.383l-.406-1.738q-.225.09-.813.316-.564.203-1.511.203-.542 0-.948-.135t-.677-.451q-.27-.339-.406-.903-.135-.587-.135-1.466v-5.416h4.445v-1.76h-4.445zM51.8 59.737q-1.558 0-2.753.203-1.197.203-1.918.384v11.394h2.098v-9.905a6 6 0 0 1 .948-.135 11 11 0 0 1 1.4-.09q.833 0 1.398.225.564.202.902.677.339.474.474 1.24.158.768.158 1.851v6.137h2.099V65.13q0-1.196-.226-2.189t-.79-1.692q-.54-.723-1.467-1.106-.924-.406-2.324-.406zm36.504 0q-1.557 0-2.753.203-1.173.203-1.895.384v11.394h2.098v-9.905a6 6 0 0 1 .948-.135 11 11 0 0 1 1.376-.09q.745 0 1.218.248.496.225.768.721.292.497.406 1.242.113.744.113 1.782v6.137h2.098V65.13q0-.767-.09-1.467a8 8 0 0 0-.271-1.286q.248-.225.925-.496.7-.294 1.76-.294.767 0 1.241.249.497.225.767.721.294.497.384 1.242.113.744.113 1.782v6.137h2.098V65.13q0-1.173-.18-2.166-.159-.993-.655-1.715-.474-.723-1.331-1.106-.858-.406-2.211-.406a5.2 5.2 0 0 0-1.309.158 7 7 0 0 0-1.106.338q-.496.18-.834.384-.34.202-.497.316a3.2 3.2 0 0 0-1.286-.88q-.767-.316-1.895-.316zm24.675 0q-1.557 0-2.753.203a27 27 0 0 0-1.918.384v11.394h2.099v-9.905a6 6 0 0 1 .948-.135 11 11 0 0 1 1.399-.09q.834 0 1.398.225.564.202.903.677.338.474.473 1.24.159.768.158 1.851v6.137h2.099V65.13q0-1.196-.226-2.189-.225-.993-.79-1.692-.541-.723-1.466-1.106-.926-.406-2.324-.406zm-71.317.248v11.733h2.098V59.985Zm17.92 0v6.589q0 1.196.249 2.189.248.969.812 1.692.564.722 1.489 1.128.925.384 2.279.384 1.557 0 2.73-.203a27 27 0 0 0 1.918-.384V59.985H66.96v9.906q-.112.045-.384.09-.248.023-.564.068-.315.023-.677.045-.36.022-.7.022-1.601 0-2.278-.925-.678-.925-.677-3.068v-6.138Zm11.522 0 3.88 5.573a95 95 0 0 0-2.188 3.047 29 29 0 0 0-1.873 3.113h2.166q.249-.473.61-1.082.36-.61.767-1.242.428-.654.88-1.286.45-.654.88-1.218.428.564.88 1.196.45.631.88 1.286.428.631.79 1.24.36.61.608 1.106h2.302a25.5 25.5 0 0 0-1.94-3.181 108 108 0 0 0-2.212-3.114l3.791-5.438H79.09l-2.82 4.107-2.798-4.107Zm31.737 0v11.733h2.099V59.985Z"/></svg>
|
After Width: | Height: | Size: 3.6 KiB |
1
icons/linuxmint/linuxmint-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#fff" d="M128 64a64 64 0 0 1-64 64A64 64 0 0 1 0 64 64 64 0 0 1 64 0a64 64 0 0 1 64 64"/><path fill="#69b53f" d="M118 64a54 54 0 0 1-54 54 54 54 0 0 1-54-54 54 54 0 0 1 54-54 54 54 0 0 1 54 54"/><path fill="#f8f8f8" d="M29 31.5v45a20.06 20.06 0 0 0 20 20h30a20.06 20.06 0 0 0 20-20v-25c-.05-8.25-6.75-14.95-15-15-3.7 0-7.25 1.4-10 3.95-2.75-2.5-6.3-3.9-10-3.95-8.25.05-14.95 6.75-15 15v25h10v-25c0-2.75 2.25-5 5-5s5 2.25 5 5v25h10v-25c0-2.75 2.25-5 5-5s5 2.25 5 5v25c.05 5.5-4.4 9.95-9.85 10H49c-5.5.05-9.95-4.4-10-9.85V31.5z"/></svg>
|
After Width: | Height: | Size: 609 B |
1
icons/linuxmint/linuxmint-plain-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#69b53f" d="M15.473 48.527C6.942 48.527 0 55.47 0 64s6.942 15.473 15.473 15.473c8.53 0 15.472-6.942 15.472-15.473 0-8.53-6.942-15.473-15.472-15.473m22.324 5.682-2.1.361v14.08q0 1.67.813 2.46.812.788 2.754.833l.293-1.76a7 7 0 0 1-.836-.158 1.35 1.35 0 0 1-.541-.314 1.2 1.2 0 0 1-.293-.543 3.4 3.4 0 0 1-.09-.857zm4.902.902q-.565.001-.97.385-.384.36-.383.992 0 .632.383 1.016.406.36.97.361c.564.001.692-.12.947-.361q.407-.384.407-1.016 0-.63-.407-.992a1.3 1.3 0 0 0-.947-.385m61.18 0q-.564.001-.97.385-.386.36-.386.992.001.632.385 1.016.407.36.97.361.565 0 .948-.361.405-.384.406-1.016 0-.63-.406-.992a1.3 1.3 0 0 0-.947-.385M7.012 56.143h2.416V67.02a2.4 2.4 0 0 0 2.418 2.418H19.1a2.4 2.4 0 0 0 2.416-2.418v-6.04c0-.682-.527-1.21-1.21-1.21a1.19 1.19 0 0 0-1.206 1.21v6.042h-2.418V60.98c0-.682-.527-1.21-1.21-1.21-.681 0-1.208.528-1.208 1.21v6.042h-2.418V60.98a3.646 3.646 0 0 1 3.627-3.627 3.6 3.6 0 0 1 2.418.95 3.6 3.6 0 0 1 2.416-.95 3.646 3.646 0 0 1 3.627 3.627v6.042c0 2.657-2.178 4.836-4.834 4.836h-7.254c-2.656 0-4.834-2.18-4.834-4.836zm115.908.209-2.1.36v10.472q.001 1.173.182 2.076.202.879.676 1.488.474.61 1.242.926.789.293 1.984.293 1.016 0 1.807-.248.79-.226 1.105-.385l-.406-1.736q-.225.09-.812.316-.564.203-1.512.203a3 3 0 0 1-.947-.137 1.5 1.5 0 0 1-.678-.45q-.27-.339-.406-.903-.135-.587-.135-1.467v-5.414h4.445v-1.762h-4.445zm-71.121 3.384q-1.558 0-2.754.203t-1.918.385V71.72h2.1v-9.906q.112-.023.36-.067.271-.045.587-.068a10 10 0 0 1 1.398-.09q.837 0 1.4.224.565.204.903.678t.473 1.24q.158.768.158 1.852v6.137h2.1v-6.59a10 10 0 0 0-.227-2.19q-.225-.993-.79-1.693-.541-.722-1.466-1.105-.926-.407-2.324-.407zm36.504 0q-1.557 0-2.752.203-1.174.204-1.897.385V71.72h2.098v-9.906q.09-.023.361-.067.272-.045.588-.068a10 10 0 0 1 1.375-.09q.745 0 1.219.248.496.225.767.72.294.498.407 1.243.113.744.113 1.783v6.137h2.098v-6.59q0-.767-.09-1.467a8 8 0 0 0-.272-1.287q.25-.226.926-.496.7-.293 1.76-.293.767 0 1.242.248.495.225.766.72.293.498.384 1.243.113.744.112 1.783v6.137h2.1V65.13q-.001-1.174-.182-2.168-.159-.993-.655-1.715-.472-.722-1.33-1.105-.857-.407-2.21-.407a5.2 5.2 0 0 0-1.31.159q-.608.135-1.105.34-.496.18-.836.382-.337.204-.496.317a3.2 3.2 0 0 0-1.287-.881q-.766-.316-1.894-.317zm24.676 0q-1.558 0-2.754.203a27 27 0 0 0-1.918.385V71.72h2.1v-9.906q.11-.023.359-.067.27-.045.588-.068a10 10 0 0 1 1.398-.09q.835 0 1.398.224.564.204.903.678.338.474.474 1.24.159.768.159 1.852v6.137h2.097v-6.59q0-1.196-.224-2.19-.225-.993-.79-1.693-.541-.722-1.466-1.105-.926-.407-2.324-.407zm-71.319.248V71.72h2.1V59.984zm17.922 0v6.59q0 1.195.248 2.188.249.971.813 1.693.563.722 1.488 1.129.926.383 2.28.383 1.556 0 2.73-.203a27 27 0 0 0 1.918-.383V59.984h-2.1v9.907a2 2 0 0 1-.383.09q-.248.023-.564.068-.315.023-.676.045-.362.023-.701.023-1.601 0-2.278-.926-.676-.924-.677-3.068v-6.139zm11.522 0 3.88 5.575a95 95 0 0 0-2.19 3.046 29 29 0 0 0-1.872 3.114h2.166q.248-.474.61-1.084.36-.61.767-1.24.428-.655.879-1.288.451-.653.88-1.216.429.564.88 1.195t.88 1.285q.429.632.79 1.242.36.61.609 1.106h2.303a25.5 25.5 0 0 0-1.942-3.182 108 108 0 0 0-2.21-3.113l3.79-5.44H79.09l-2.82 4.108-2.797-4.108zm31.736 0V71.72h2.1V59.984z"/></svg>
|
After Width: | Height: | Size: 3.1 KiB |
1
icons/linuxmint/linuxmint-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#69b53f" d="M64 0A64 64 0 0 0 0 64a64 64 0 0 0 64 64 64 64 0 0 0 64-64A64 64 0 0 0 64 0M29 31.5h10v45.15c.05 5.45 4.5 9.9 10 9.85h30.15c5.45-.05 9.9-4.5 9.85-10v-25c0-2.75-2.25-5-5-5s-5 2.25-5 5v25H69v-25c0-2.75-2.25-5-5-5s-5 2.25-5 5v25H49v-25c.05-8.25 6.75-14.95 15-15 3.7.05 7.25 1.45 10 3.95 2.75-2.55 6.3-3.95 10-3.95 8.25.05 14.95 6.75 15 15v25a20.06 20.06 0 0 1-20 20H49a20.06 20.06 0 0 1-20-20z"/></svg>
|
After Width: | Height: | Size: 486 B |
1
icons/mapbox/mapbox-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M14.402 49.598C6.45 49.598 0 56.043 0 64c0 7.957 6.45 14.402 14.402 14.402 7.957 0 14.407-6.445 14.407-14.402 0-7.957-6.45-14.402-14.407-14.402Zm74.34 3.191a.357.357 0 0 0-.355.356v16.687c0 .195.16.356.355.356h2.172a.36.36 0 0 0 .356-.356v-1.148a5.889 5.889 0 0 0 4.261 1.828c3.387 0 6.125-2.914 6.125-6.512 0-3.598-2.738-6.512-6.125-6.512a5.915 5.915 0 0 0-4.261 1.828v-6.171a.36.36 0 0 0-.356-.356Zm-72.847 2.39a7.522 7.522 0 0 1 5.12 2.212c2.868 2.851 2.965 7.402.227 10.14-4.926 4.926-13.722 3.356-13.722 3.356s-1.59-8.782 3.351-13.723c1.371-1.371 3.188-2.027 5.024-1.984Zm25.94 2.31a4.158 4.158 0 0 0-3.355 1.714v-1.035a.357.357 0 0 0-.355-.355h-2.172a.357.357 0 0 0-.355.355v11.664c0 .195.16.356.355.356h2.172c.195 0 .355-.16.355-.356v-6.98c.083-1.559 1.168-2.805 2.497-2.805 1.375 0 2.527 1.148 2.527 2.656v7.129c0 .195.16.356.355.356h2.188c.195 0 .355-.16.355-.356l-.015-7.258c.195-1.426 1.215-2.527 2.465-2.527 1.375 0 2.527 1.148 2.527 2.656v7.129c0 .195.16.356.355.356h2.188c.195 0 .355-.16.355-.356l-.015-8.02c0-2.398-2.04-4.324-4.551-4.324a4.235 4.235 0 0 0-3.793 2.43 4.568 4.568 0 0 0-4.082-2.43Zm20.497 0c-3.387 0-6.125 2.913-6.125 6.511 0 3.598 2.738 6.512 6.125 6.512 1.602 0 3.14-.664 4.262-1.828v1.148c0 .195.16.356.355.356h2.172a.36.36 0 0 0 .356-.356V58.168a.36.36 0 0 0-.356-.355H66.95a.357.357 0 0 0-.355.355v1.148a5.896 5.896 0 0 0-4.262-1.828Zm17.629 0a5.915 5.915 0 0 0-4.262 1.827v-1.148a.36.36 0 0 0-.36-.355h-2.167a.36.36 0 0 0-.36.355v16.687a.36.36 0 0 0 .36.356h2.168a.36.36 0 0 0 .36-.356v-6.171a5.889 5.889 0 0 0 4.26 1.828c3.388 0 6.126-2.914 6.126-6.512 0-3.598-2.738-6.512-6.125-6.512Zm29.68 0c-3.66 0-6.625 2.913-6.625 6.511 0 3.598 2.964 6.512 6.625 6.512 3.664 0 6.629-2.914 6.629-6.512 0-3.598-2.965-6.512-6.63-6.512Zm15.492.304a.534.534 0 0 0-.469.262l-2.187 3.675-2.188-3.66a.542.542 0 0 0-.473-.258h-2.511a.326.326 0 0 0-.274.5l3.727 5.672-3.758 5.72a.336.336 0 0 0 .094.452c.05.031.117.051.18.051h2.511a.54.54 0 0 0 .469-.262l2.238-3.726 2.235 3.726a.544.544 0 0 0 .468.262h2.48c.18 0 .325-.148.325-.324a.435.435 0 0 0-.047-.195l-3.762-5.72 3.727-5.671a.333.333 0 0 0-.098-.453.331.331 0 0 0-.175-.051Zm-109.074.246-1.41 2.898-2.903 1.41 2.902 1.41 1.41 2.9 1.407-2.9 2.902-1.41-2.902-1.41Zm46.773 2.055c2.059 0 3.727 1.718 3.746 3.86v.093c-.02 2.14-1.687 3.86-3.746 3.86-2.074 0-3.742-1.75-3.742-3.907 0-2.156 1.687-3.906 3.742-3.906Zm16.625 0c2.074 0 3.742 1.75 3.742 3.906s-1.668 3.906-3.742 3.906c-2.059 0-3.727-1.719-3.742-3.86v-.093c.031-2.14 1.683-3.86 3.742-3.86Zm15.57 0c2.075 0 3.743 1.75 3.743 3.906s-1.684 3.906-3.743 3.906c-2.058 0-3.726-1.719-3.742-3.86v-.093c.031-2.14 1.684-3.86 3.742-3.86Zm14.598 0c2.059 0 3.742 1.75 3.742 3.906s-1.683 3.906-3.742 3.906c-2.074 0-3.742-1.75-3.742-3.906s1.687-3.906 3.742-3.906Zm0 0" /></svg>
|
After Width: | Height: | Size: 2.8 KiB |
1
icons/nats/nats-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#34a574" d="M63.998 0h61.82v50.12h-61.82z"/><path fill="#27aae1" d="M2.182 0h61.816v50.12H2.182Z"/><path fill="#8dc63f" d="M63.998 50.164h61.82v50.113h-61.82z"/><path fill="#375c93" d="M2.182 50.164h61.816v50.113H2.182Z"/><path fill="#8dc63f" d="M54.914 100.004 85.16 128v-27.996z"/><path fill="#375c93" d="m63.998 100.004.322 8.812-9.685-9.042z"/><path fill="#fff" d="M89.608 64.802V23.315h14.779v53.651H81.993l-45.21-42.223v42.269H21.958V23.316h23.177l44.472 41.486z"/></svg>
|
After Width: | Height: | Size: 552 B |
1
icons/nats/nats-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#27aae1" d="M125.84 0H2.16v100.305h53l9.137 8.542v-.138L85.147 128v-27.695h40.693V0Zm-21.402 77.067h-22.41l-45.243-42.3v42.3H21.951V23.332h23.194l44.504 41.515V23.332h14.79v53.735Z"/></svg>
|
After Width: | Height: | Size: 264 B |
1
icons/nodered/nodered-line.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#8f0000" d="M64 0 8.61 32.033v63.979L64 128l55.39-31.986V32.053zm0 5.79 50.834 29.153v32.12h-21.43c-3.478 0-6.457 2.904-6.457 6.382v.856c-11.812-.088-15.335-3.145-19.728-6.987-3.652-3.193-8.226-6.688-17.426-8.148 1.715-1.72 2.747-3.675 3.666-5.342.988-1.791 1.882-3.21 3.31-4.191 1.114-.764 3.013-1.223 5.473-1.37v.803c0 3.479 2.702 6.325 6.18 6.325h25.182c3.478 0 6.6-2.846 6.6-6.325V42.88c0-3.478-3.108-6.281-6.587-6.281H68.434c-3.479 0-6.192 2.803-6.192 6.28v1.128c-3.253.16-6.021.799-7.902 2.09-2.327 1.597-3.601 3.765-4.643 5.654-1.041 1.889-1.896 3.514-3.136 4.652-1.059.97-2.54 1.636-4.95 1.94-.311-3.198-3.09-5.505-6.363-5.524H13.166V34.926zm4.434 35.16h25.183c1.175 0 2.035.754 2.035 1.929v6.187c0 1.175-.872 1.973-2.047 1.973H68.422c-1.175 0-2.131-.798-2.131-1.973V42.88c0-1.175.968-1.93 2.143-1.93zM13.166 56.774h22.082c1.174 0 2.047.974 2.047 2.149v6.187c0 1.175-.872 1.952-2.047 1.952H13.166zm28.568 5.983c14.187.223 18.1 3.798 22.66 7.787 4.378 3.828 9.764 7.844 22.555 8.014v1.074c0 3.478 2.979 6.222 6.457 6.222h21.428v7.262L64 122.211 13.166 93.115v-21.7H35.25c3.478 0 6.482-2.825 6.482-6.304zm51.674 8.656h21.426v10.09H93.408c-1.174 0-2.107-.804-2.107-1.979v-6.08c0-1.174.933-2.03 2.107-2.03z"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
icons/nodered/nodered-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#8f0000" d="m64 0 55.39 32.053v63.96L64 128 8.61 96.012V32.034z"/><path fill="#fff" d="M64.023 5.3a.988.988 0 0 0-.517.132l-50.1 28.873a.987.987 0 0 0-.494.855v57.746c0 .354.188.679.494.856l50.1 28.877a.988.988 0 0 0 .988 0l50.022-28.88c.306-.176.523-.501.523-.855V35.16c0-.353-.217-.679-.523-.855L64.494 5.432a.986.986 0 0 0-.47-.131zM64 7.43l49.06 28.3v31.332H93.405c-3.478 0-6.457 2.905-6.457 6.383v.856c-11.812-.088-15.335-3.145-19.728-6.987-3.652-3.193-8.226-6.688-17.426-8.148 1.715-1.72 2.747-3.675 3.666-5.342.988-1.791 1.881-3.21 3.31-4.191 1.114-.764 3.013-1.223 5.473-1.37v.803c0 3.479 2.702 6.325 6.18 6.325h25.182c3.478 0 6.6-2.846 6.6-6.325V42.88c0-3.478-3.108-6.281-6.587-6.281H68.434c-3.479 0-6.192 2.803-6.192 6.28v1.128c-3.253.16-6.021.799-7.902 2.09-2.327 1.597-3.601 3.765-4.643 5.654-1.041 1.889-1.896 3.514-3.136 4.652-1.059.97-2.54 1.636-4.95 1.94-.311-3.198-3.09-5.505-6.363-5.524H14.94V35.73zm4.434 33.52h25.183c1.175 0 2.035.754 2.035 1.929v6.187c0 1.175-.872 1.973-2.047 1.973H68.422c-1.175 0-2.131-.798-2.131-1.973V42.88c0-1.175.968-1.93 2.143-1.93zM14.94 56.774h20.307c1.174 0 2.047.974 2.047 2.149v6.187c0 1.175-.872 1.952-2.047 1.951H14.941zm26.793 5.983c14.187.223 18.1 3.798 22.66 7.787 4.378 3.828 9.764 7.844 22.555 8.014v1.074c0 3.478 2.979 6.222 6.457 6.222h19.655v6.479L64 120.641 14.941 92.334v-20.92H35.25c3.478 0 6.482-2.824 6.482-6.303zm51.674 8.656h19.655v10.09H93.408c-1.174 0-2.107-.804-2.107-1.979v-6.08c0-1.174.933-2.03 2.107-2.03z"/><path fill="#720101" d="m99.035 39.33-.006.027c.733 1.004 1.174 2.215 1.174 3.522v6.187c0 3.479-3.121 6.325-6.6 6.325H68.422c-3.478 0-6.18-2.846-6.18-6.325v-.802c-2.46.146-4.36.605-5.472 1.369-1.43.98-2.323 2.4-3.311 4.191-.92 1.667-1.95 3.622-3.666 5.342 9.2 1.46 13.774 4.955 17.426 8.148 4.393 3.842 7.916 6.9 19.728 6.987v-.856c0-3.478 2.979-6.383 6.457-6.383h19.657V55.795zm-57.3 23.428-.003 2.353c0 3.479-3.004 6.303-6.482 6.303H14.941v.03l40.674 44.359L64 120.64l49.06-28.307v-6.479H93.407c-3.478 0-6.457-2.744-6.457-6.222v-1.074c-12.79-.17-18.177-4.186-22.554-8.014-4.561-3.989-8.474-7.564-22.66-7.787z"/></svg>
|
After Width: | Height: | Size: 2.1 KiB |
1
icons/nodered/nodered-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#8f0000" d="M64 0 8.61 32.033v63.979L64 128l55.39-31.986V32.053zm.023 5.3a.986.986 0 0 1 .471.132l50.022 28.873c.306.176.523.502.523.855v57.744c0 .354-.217.68-.523.856l-50.022 28.879a.988.988 0 0 1-.988 0l-50.1-28.877a.987.987 0 0 1-.494-.856V35.16c0-.353.188-.679.494-.855l50.1-28.873a.988.988 0 0 1 .517-.131zM64 7.43l-49.06 28.3v17.088h20.308c3.273.019 6.052 2.326 6.363 5.524 2.41-.304 3.891-.97 4.95-1.94 1.24-1.138 2.095-2.763 3.136-4.652 1.042-1.889 2.316-4.057 4.643-5.654 1.88-1.291 4.649-1.93 7.902-2.09v-1.127c0-3.478 2.713-6.281 6.192-6.281h25.183c3.479 0 6.586 2.803 6.586 6.28v6.188c0 3.479-3.121 6.325-6.6 6.325H68.423c-3.478 0-6.18-2.846-6.18-6.325v-.802c-2.46.146-4.36.605-5.472 1.369-1.43.98-2.323 2.4-3.311 4.191-.92 1.667-1.95 3.622-3.666 5.342 9.2 1.46 13.774 4.955 17.426 8.148 4.393 3.842 7.916 6.9 19.728 6.987v-.856c0-3.478 2.979-6.383 6.457-6.383h19.657V35.73zm4.434 33.52c-1.175 0-2.143.754-2.143 1.929v6.187c0 1.175.956 1.973 2.13 1.973h25.184c1.175 0 2.047-.798 2.047-1.973V42.88c0-1.175-.86-1.93-2.035-1.93zM14.94 56.774v10.287h20.307c1.175 0 2.047-.776 2.047-1.95v-6.188c0-1.175-.873-2.149-2.047-2.149zm26.793 5.983-.002 2.353c0 3.479-3.004 6.303-6.482 6.303H14.941v20.92L64 120.641l49.06-28.307v-6.479H93.407c-3.478 0-6.457-2.744-6.457-6.222v-1.074c-12.79-.17-18.177-4.186-22.554-8.014-4.562-3.989-8.474-7.564-22.66-7.787zm51.674 8.656c-1.174 0-2.107.857-2.107 2.031v6.08c0 1.175.933 1.979 2.107 1.979h19.655v-10.09z"/></svg>
|
After Width: | Height: | Size: 1.5 KiB |
1
icons/primeng/primeng-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><mask id="a" maskUnits="userSpaceOnUse"><path fill="#fff" stroke-width="2.119" d="M28.3 0 .073 10.026l4.305 37.176L28.3 60.4l23.92-13.198 4.305-37.176Z"/></mask></defs><path fill="#dd0031" d="M64 0 4.181 21.248l9.124 78.784L64 128l50.695-27.968 9.124-78.784Z"/><path fill="#c3002f" fill-rule="evenodd" d="M28.3 0v6.704-.03V60.4l23.922-13.197 4.305-37.177Z" clip-rule="evenodd" mask="url(#a)" transform="translate(4.027)scale(2.1192)"/><path fill="#fff" d="m44.553 22.463-8.926 8.924 13.389 1.275 4.463-10.2h-8.926zm10.84 0-5.08 12.06-22.975-1.86 3.826 15.933L58.58 58.795h3.826V22.463zm9.564 0v36.332h4.463l27.416-10.2 3.826-15.933-23.611 1.863-5.08-12.062zm8.926 0 4.463 10.2 13.39-1.276-8.927-8.924zM31.8 51.146v21.67l15.303 12.748v-19.76l4.462-6.372-5.738 1.275-7.014-7.012zm63.76 0-7.014 2.55-7.014 7.011-5.738-1.275 4.465 6.373v19.76l15.3-12.749zm-41.522 8.192-5.086 7.664v28.74l3.815 5.748 4.45 4.47h12.716l4.45-4.47 3.815-5.748v-28.74l-5.086-7.664-3.18 1.916H57.22l-3.18-1.916zM38.814 81.102v8.287l8.29 8.285v-9.56zm49.733 0-8.287 7.011v9.56l8.287-8.284z"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
icons/primeng/primeng-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M64 0 4.182 21.248l9.123 78.783L64 128l50.695-27.969 9.123-78.783zM44.553 22.463h8.927l-4.464 10.2-13.389-1.276zm10.84 0h7.013v36.332H58.58l-27.416-10.2-3.826-15.933 22.974 1.861 5.08-12.06zm9.564 0h7.014l5.08 12.062 23.611-1.863-3.826 15.934L69.42 58.795h-4.463zm8.926 0h8.926l8.927 8.924-13.39 1.275-4.463-10.2zM31.8 51.146l7.012 2.55 7.013 7.011 5.738-1.275-4.46 6.373v19.76L31.8 72.815v-21.67zm63.76 0-.002 21.67-15.3 12.748v-19.76l-4.464-6.372 5.736 1.275 7.016-7.012zm-41.524 8.192h.002l3.182 1.916h12.71l3.18-1.916 5.086 7.664v28.74l-3.814 5.748-4.45 4.47H57.218l-4.45-4.47-3.816-5.748v-28.74l5.086-7.664zM38.814 81.102l8.29 7.011v9.56l-8.29-8.284zm49.733 0v8.287l-8.287 8.285v-9.56z"/></svg>
|
After Width: | Height: | Size: 771 B |
1
icons/proxmox/proxmox-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M32.332 21.426a12.54 12.54 0 0 0-8.855 3.676l20.488 22.515-20.488 22.52a12.3 12.3 0 0 0 8.855 3.75 12.28 12.28 0 0 0 9.156-4.051l11.336-12.461 8.856-9.758-8.856-9.68-11.336-12.46a12.28 12.28 0 0 0-9.156-4.051Zm63.23 0a12.28 12.28 0 0 0-9.156 4.05L75.07 37.939l-8.855 9.68 8.855 9.757 11.336 12.46a12.28 12.28 0 0 0 9.156 4.052 12.3 12.3 0 0 0 8.856-3.75L83.93 47.617l20.488-22.515a12.54 12.54 0 0 0-8.856-3.676Zm0 0" style="fill:#e57000"/><path d="m72.02 36.453-8.082 8.906-8.086-8.91-18.7-20.55a11.444 11.444 0 0 1 8.082-3.356c3.36 0 6.164 1.371 8.29 3.7l10.413 11.37 10.344-11.37a11.212 11.212 0 0 1 8.36-3.7c3.148 0 6.027 1.3 8.082 3.355Zm0 22.328-8.082-8.906-8.083 8.906-18.703 20.555a11.451 11.451 0 0 0 8.082 3.355c3.36 0 6.168-1.37 8.29-3.699l10.413-11.375 10.344 11.375a11.226 11.226 0 0 0 8.36 3.7c3.152 0 6.027-1.305 8.082-3.356Zm-70.594 41.32a1.408 1.408 0 0 0-1 .43A1.443 1.443 0 0 0 0 101.547v13.906c1.082-.027 1.98-.402 2.7-1.121.714-.723 1.09-1.629 1.116-2.719h7.676c1.09-.027 2-.398 2.727-1.12.726-.72 1.105-1.626 1.133-2.716v-3.816c-.028-1.09-.407-2-1.133-2.727-.727-.726-1.637-1.105-2.727-1.132Zm17.562 0a1.407 1.407 0 0 0-1.011.43 1.45 1.45 0 0 0-.415 1.016v13.906c1.083-.027 1.985-.402 2.708-1.121.726-.723 1.101-1.629 1.128-2.719v-.965h4.364l2.215 3.16c.355.508.804.91 1.34 1.2.554.297 1.171.449 1.796.445.32 0 .633-.039.93-.113.3-.074.582-.184.848-.324l-3.09-4.41a3.851 3.851 0 0 0 2.203-1.317c.57-.687.867-1.504.887-2.453v-2.875c-.028-1.09-.403-2-1.121-2.727-.723-.726-1.625-1.105-2.715-1.132Zm19.93 0c-1.09.028-1.996.407-2.715 1.133-.723.727-1.098 1.637-1.121 2.727v7.652c.023 1.09.398 1.996 1.121 2.719.719.719 1.625 1.094 2.715 1.121h7.652c1.09-.027 1.996-.402 2.72-1.121.718-.723 1.093-1.629 1.12-2.719v-7.652c-.027-1.09-.402-2-1.12-2.727-.724-.726-1.63-1.105-2.72-1.132Zm34.488 0c-.8 0-1.445.649-1.445 1.446v13.906c1.078-.027 1.98-.402 2.707-1.121.723-.723 1.102-1.629 1.129-2.719v-7.343c.387-.332.441-.31.496-.274a.306.306 0 0 1 .117.117l4.254 9.387c.164.34.504.563.879.57.18 0 .36-.05.512-.148.152-.102.28-.238.363-.399l4.258-9.41c.582-.027.61.055.613.157v7.343c.027 1.09.402 1.996 1.129 2.719.723.719 1.625 1.094 2.707 1.121v-13.906c0-.379-.148-.746-.418-1.02a1.397 1.397 0 0 0-1.008-.425h-2.41c-.75 0-1.484.222-2.11.64a3.953 3.953 0 0 0-1.398 1.66l.02-.043-2.258 4.957-2.238-4.957v.043a3.835 3.835 0 0 0-3.508-2.3Zm23.766 0c-1.094.028-2 .407-2.719 1.133-.719.727-1.094 1.637-1.121 2.727v7.652c.027 1.09.402 1.996 1.121 2.719.719.719 1.625 1.094 2.719 1.121h7.652c1.09-.027 1.996-.402 2.715-1.121.723-.723 1.094-1.629 1.121-2.719v-7.652c-.027-1.09-.398-2-1.12-2.727-.72-.726-1.626-1.105-2.716-1.132Zm-41.984.024a3.55 3.55 0 0 0-1.426.29 3.72 3.72 0 0 0-1.164.78l5.988 6.582-5.988 6.578a3.63 3.63 0 0 0 2.59 1.098 3.647 3.647 0 0 0 2.675-1.183l3.309-3.641 3.312 3.64a3.612 3.612 0 0 0 5.266.086l-5.988-6.578 5.988-6.578a3.667 3.667 0 0 0-1.164-.785 3.63 3.63 0 0 0-4.102.89l-3.312 3.645-3.332-3.644a3.608 3.608 0 0 0-1.18-.871 3.537 3.537 0 0 0-1.472-.313Zm58.25 0c-.508 0-.981.098-1.426.29a3.66 3.66 0 0 0-1.16.78l5.988 6.582-5.988 6.578c.68.7 1.613 1.094 2.585 1.098a3.64 3.64 0 0 0 2.676-1.183l3.313-3.641 3.308 3.64a3.612 3.612 0 0 0 5.266.086l-5.988-6.578L128 101.2a3.639 3.639 0 0 0-4.082-.754c-.45.203-.852.496-1.18.86l-3.312 3.644-3.332-3.644a3.75 3.75 0 0 0-1.18-.871 3.568 3.568 0 0 0-1.477-.313ZM10.57 103.957c.059 0 .207.035.45.121.277.098.433.375.472.824v2.391c.02.043-.02.203-.117.484-.098.282-.375.442-.824.48H3.816v-4.296h6.754Zm17.54 0c.062 0 .214.035.46.121.282.098.442.375.485.824v1.45c.02.039-.024.195-.121.468-.102.278-.383.434-.844.473h-6.692v-3.332h6.711Zm17.519 0c.059 0 .215.035.46.121.282.098.442.375.481.824v5.746c.02.04-.02.204-.12.485-.098.281-.38.441-.845.48h-5.722c-.04.024-.2-.02-.48-.117-.286-.105-.446-.387-.485-.848v-5.746c-.02-.039.02-.195.121-.468.102-.278.383-.434.844-.473h5.746Zm58.25 0c.062 0 .219.035.46.121.286.098.442.375.485.824v5.746c.02.04-.02.204-.12.485-.102.281-.384.441-.845.48h-5.722c-.043.024-.203-.02-.485-.117-.28-.105-.441-.387-.48-.848v-5.746c-.02-.039.02-.195.117-.468.102-.278.383-.434.848-.473h5.742Zm0 0"/></svg>
|
After Width: | Height: | Size: 4.1 KiB |
1
icons/proxmox/proxmox-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M123.191 64.004 128 69.285a2.874 2.874 0 0 1-2.078.883 2.88 2.88 0 0 1-2.149-.953l-2.66-2.922-2.66 2.922c-.527.582-1.3.953-2.148.953a2.887 2.887 0 0 1-2.078-.883l4.808-5.281-4.808-5.285a2.955 2.955 0 0 1 2.078-.864c.863 0 1.586.352 2.132.954l2.676 2.921 2.66-2.921a2.88 2.88 0 0 1 2.149-.954c.808 0 1.55.336 2.078.864Zm-46.761 0 4.808 5.281a2.874 2.874 0 0 1-2.078.883 2.88 2.88 0 0 1-2.148-.953l-2.66-2.922-2.66 2.922c-.528.582-1.301.953-2.149.953a2.887 2.887 0 0 1-2.078-.883l4.808-5.281-4.808-5.285a2.955 2.955 0 0 1 2.078-.864c.863 0 1.586.352 2.133.954l2.676 2.921 2.66-2.921a2.88 2.88 0 0 1 2.148-.954c.813 0 1.55.336 2.078.864ZM5.613 64 0 70.168a3.38 3.38 0 0 0 4.934-.082l3.105-3.414L10.465 64l-2.426-2.652-3.105-3.414a3.374 3.374 0 0 0-2.508-1.11c-.946 0-1.809.39-2.426 1.008Zm10.946 0 5.613 6.168a3.38 3.38 0 0 1-4.934-.082l-3.105-3.414L11.707 64l2.426-2.652 3.105-3.414a3.374 3.374 0 0 1 2.508-1.11c.945 0 1.809.39 2.426 1.008Zm0 0" style="fill:#e57000"/><path d="M109.383 61.695c0-.758-.774-.758-.774-.758h-4.597c-.774 0-.774.758-.774.758v4.614c0 .777.774.777.774.777h4.597c.774 0 .774-.777.774-.777Zm3.082-.758v6.149a3.064 3.064 0 0 1-.899 2.18 3.086 3.086 0 0 1-2.183.902h-6.145c-.82 0-1.605-.324-2.183-.902a3.064 3.064 0 0 1-.899-2.18v-6.148a3.087 3.087 0 0 1 3.082-3.098h6.145a3.09 3.09 0 0 1 3.082 3.097M98.395 59v11.168a3.086 3.086 0 0 1-3.082-3.082v-5.902c0-.157-.11-.262-.25-.262-.106 0-.192.07-.247.14l-3.414 7.555a.805.805 0 0 1-.707.442.807.807 0 0 1-.703-.457l-3.418-7.54a.29.29 0 0 0-.226-.14c-.16 0-.266.105-.266.262v5.902A3.086 3.086 0 0 1 83 70.168V59c0-.633.512-1.16 1.164-1.16h1.918c1.25 0 2.344.758 2.816 1.847v-.035l1.797 3.98 1.817-3.98-.02.035c.492-1.09 1.567-1.847 2.82-1.847h1.938c.633 0 1.145.527 1.145 1.16M62.62 61.695c0-.758-.773-.758-.773-.758H57.25c-.773 0-.773.758-.773.758v4.614c0 .777.773.777.773.777h4.598c.773 0 .773-.777.773-.777Zm3.082-.758v6.149a3.064 3.064 0 0 1-.898 2.18 3.086 3.086 0 0 1-2.184.902h-6.144c-.82 0-1.606-.324-2.184-.902a3.064 3.064 0 0 1-.898-2.18v-6.148a3.087 3.087 0 0 1 3.082-3.098h6.144c1.711 0 3.082 1.39 3.082 3.097m-17.93 2.68c.778 0 .778-.758.778-.758v-1.164c0-.758-.778-.758-.778-.758h-5.37v2.68Zm1.375 2.656 2.485 3.543a3.033 3.033 0 0 1-1.426.352 3.026 3.026 0 0 1-2.52-1.32l-1.78-2.54h-3.505v.778a3.086 3.086 0 0 1-3.082 3.082V59c0-.633.512-1.16 1.145-1.16h8.086a3.09 3.09 0 0 1 3.082 3.097v2.31a3.096 3.096 0 0 1-2.485 3.026m-15.445-1.882c.758 0 .758-.774.758-.774v-1.922c0-.758-.758-.758-.758-.758h-5.406v3.454Zm3.856-3.454v3.067a3.09 3.09 0 0 1-3.098 3.082h-6.164a3.072 3.072 0 0 1-3.067 3.082V59c0-.633.528-1.16 1.145-1.16h8.086a3.102 3.102 0 0 1 3.098 3.097m-24.262.004-2.215 2.442-2.215-2.442-5.12-5.629a3.136 3.136 0 0 1 2.214-.917c.918 0 1.687.375 2.27 1.011l2.851 3.114 2.832-3.114a3.072 3.072 0 0 1 2.29-1.011c.862 0 1.651.355 2.214.917Zm0 6.118-2.215-2.442-2.215 2.442-5.12 5.629a3.136 3.136 0 0 0 2.214.917c.918 0 1.687-.375 2.27-1.011l2.851-3.114 2.836 3.114a3.07 3.07 0 0 0 2.285 1.011 3.13 3.13 0 0 0 2.215-.918Zm0 0"/></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
icons/proxmox/proxmox-plain-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#e57000" d="M45.234 12.543a11.451 11.451 0 0 0-8.082 3.355l18.7 20.551 8.086 8.91 8.082-8.906 18.703-20.555a11.448 11.448 0 0 0-8.082-3.355 11.212 11.212 0 0 0-8.36 3.7l-10.344 11.37-10.414-11.37c-2.12-2.329-4.93-3.7-8.289-3.7Zm-12.902 8.879c-3.453 0-6.605 1.43-8.855 3.68l20.488 22.515-20.488 22.52a12.304 12.304 0 0 0 8.855 3.754c3.68 0 6.906-1.579 9.156-4.055l11.336-12.461 8.856-9.754-8.856-9.684-11.336-12.46c-2.25-2.477-5.476-4.055-9.156-4.055Zm63.23.004a12.28 12.28 0 0 0-9.156 4.05L75.07 37.939l-8.855 9.683 8.855 9.754 11.336 12.46c2.25 2.478 5.477 4.056 9.156 4.056 3.454 0 6.606-1.43 8.856-3.754L83.93 47.62l20.488-22.52a12.54 12.54 0 0 0-8.856-3.675ZM63.939 49.875l-8.083 8.906-18.703 20.555a11.451 11.451 0 0 0 8.082 3.355c3.36 0 6.168-1.37 8.29-3.699l10.413-11.375 10.344 11.375a11.226 11.226 0 0 0 8.36 3.7c3.152 0 6.027-1.305 8.082-3.356L72.02 58.78ZM1.425 100.102a1.42 1.42 0 0 0-1 .425 1.452 1.452 0 0 0-.426 1.02v13.906c1.082-.027 1.98-.402 2.7-1.121.714-.723 1.09-1.629 1.116-2.719h7.676c1.09-.027 2-.398 2.727-1.12.726-.72 1.105-1.626 1.133-2.716v-3.816c-.028-1.09-.407-2-1.133-2.727-.727-.726-1.637-1.105-2.727-1.132Zm17.562 0a1.42 1.42 0 0 0-1.011.425c-.266.274-.415.641-.415 1.02v13.906c1.083-.027 1.981-.402 2.708-1.121.722-.723 1.101-1.629 1.128-2.719v-.965h4.364l2.215 3.16c.355.508.804.91 1.34 1.2.554.297 1.171.449 1.796.445.32 0 .633-.039.93-.113.3-.074.582-.184.848-.324l-3.09-4.41a3.872 3.872 0 0 0 2.203-1.317c.57-.687.867-1.504.887-2.453v-2.875c-.028-1.09-.403-2-1.121-2.727-.723-.726-1.625-1.105-2.715-1.132Zm19.93 0c-1.09.027-1.996.406-2.715 1.132-.723.727-1.094 1.637-1.121 2.727v7.652c.027 1.09.398 1.996 1.121 2.719.719.719 1.625 1.094 2.715 1.121h7.652c1.09-.027 1.996-.402 2.72-1.121.718-.723 1.093-1.629 1.12-2.719v-7.652c-.027-1.09-.402-2-1.12-2.727-.724-.726-1.63-1.105-2.72-1.132Zm34.488 0c-.797 0-1.445.648-1.445 1.445v13.906c1.078-.027 1.98-.402 2.707-1.121.723-.723 1.102-1.629 1.129-2.719v-7.343a.346.346 0 0 1 .09-.243.362.362 0 0 1 .238-.09c.059 0 .113.024.168.06a.335.335 0 0 1 .117.116l4.254 9.387c.164.34.504.563.879.57.18 0 .36-.05.512-.148.152-.102.28-.238.363-.399l4.258-9.41a.462.462 0 0 1 .129-.117.35.35 0 0 1 .175-.058.3.3 0 0 1 .22.09c.058.058.085.14.09.242v7.343c.026 1.09.401 1.996 1.128 2.719.723.719 1.625 1.094 2.707 1.121v-13.906c0-.379-.148-.746-.414-1.02a1.412 1.412 0 0 0-1.012-.425h-2.41c-.75 0-1.484.222-2.11.64a3.977 3.977 0 0 0-1.39 1.645l-2.246 4.93-2.238-4.958v.043a3.835 3.835 0 0 0-3.508-2.3Zm10.383 2.285.012-.028-.02.043c.004-.004.004-.011.008-.015Zm13.383-2.285c-1.094.027-2 .406-2.719 1.132-.719.727-1.094 1.637-1.121 2.727v7.652c.027 1.09.402 1.996 1.121 2.719.719.719 1.625 1.094 2.719 1.121h7.652c1.09-.027 1.996-.402 2.715-1.121.723-.723 1.094-1.629 1.121-2.719v-7.652c-.027-1.09-.398-2-1.12-2.727-.72-.726-1.626-1.105-2.716-1.132Zm-41.984.02v.003a3.55 3.55 0 0 0-1.426.29 3.72 3.72 0 0 0-1.164.78l5.988 6.582-5.988 6.578a3.63 3.63 0 0 0 2.59 1.098 3.647 3.647 0 0 0 2.675-1.183l3.309-3.641 3.312 3.64a3.612 3.612 0 0 0 5.266.086l-5.988-6.578 5.988-6.578a3.667 3.667 0 0 0-1.164-.785 3.63 3.63 0 0 0-2.918.031 3.561 3.561 0 0 0-1.184.864l-3.312 3.64-3.332-3.64a3.62 3.62 0 0 0-1.18-.875 3.537 3.537 0 0 0-1.472-.313Zm58.25 0v.003c-.508 0-.981.098-1.426.29a3.66 3.66 0 0 0-1.16.78l5.988 6.582-5.988 6.578c.68.7 1.613 1.094 2.585 1.098a3.64 3.64 0 0 0 2.676-1.183l3.313-3.641 3.308 3.64a3.612 3.612 0 0 0 5.266.086l-5.988-6.578L128 101.2a3.639 3.639 0 0 0-4.082-.754c-.45.203-.852.496-1.18.864l-3.312 3.64-3.332-3.64a3.703 3.703 0 0 0-1.18-.875 3.568 3.568 0 0 0-1.477-.313ZM10.57 103.956c.059 0 .211.035.45.121.277.098.433.375.472.824v2.391c.02.043-.02.203-.117.484-.098.282-.375.442-.824.48H3.816v-4.296h6.754Zm17.54 0c.062 0 .214.035.46.121.282.098.442.375.485.824v1.45c.02.039-.024.195-.121.468-.102.278-.383.434-.844.473h-6.692v-3.332h6.711Zm17.519 0c.059 0 .215.035.46.121.282.098.442.375.481.824v5.746c.02.04-.02.204-.12.485-.098.281-.38.441-.845.48h-5.722c-.04.024-.2-.02-.48-.117-.286-.105-.446-.387-.485-.848v-5.746c-.02-.039.02-.195.121-.468.102-.278.383-.434.844-.473h5.746Zm58.25 0c.062 0 .219.035.46.121.286.098.442.375.485.824v5.746c.02.04-.02.204-.12.485-.102.281-.384.441-.845.48h-5.722c-.043.024-.203-.02-.485-.117-.28-.105-.441-.387-.48-.848v-5.746c-.02-.039.02-.195.117-.468.102-.278.383-.434.848-.473h5.742Zm0 0"/></svg>
|
After Width: | Height: | Size: 4.3 KiB |
1
icons/proxmox/proxmox-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#e57000" d="M5.96 54.395c-.862 0-1.651.355-2.214.917l5.121 5.63 2.215 2.44 2.215-2.44 5.121-5.63a3.136 3.136 0 0 0-2.215-.917c-.918 0-1.723.39-2.289 1.011l-2.832 3.114-2.852-3.114c-.582-.636-1.351-1.011-2.27-1.011Zm-3.534 2.43c-.946 0-1.809.39-2.426 1.007L5.613 64 0 70.168a3.38 3.38 0 0 0 4.934-.082l3.105-3.414L10.465 64l-2.426-2.652-3.105-3.414a3.374 3.374 0 0 0-2.508-1.11Zm17.32 0c-1.008 0-1.89.433-2.508 1.109l-3.105 3.414L11.707 64l2.426 2.672 3.105 3.414a3.38 3.38 0 0 0 4.934.082L16.559 64l5.613-6.168a3.435 3.435 0 0 0-2.426-1.008Zm6.629 1.015c-.617 0-1.145.527-1.145 1.16v11.168a3.072 3.072 0 0 0 3.067-3.082h6.164a3.09 3.09 0 0 0 3.098-3.082v-3.067a3.102 3.102 0 0 0-3.098-3.097Zm30.102 0a3.087 3.087 0 0 0-3.082 3.097v6.149c-.004.816.32 1.602.898 2.18a3.086 3.086 0 0 0 2.184.902h6.144c.82 0 1.606-.324 2.184-.902a3.064 3.064 0 0 0 .898-2.18v-6.148a3.087 3.087 0 0 0-3.082-3.098Zm46.761 0a3.087 3.087 0 0 0-3.082 3.097v6.149c-.004.816.32 1.602.899 2.18a3.086 3.086 0 0 0 2.183.902h6.145c.82 0 1.605-.324 2.183-.902a3.064 3.064 0 0 0 .899-2.18v-6.148a3.09 3.09 0 0 0-3.082-3.098Zm-62.773 0c-.633 0-1.145.527-1.145 1.16v11.168a3.086 3.086 0 0 0 3.082-3.082v-.777h3.504l1.782 2.539a3.026 3.026 0 0 0 2.519 1.32c.508 0 1-.125 1.426-.352l-2.485-3.543a3.096 3.096 0 0 0 2.485-3.027v-2.309a3.09 3.09 0 0 0-3.082-3.097Zm43.7 0c-.653 0-1.165.527-1.165 1.16v11.168a3.086 3.086 0 0 0 3.082-3.082v-5.902c0-.157.106-.262.266-.262a.29.29 0 0 1 .226.14l3.418 7.54a.807.807 0 0 0 .703.457c.301 0 .567-.176.707-.442l3.414-7.555c.055-.07.141-.14.246-.14.141 0 .25.105.25.262v5.902a3.086 3.086 0 0 0 3.083 3.082V59c0-.633-.512-1.16-1.145-1.16h-1.938c-1.246 0-2.312.75-2.808 1.832l-1.809 3.96-1.797-3.98v.035a3.078 3.078 0 0 0-2.816-1.847Zm8.339 1.832.008-.02-.02.035c.004-.003.008-.011.012-.015Zm-22.961-1.817c-.809 0-1.547.336-2.078.864l4.808 5.285-4.808 5.281a2.887 2.887 0 0 0 2.078.883c.848 0 1.621-.371 2.148-.953l2.66-2.922 2.66 2.922a2.88 2.88 0 0 0 2.15.953c.784 0 1.534-.316 2.077-.883l-4.808-5.281 4.808-5.285a2.941 2.941 0 0 0-2.078-.864 2.88 2.88 0 0 0-2.148.954l-2.66 2.921-2.676-2.921a2.809 2.809 0 0 0-2.133-.954Zm46.762 0c-.809 0-1.547.336-2.078.864l4.808 5.285-4.808 5.281a2.887 2.887 0 0 0 2.078.883c.847 0 1.62-.371 2.148-.953l2.66-2.922 2.66 2.922a2.88 2.88 0 0 0 2.149.953c.785 0 1.535-.316 2.078-.883l-4.809-5.281L128 58.719a2.948 2.948 0 0 0-2.078-.864 2.88 2.88 0 0 0-2.149.954l-2.66 2.921-2.675-2.921a2.809 2.809 0 0 0-2.133-.954Zm-88.008 3.083h5.406s.758 0 .758.757v1.922s0 .774-.758.774h-5.406Zm14.105 0h5.371s.778 0 .778.757v1.164s0 .758-.778.758h-5.37Zm14.848 0h4.598s.773 0 .773.757v4.614s0 .777-.773.777H57.25s-.773 0-.773-.777v-4.614s0-.758.773-.758Zm46.762 0h4.597s.774 0 .774.757v4.614s0 .777-.774.777h-4.597s-.774 0-.774-.777v-4.614s0-.758.774-.758Zm-92.93 3.68-2.215 2.44-5.12 5.63a3.136 3.136 0 0 0 2.214.917c.918 0 1.687-.375 2.27-1.011l2.851-3.114 2.836 3.114a3.07 3.07 0 0 0 2.285 1.011 3.13 3.13 0 0 0 2.215-.918l-5.121-5.628Zm0 0"/></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
icons/racket/racket-line.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#9f1d20" d="M64 .499A64.306 64.306 0 0 0 42.11 4.31l-.27.098.253.132c12.935 6.735 27.99 21.104 41.285 38.933 13.293 17.83 24.828 39.12 30.76 59.679l.069.233.153-.19C122.906 92.4 128 78.79 128 64 128 28.929 99.343.499 64 .499Zm0 .25c35.208 0 63.75 28.317 63.75 63.25 0 14.647-5.023 28.123-13.445 38.844-5.962-20.522-17.467-41.735-30.726-59.518C70.357 25.593 55.406 11.28 42.471 4.463A64.014 64.014 0 0 1 64 .748ZM21.89 16.18l-.062.054C8.45 27.876 0 44.96 0 64c0 16.01 5.974 30.635 15.826 41.806l.149.163.066-.206c8.664-25.823 24.962-50.727 38.898-64.624l.085-.086-.081-.09C44.97 30.305 33.8 21.836 21.965 16.22Zm.04.3c11.74 5.59 22.832 13.992 32.748 24.569-13.92 13.912-30.122 38.68-38.8 64.42C6.151 94.363.248 79.87.248 64c0-18.937 8.391-35.924 21.68-47.518Zm44.704 38.743-.104.113C52.679 70.147 38.894 96.039 33.9 119.949l-.02.093.087.042c8.955 4.731 19.179 7.417 30.032 7.417 11.162 0 21.65-2.837 30.784-7.818l.086-.047-.024-.09C89.588 95.44 79.663 73.362 66.724 55.35Zm-.027.401c12.857 17.938 22.729 39.9 27.97 63.883-9.076 4.933-19.494 7.744-30.578 7.744-10.778 0-20.927-2.662-29.828-7.346 4.984-23.765 18.683-49.518 32.436-64.281zm0 0"/></svg>
|
After Width: | Height: | Size: 1.2 KiB |
1
icons/racket/racket-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#fff" d="M128 64c0 35.069-28.653 63.5-64 63.5S0 99.07 0 64 28.653.5 64 .5s64 28.43 64 63.5Zm0 0"/><path fill="#3e5ba9" d="M114.356 103.192C122.904 92.4 128 78.792 128 64 128 28.93 99.347.5 64 .5a64.386 64.386 0 0 0-21.89 3.81c25.982 13.525 60.352 57.646 72.246 98.881Zm0 0"/><path fill="#9f1d20" d="M54.835 41.005C44.85 30.333 33.672 21.859 21.827 16.24 8.451 27.876 0 44.96 0 64c0 16.01 5.975 30.637 15.83 41.804 8.688-25.896 25.018-50.855 39.006-64.799Zm11.793 14.4c-13.857 14.815-27.662 40.75-32.66 64.68 8.957 4.728 19.176 7.415 30.031 7.415 11.161 0 21.653-2.835 30.786-7.817-5.268-24.14-15.204-46.245-28.157-64.277Zm0 0"/></svg>
|
After Width: | Height: | Size: 709 B |
1
icons/racket/racket-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#9f1d20" d="M64 .5a64.386 64.386 0 0 0-21.89 3.81c25.982 13.525 60.352 57.646 72.246 98.881C122.904 92.4 128 78.792 128 64 128 28.93 99.347.5 64 .5ZM21.828 16.236C8.45 27.876 0 44.961 0 64c0 16.01 5.975 30.637 15.83 41.804 8.688-25.896 25.018-50.855 39.006-64.799-9.985-10.672-21.164-19.146-33.008-24.769Zm44.8 39.17C52.77 70.22 38.963 96.155 33.968 120.085c8.957 4.728 19.176 7.415 30.031 7.415 11.161 0 21.65-2.835 30.786-7.817-5.268-24.14-15.204-46.245-28.157-64.277Zm0 0"/></svg>
|
After Width: | Height: | Size: 558 B |
1
icons/rexx/rexx-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="4.154" x2="4.154" y1="108.707" y2="23.639" gradientTransform="translate(-4.294 -1.099) scale(1.03354)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#a51415"/><stop offset=".5" stop-color="#d81511"/><stop offset="1" stop-color="#bf100d"/></linearGradient></defs><path fill="url(#a)" d="m128 16.744-24.67 42.729-6.715-11.642H84.682L95.35 66.324l-4.715 8.17L96.602 84.8l6.773-11.702 20.732 35.91 3.893 2.249v-16.18l-16.646-28.831L128 37.415zM0 23.334v61.465h10.336V33.668h3.209l5.37 9.303-7.522 4.34v14.65l13.185 22.838h11.938L19.172 54.757l13.861-8.003-13.521-23.42zm33.283 24.498-12.666 7.313 17.12 29.654h19.497l4.133-7.159V65.29l-10.336 5.966v3.589H43.17v-.826l22.549-12.986-7.614-13.203zm25.922 0 10.293 17.842-11.043 19.124h11.938l6.517-11.29 6.518 11.29h11.935L84.32 65.673l4.717-8.168-5.576-9.674-6.28 10.895-6.28-10.895zm-25.19 10.336H49.99L38.004 65.07z" color="#000" style="-inkscape-stroke:none"/><path d="M60.777 87.098v.775h1.057v3.584c0 .554.817 1 1.83 1h3.645c1.013 0 1.83-.446 1.83-1v-3.584h1.056v-.775h-3.074v4.088c0 .277-.446.5-1 .5h-1.27c-.553 0-1-.223-1-.5v-4.088zm13.032 0-2.233 4.605h-.974v.754h2.71l.713-1.68h2.643l.799 1.68h2.578v-.754h-.93l-2.365-4.605zm1.462.738 1.04 2.187h-1.967zm-32.835-.738v.754h1.007v3.851h-1.007v.754h2.832v-3.775l4.468 3.775h1.596v-4.605h.938v-.754h-2.754v3.457l-4.092-3.457zm-7.002 0L33.2 91.703h-.974v.754h2.71l.713-1.68h2.643l.799 1.68h2.578v-.754h-.93l-2.365-4.605zm1.462.738 1.04 2.187h-1.967zM24.4 87.098v.754h.9v3.851h-.9v.754h7.29v-1.88h-1.917v1.126h-2.421v-3.851h.9v-.754zm30.498 0c-1.108 0-2 .446-2 1v3.359c0 .554.892 1 2 1h5.385v-3.102H56.5v.807h1.922v1.514h-2.637c-.554 0-1-.223-1-.5V88.38c0-.277.446-.5 1-.5h2.553v.898h1.834v-1.681zm27.75 0c-1.108 0-2 .446-2 1v3.359c0 .554.892 1 2 1h5.385v-3.102H84.25v.807h1.922v1.514h-2.637c-.554 0-1-.223-1-.5V88.38c0-.277.446-.5 1-.5h2.553v.898h1.834v-1.681zm5.95 0v.705h1.051v3.95H88.6v.705h8.005v-1.643h-1.816v.938H91.58v-1.7h3.426v-.742H91.58v-1.508h3.023v.938h1.817v-1.643zM18.563 16.561v.705h1.05v3.949h-1.05v.705h8.005v-1.643h-1.816v.938h-3.207v-1.7h3.426v-.742h-3.426v-1.507h3.023v.937h1.817v-1.642zm-9.672 0v.705h1.033v3.949H8.89v.705h2.96v-2.281h3.223v2.28l2.961.001v-.705h-1.033v-3.95h1.033v-.704h-2.96v2.28h-3.223v-2.28zM0 16.56v1.492h1.73v-.746h1.58v3.84H2.308v.773h3.896v-.774H5.2v-3.84h1.58v.747h1.73V16.56z"/><path d="m32.744 46.254.29.5h77.64l.289-.5H32.744z" /></svg>
|
After Width: | Height: | Size: 2.4 KiB |
1
icons/rexx/rexx-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="4.154" x2="4.154" y1="108.707" y2="23.639" gradientTransform="translate(-4.294 -1.099) scale(1.03354)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#a51415"/><stop offset=".5" stop-color="#d81511"/><stop offset="1" stop-color="#bf100d"/></linearGradient></defs><path fill="url(#a)" d="m128 16.744-24.67 42.729-6.715-11.642H84.682L95.35 66.324l-4.715 8.17L96.602 84.8l6.773-11.702 20.732 35.91 3.893 2.249v-16.18l-16.646-28.831L128 37.415zM0 23.334v61.465h10.336V33.668h3.209l5.37 9.303-7.522 4.34v14.65l13.185 22.838h11.938L19.172 54.757l13.861-8.003-13.521-23.42zm33.283 24.498-12.666 7.313 17.12 29.654h19.497l4.133-7.159V65.29l-10.336 5.966v3.589H43.17v-.826l22.549-12.986-7.614-13.203zm25.922 0 10.293 17.842-11.043 19.124h11.938l6.517-11.29 6.518 11.29h11.935L84.32 65.673l4.717-8.168-5.576-9.674-6.28 10.895-6.28-10.895zm-25.19 10.336H49.99L38.004 65.07z"/><path d="m32.744 46.254.29.5h77.64l.289-.5h-77.93z"/></svg>
|
After Width: | Height: | Size: 1.0 KiB |
1
icons/rexx/rexx-plain-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#d81511" d="M0 16.651v1.493h1.73v-.747h1.58v3.84h-1v.774h3.894v-.776H5.2v-3.84h1.58v.749h1.73V16.65zm8.89 0v.705h1.034v3.95H8.89v.705h2.959v-2.282h3.222v2.282h2.961v-.705h-1.031v-3.95h1.031v-.705h-2.959v2.282h-3.222V16.65zm9.673 0v.705h1.05v3.95h-1.05v.705h8.005v-1.643h-1.816v.938h-3.207v-1.7h3.426v-.742h-3.426v-1.508h3.023v.938h1.817V16.65zM128 16.833l-17.037 29.512H32.744l-13.232-22.92H0V84.89h10.336V33.759h3.209l5.37 9.303-7.522 4.341v14.649L24.578 84.89h11.938L19.172 54.849l13.861-8.004h77.64l-7.343 12.718-6.715-11.642H84.682L95.35 66.415l-4.715 8.17 5.967 10.307 6.773-11.702 20.732 35.91 3.893 2.25V95.17l-16.646-28.832L128 37.507zM58.105 47.921l-24.822.002-12.666 7.312 17.12 29.655h19.497l4.133-7.159V65.38l-10.336 5.969v3.588H43.17v-.827l22.549-12.986zm1.1.002 10.293 17.842L58.455 84.89h11.938L76.91 73.6l6.518 11.29h11.935L84.32 65.765l4.717-8.168-5.576-9.674-6.28 10.894-6.28-10.894zm-25.19 10.336H49.99L38.004 65.16zM24.4 87.189v.753h.9v3.852h-.9v.754h7.29v-1.881h-1.917v1.127h-2.421v-3.852h.9v-.754zm11.034 0-2.235 4.605h-.972v.754h2.709l.712-1.68h2.645l.799 1.68h2.578v-.754h-.932l-2.365-4.606zm7.002 0v.753h1.007v3.852h-1.007v.754h2.832v-3.776l4.468 3.776h1.596v-4.606h.938v-.754h-2.754v3.458l-4.092-3.458zm12.462 0c-1.108 0-2 .445-2 1v3.359c0 .554.892 1 2 1h5.385v-3.102H56.5v.807h1.922v1.514h-2.637c-.554 0-1-.223-1-.5v-2.795c0-.277.446-.5 1-.5h2.553v.896h1.834v-1.68zm5.88 0v.775h1.056v3.584c0 .554.817 1 1.83 1h3.645c1.013 0 1.83-.446 1.83-1v-3.584h1.056v-.776h-3.074v4.088c0 .277-.446.5-1 .5h-1.27c-.552 0-1-.223-1-.5v-4.088zm13.03 0-2.232 4.605h-.974v.754h2.71l.713-1.68h2.643l.799 1.68h2.578v-.754h-.93l-2.365-4.606zm8.84 0c-1.108 0-2 .445-2 1v3.359c0 .554.892 1 2 1h5.385v-3.102H84.25v.807h1.922v1.514h-2.637c-.554 0-1-.223-1-.5v-2.795c0-.277.446-.5 1-.5h2.553v.896h1.834v-1.68zm5.95 0v.705h1.05v3.95H88.6v.704h8.005v-1.643H94.79v.94h-3.21v-1.701h3.426V89.4H91.58v-1.507h3.024v.937h1.816v-1.643zm-51.702.738 1.04 2.187h-1.967zm38.375 0 1.04 2.187h-1.967z"/></svg>
|
After Width: | Height: | Size: 2.0 KiB |
1
icons/rexx/rexx-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#d81511" d="m128 16.743-17.037 29.51H32.744l-13.232-22.92H0v61.465h10.336V33.667h3.209l5.37 9.303-7.522 4.342V61.96l13.185 22.838h11.938L19.172 54.757l13.861-8.004h77.64l-7.343 12.719-6.715-11.641H84.682L95.35 66.323l-4.715 8.17L96.602 84.8l6.773-11.701 20.732 35.91 3.893 2.248v-16.18l-16.646-28.832L128 37.415zM58.105 47.83l-24.822.002-12.666 7.313 17.12 29.654h19.497l4.133-7.158V65.288l-10.336 5.969v3.588H43.17v-.826l22.549-12.987zm1.1.002 10.293 17.842-11.043 19.125h11.938l6.517-11.29 6.518 11.29h11.935L84.32 65.673l4.717-8.168-5.576-9.674-6.28 10.895-6.28-10.895zm-25.19 10.336H49.99L38.004 65.07z"/></svg>
|
After Width: | Height: | Size: 690 B |
After Width: | Height: | Size: 11 KiB |
1
icons/styledcomponents/styledcomponents-original.svg
Normal file
After Width: | Height: | Size: 6.5 KiB |
After Width: | Height: | Size: 6.3 KiB |
1
icons/styledcomponents/styledcomponents-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#d268a7" d="M128 .618v23.899c-7.962 3.175-28.11-4.764-25.764-12.254L105.881.618zm-17.816 23.87-7.61 32.613c1.448 1.783 4.003 2.389 6.2 1.507l9.562-31.47c-2.714-.545-5.462-1.467-8.028-2.596l-.124-.055zm-9.347 34.198c-6.529 6.815-2.201 16.732-11.873 22.335 11.901 2.461 19.813-11.76 20.136-20.034-2.953.942-6.241.098-8.263-2.301zm-8.8 16.2c-8.653 5.009-20.72 15.642-21.802 17.659-1.609 2.993 2.508 14.458 9.034 11.528 6.844-3.234 18.365-12.714 21.118-23.185-3.354 2.206-7.411 3.363-11.9 2.434l-6.035-1.244 5.332-3.091c2.11-1.223 3.387-2.57 4.253-4.102zM96.497 93a49.179 49.179 0 0 1-3.473 3.858c-4.272 4.275-8.986 7.563-12.75 9.342l-.022.009-.019.009c-2.238 1.005-4.679.773-6.494-.235-1.815-1.007-3.11-2.59-4.079-4.285a16.71 16.71 0 0 1-1.924-5.259l-.028-.16-38.281 31.103h45.217c11.33-10.955 25.363-23.85 21.853-34.382zM58.732 68.07c5.214-5.714 28.257-25.773 32.513-21.45 3.87 3.931 1.747 12.597-7.48 22.779-7.309 8.061-16.518 13.488-21.305 9.695-3.975-3.144-6.768-7.69-3.728-11.024zm28.317 1.138a66.574 66.574 0 0 1-1.543 1.769c-3.808 4.2-8.09 7.74-12.295 9.824-2.103 1.042-4.2 1.732-6.288 1.86-2.086.128-4.222-.379-5.92-1.722-2.21-1.748-4.159-3.869-5.209-6.375a8.335 8.335 0 0 1-.633-2.834L0 117.37v10.012h25.697l41.846-33.997a5.498 5.498 0 0 1 .62-1.952c.362-.674.722-1.055 1.226-1.607s1.13-1.179 1.865-1.883c1.471-1.41 3.383-3.113 5.535-4.91 3.236-2.703 6.991-5.611 10.586-8.005a17.93 17.93 0 0 0-.326-5.82zm-54.174-7.936c6.497-7.899 15.238-14.989 25.507-21.195 6.803-4.11 12.273 4.327 6.394 12.786-6.09 8.023-14.38 14.927-21.136 19.663-4.536 3.18-13.724-7.656-10.765-11.254zm28.371-.666C55.964 66.169 50.061 70.9 44.992 74.453c-1.954 1.37-4.395 1.138-6.292.322-1.898-.816-3.572-2.179-4.997-3.757-1.426-1.578-2.593-3.366-3.252-5.245-.292-.831-.486-1.746-.496-2.664L0 87.272v27.043l55.923-46.269a6.92 6.92 0 0 1 1.07-1.561c1.005-1.101 2.546-2.623 4.41-4.345-.02-.522-.071-1.037-.157-1.534z"/></svg>
|
After Width: | Height: | Size: 1.9 KiB |
1
icons/talos/talos-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="101.85" x2="101.85" y1="-12.91" y2="224.04" gradientTransform="translate(6.318) scale(.56637)" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#ffd200;stop-opacity:1"/><stop offset=".08" style="stop-color:#ffb500;stop-opacity:1"/><stop offset=".2" style="stop-color:#ff8c00;stop-opacity:1"/><stop offset=".3" style="stop-color:#ff7300;stop-opacity:1"/><stop offset=".36" style="stop-color:#ff6a00;stop-opacity:1"/><stop offset=".48" style="stop-color:#fc4f0e;stop-opacity:1"/><stop offset=".65" style="stop-color:#f92f1e;stop-opacity:1"/><stop offset=".79" style="stop-color:#f81b27;stop-opacity:1"/><stop offset=".89" style="stop-color:#f7142b;stop-opacity:1"/><stop offset="1" style="stop-color:#df162e;stop-opacity:1"/></linearGradient></defs><path d="M64.012 0c-1.617 0-3.227.078-4.825.2v127.624c1.594.117 3.196.2 4.817.203h.023c1.614 0 3.211-.086 4.79-.199V.2A62.973 62.973 0 0 0 64.011 0Zm27.515 6.23C82.16 27.34 76.36 49.79 76.36 63.926c0 13.68 6.282 36.379 15.82 57.601a64.209 64.209 0 0 0 8.407-4.968c-8.832-19.864-14.59-40.625-14.59-52.657 0-12.457 5.555-33.175 14.113-52.757a64.114 64.114 0 0 0-8.582-4.915Zm-55.191.04a64.114 64.114 0 0 0-8.457 4.894C36.453 30.73 42 51.454 42 63.902c0 12.028-5.762 32.782-14.59 52.625a64.62 64.62 0 0 0 8.406 4.965c9.547-21.215 15.813-43.898 15.813-57.59 0-14.207-6.031-36.785-15.293-57.632Zm80.207 21.16-1.379 1.375c-14.613 14.754-21.676 26.246-21.59 35.117.086 8.867 7.106 20.324 21.489 34.789l1.652 1.644a64.618 64.618 0 0 0 4.996-8.601c-9.953-10.102-18.441-21.008-18.508-27.918-.062-6.738 8.375-17.645 18.383-27.856a63.693 63.693 0 0 0-5.043-8.55Zm-105.059.023a64.028 64.028 0 0 0-5.054 8.574c16.664 16.93 18.418 25.094 18.398 27.832-.062 6.938-8.555 17.817-18.512 27.895a64.432 64.432 0 0 0 5.008 8.578c.567-.566 1.106-1.086 1.653-1.64 14.37-14.465 21.394-25.833 21.476-34.766.086-8.93-6.976-20.317-21.586-35.098Zm0 0" style="fill:url(#a)"/></svg>
|
After Width: | Height: | Size: 2.0 KiB |
1
icons/talos/talos-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M64.012 0c-1.617 0-3.227.078-4.825.2v127.624c1.594.117 3.196.2 4.817.203h.023c1.614 0 3.211-.086 4.79-.199V.2A62.973 62.973 0 0 0 64.011 0Zm27.515 6.23C82.16 27.34 76.36 49.79 76.36 63.926c0 13.68 6.282 36.379 15.82 57.601a64.209 64.209 0 0 0 8.407-4.968c-8.832-19.864-14.59-40.625-14.59-52.657 0-12.457 5.555-33.175 14.113-52.757a64.114 64.114 0 0 0-8.582-4.915Zm-55.191.04a64.114 64.114 0 0 0-8.457 4.894C36.453 30.73 42 51.454 42 63.902c0 12.028-5.762 32.782-14.59 52.625a64.62 64.62 0 0 0 8.406 4.965c9.547-21.215 15.813-43.898 15.813-57.59 0-14.207-6.031-36.785-15.293-57.632Zm80.207 21.16-1.379 1.375c-14.613 14.754-21.676 26.246-21.59 35.117.086 8.867 7.106 20.324 21.489 34.789l1.652 1.644a64.618 64.618 0 0 0 4.996-8.601c-9.953-10.102-18.441-21.008-18.508-27.918-.062-6.738 8.375-17.645 18.383-27.856a63.693 63.693 0 0 0-5.043-8.55Zm-105.059.023a64.028 64.028 0 0 0-5.054 8.574c16.664 16.93 18.418 25.094 18.398 27.832-.062 6.938-8.555 17.817-18.512 27.895a64.432 64.432 0 0 0 5.008 8.578c.567-.566 1.106-1.086 1.653-1.64 14.37-14.465 21.394-25.833 21.476-34.766.086-8.93-6.976-20.317-21.586-35.098Zm0 0" style="fill:#f92a20"/></svg>
|
After Width: | Height: | Size: 1.2 KiB |
1
icons/turbo/turbo-original-wordmark.svg
Normal file
After Width: | Height: | Size: 7.4 KiB |
1
icons/turbo/turbo-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#5cd8e5" d="M3.92 0A3.92 3.92 0 0 0 0 3.92v16.489h64a43.592 43.592 0 0 1 36.273 67.764H128V3.92A3.92 3.92 0 0 0 124.08 0H3.92zm63.594 26.046a4.706 4.706 0 0 0-1.813.277 4.642 4.642 0 0 0-1.709 1.091 4.695 4.695 0 0 0-1.103 4.94 69.19 69.19 0 0 1 1.103 3.26 54.294 54.294 0 0 1 1.156 4.243 35.196 35.196 0 0 1 .753 4.664 20.241 20.241 0 0 0-1.92-.094 20.164 20.164 0 0 0-2.959.222c-3.09-3.738-7.153-7.194-12.348-10.477a4.706 4.706 0 0 0-5.003 7.917 46.912 46.912 0 0 1 8.282 6.472 19.753 19.753 0 0 0-3.867 4.036c-4.984-.17-11.106.805-18.955 3.663a4.706 4.706 0 1 0 3.219 8.843c4.94-1.796 8.885-2.726 12.168-3.012-.06.633-.094 1.273-.094 1.92a19.66 19.66 0 0 0 .222 2.96c-3.738 3.09-7.195 7.152-10.478 12.348a4.706 4.706 0 0 0 1.461 6.494 4.702 4.702 0 0 0 6.46-1.484 46.912 46.912 0 0 1 6.472-8.282 19.848 19.848 0 0 0 4.036 3.866 38.4 38.4 0 0 0 .666 8.234 65.81 65.81 0 0 0 3.012 10.722 4.698 4.698 0 0 0 6.024 2.812 4.642 4.642 0 0 0 1.708-1.092 4.695 4.695 0 0 0 1.104-4.939 69.71 69.71 0 0 1-1.104-3.26 54.28 54.28 0 0 1-1.155-4.243 35.196 35.196 0 0 1-.753-4.665c.633.06 1.272.094 1.92.094a20.047 20.047 0 0 0 2.985-.226c2.888 3.48 6.852 7.014 12.322 10.481a4.706 4.706 0 0 0 5.003-7.92 46.765 46.765 0 0 1-8.248-6.476 19.678 19.678 0 0 0 3.859-4.028c.357 0 .723.023 1.092.023 4.78 0 10.582-1.04 17.867-3.69a4.706 4.706 0 1 0-3.22-8.843c-4.938 1.796-8.884 2.726-12.167 3.012.06-.633.095-1.273.095-1.92a20.01 20.01 0 0 0-.226-2.985c3.479-2.888 7.013-6.853 10.48-12.323a4.706 4.706 0 0 0-7.95-5.01 46.765 46.765 0 0 1-6.476 8.282 19.716 19.716 0 0 0-4.032-3.862 38.4 38.4 0 0 0-.666-8.234 65.81 65.81 0 0 0-3.012-10.722 4.706 4.706 0 0 0-4.21-3.089zM0 39.823v84.258A3.92 3.92 0 0 0 3.92 128h120.16a3.92 3.92 0 0 0 3.92-3.92v-16.489H64a43.592 43.592 0 0 1-43.591-43.59 43.37 43.37 0 0 1 7.318-24.178H0zm64 13.636c.286 0 .569 0 .847.034a10.707 10.707 0 0 1 1.604.256 10.511 10.511 0 0 1 5.59 3.44 10.01 10.01 0 0 1 .942 1.3A10.488 10.488 0 0 1 74.54 64c0 .286 0 .569-.034.847a10.165 10.165 0 0 1-.263 1.638 10.541 10.541 0 0 1-3.434 5.557 10.733 10.733 0 0 1-1.302.944A10.47 10.47 0 0 1 64 74.541c-.286 0-.569 0-.847-.034a10.165 10.165 0 0 1-1.638-.263A10.541 10.541 0 0 1 53.46 64c0-.286 0-.569.034-.847a10.707 10.707 0 0 1 .256-1.604A10.541 10.541 0 0 1 64 53.46z"/></svg>
|
After Width: | Height: | Size: 2.3 KiB |
1
icons/turbo/turbo-plain-wordmark.svg
Normal file
After Width: | Height: | Size: 5.2 KiB |
1
icons/wolframlanguage/wolfram-original-wordmark.svg
Normal file
After Width: | Height: | Size: 9.1 KiB |