diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..a7c44dd --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +indent_size = 4 +indent_style = space +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..886475c --- /dev/null +++ b/.gitattributes @@ -0,0 +1,14 @@ +# Path-based git attributes +# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html + +# Ignore all test and documentation with "export-ignore". +/.github export-ignore +/.gitattributes export-ignore +/.gitignore export-ignore +/phpunit.xml.dist export-ignore +/tests export-ignore +/.editorconfig export-ignore +/.php_cs.dist export-ignore +/psalm.xml export-ignore +/psalm.xml.dist export-ignore +/testbench.yaml export-ignore diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000..b4ae1c4 --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,55 @@ +# Contributing + +Contributions are **welcome** and will be fully **credited**. + +Please read and understand the contribution guide before creating an issue or pull request. + +## Etiquette + +This project is open source, and as such, the maintainers give their free time to build and maintain the source code +held within. They make the code freely available in the hope that it will be of use to other developers. It would be +extremely unfair for them to suffer abuse or anger for their hard work. + +Please be considerate towards maintainers when raising issues or presenting pull requests. Let's show the +world that developers are civilized and selfless people. + +It's the duty of the maintainer to ensure that all submissions to the project are of sufficient +quality to benefit the project. Many developers have different skillsets, strengths, and weaknesses. Respect the maintainer's decision, and do not be upset or abusive if your submission is not used. + +## Viability + +When requesting or submitting new features, first consider whether it might be useful to others. Open +source projects are used by many developers, who may have entirely different needs to your own. Think about +whether or not your feature is likely to be used by other users of the project. + +## Procedure + +Before filing an issue: + +- Attempt to replicate the problem, to ensure that it wasn't a coincidental incident. +- Check to make sure your feature suggestion isn't already present within the project. +- Check the pull requests tab to ensure that the bug doesn't have a fix in progress. +- Check the pull requests tab to ensure that the feature isn't already in progress. + +Before submitting a pull request: + +- Check the codebase to ensure that your feature doesn't already exist. +- Check the pull requests to ensure that another person hasn't already submitted the feature or fix. + +## Requirements + +If the project maintainer has any additional requirements, you will find them listed here. + +- **[PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** - The easiest way to apply the conventions is to install [PHP Code Sniffer](https://pear.php.net/package/PHP_CodeSniffer). + +- **Add tests!** - Your patch won't be accepted if it doesn't have tests. + +- **Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date. + +- **Consider our release cycle** - We try to follow [SemVer v2.0.0](https://semver.org/). Randomly breaking public APIs is not an option. + +- **One pull request per feature** - If you want to do more than one thing, send multiple pull requests. + +- **Send coherent history** - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please [squash them](https://www.git-scm.com/book/en/v2/Git-Tools-Rewriting-History#Changing-Multiple-Commit-Messages) before submitting. + +**Happy coding**! diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..1bffe48 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +github: adrian-ub diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..0d31fb8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,11 @@ +blank_issues_enabled: false +contact_links: + - name: Ask a question + url: https://github.com/vendor_slug/package_slug/discussions/new?category=q-a + about: Ask the community for help + - name: Request a feature + url: https://github.com/vendor_slug/package_slug/discussions/new?category=ideas + about: Share ideas for new features + - name: Report a bug + url: https://github.com/vendor_slug/package_slug/issues/new + about: Report a reproducable bug diff --git a/.github/workflows/php-cs-fixer.yml b/.github/workflows/php-cs-fixer.yml new file mode 100644 index 0000000..4cf285f --- /dev/null +++ b/.github/workflows/php-cs-fixer.yml @@ -0,0 +1,23 @@ +name: Check & fix styling + +on: [push] + +jobs: + php-cs-fixer: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + with: + ref: ${{ github.head_ref }} + + - name: Run PHP CS Fixer + uses: docker://oskarstark/php-cs-fixer-ga + with: + args: --config=.php_cs.dist --allow-risky=yes + + - name: Commit changes + uses: stefanzweifel/git-auto-commit-action@v4 + with: + commit_message: Fix styling diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml new file mode 100644 index 0000000..e48b24f --- /dev/null +++ b/.github/workflows/psalm.yml @@ -0,0 +1,33 @@ +name: Psalm + +on: + push: + paths: + - '**.php' + - 'psalm.xml.dist' + +jobs: + psalm: + name: psalm + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: '8.0' + extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick + coverage: none + + - name: Cache composer dependencies + uses: actions/cache@v2 + with: + path: vendor + key: composer-${{ hashFiles('composer.lock') }} + + - name: Run composer install + run: composer install -n --prefer-dist + + - name: Run psalm + run: ./vendor/bin/psalm --output-format=github diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml new file mode 100644 index 0000000..ca3d2a7 --- /dev/null +++ b/.github/workflows/run-tests.yml @@ -0,0 +1,47 @@ +name: run-tests + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + test: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: true + matrix: + os: [ubuntu-latest, windows-latest] + php: [8.0] + laravel: [8.*] + stability: [prefer-lowest, prefer-stable] + include: + - laravel: 8.* + testbench: ^6.6 + + name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo + coverage: none + + - name: Setup problem matchers + run: | + echo "::add-matcher::${{ runner.tool_cache }}/php.json" + echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" + + - name: Install dependencies + run: | + composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update + composer update --${{ matrix.stability }} --prefer-dist --no-interaction + + - name: Execute tests + run: vendor/bin/phpunit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3d1ad4f --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +.idea +.php_cs +.php_cs.cache +.phpunit.result.cache +build +composer.lock +coverage +docs +phpunit.xml +psalm.xml +testbench.yaml +vendor +node_modules +dist/ diff --git a/.php_cs.dist b/.php_cs.dist new file mode 100644 index 0000000..c7d380c --- /dev/null +++ b/.php_cs.dist @@ -0,0 +1,43 @@ +notPath('bootstrap/*') + ->notPath('storage/*') + ->notPath('resources/view/mail/*') + ->in([ + __DIR__ . '/src', + __DIR__ . '/tests', + ]) + ->name('*.php') + ->notName('*.blade.php') + ->ignoreDotFiles(true) + ->ignoreVCS(true); + +return PhpCsFixer\Config::create() + ->setRules([ + '@PSR2' => true, + 'array_syntax' => ['syntax' => 'short'], + 'ordered_imports' => ['sortAlgorithm' => 'alpha'], + 'no_unused_imports' => true, + 'not_operator_with_successor_space' => true, + 'trailing_comma_in_multiline_array' => true, + 'phpdoc_scalar' => true, + 'unary_operator_spaces' => true, + 'binary_operator_spaces' => true, + 'blank_line_before_statement' => [ + 'statements' => ['break', 'continue', 'declare', 'return', 'throw', 'try'], + ], + 'phpdoc_single_line_var_spacing' => true, + 'phpdoc_var_without_name' => true, + 'class_attributes_separation' => [ + 'elements' => [ + 'method', + ], + ], + 'method_argument_space' => [ + 'on_multiline' => 'ensure_fully_multiline', + 'keep_multiple_spaces_after_comma' => true, + ], + 'single_trait_insert_per_statement' => true, + ]) + ->setFinder($finder); diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..8174b2f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,7 @@ +# Changelog + +All notable changes to `blade-simple-icons` will be documented in this file. + +## 1.0.0 - 2021-04-11 + +- initial release diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..5cee152 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) ublabs + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..505adf0 --- /dev/null +++ b/README.md @@ -0,0 +1,82 @@ +

+ +

+ +# Blade Simple Icons + +[![Latest Version on Packagist](https://img.shields.io/packagist/v/ublabs/blade-simple-icons.svg?style=flat-square)](https://packagist.org/packages/ublabs/blade-simple-icons) +[![GitHub Tests Action Status](https://img.shields.io/github/workflow/status/ublabs/blade-simple-icons/run-tests?label=tests)](https://github.com/ublabs/blade-simple-icons/actions?query=workflow%3Arun-tests+branch%3Amaster) +[![GitHub Code Style Action Status](https://img.shields.io/github/workflow/status/ublabs/blade-simple-icons/Check%20&%20fix%20styling?label=code%20style)](https://github.com/ublabs/blade-simple-icons/actions?query=workflow%3A"Check+%26+fix+styling"+branch%3Amaster) +[![Total Downloads](https://img.shields.io/packagist/dt/ublabs/blade-simple-icons.svg?style=flat-square)](https://packagist.org/packages/ublabs/blade-simple-icons) + +A package to easily make use of [Simple Icons](https://simpleicons.org/) in your Laravel Blade views. + +For a full list of available icons see the [SVG directory](./resources/svg). + +## Requirements + +- PHP 7.4 or higher +- Laravel 8.0 or higher + +## Installation + +You can install the package via composer: + +```bash +composer require ublabs/blade-simple-icons +``` + +## Usage + +Icons can be used as self-closing Blade components which will be compiled to SVG icons: + +```blade + +``` + +You can also pass classes to your icon components: + +```blade + +``` + +And even use inline styles: + +```blade + +``` + +### Raw SVG Icons + +If you want to use the raw SVG icons as assets, you can publish them using: + +```bash +php artisan vendor:publish --tag=blade-simple-icons --force +``` + +Then use them in your views like: + +```blade + +``` + +### Blade Icons + +Blade Simple Icons uses Blade Icons under the hood. Please refer to [the Blade Icons readme](https://github.com/blade-ui-kit/blade-icons) for additional functionality. + +## Changelog + +Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently. + +## Contributing + +Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details. + +## Credits + +- [Adrián UB](https://github.com/adrian-ub) +- [All Contributors](../../contributors) + +## License + +The MIT License (MIT). Please see [License File](LICENSE.md) for more information. diff --git a/bin/compile.sh b/bin/compile.sh new file mode 100644 index 0000000..88f7e85 --- /dev/null +++ b/bin/compile.sh @@ -0,0 +1,26 @@ +#!/usr/bin/env bash + +set -e + +DIRECTORY=$(cd `dirname $0` && pwd) +ICONS=$DIRECTORY/../dist +RESOURCES=$DIRECTORY/../resources/svg + +echo "Compiling Simple Icons..." + +for FILE in $ICONS/*; do + FILENAME=${FILE##*/} + + if [ "$FILENAME" == ".gitignore" ] + then + break + fi + + # Compile icons... + cp $FILE $RESOURCES/${FILENAME} + + CLASS=' + + + + tests + + + + + ./src + + + + + + + + + + + diff --git a/psalm.xml.dist b/psalm.xml.dist new file mode 100644 index 0000000..c6df33e --- /dev/null +++ b/psalm.xml.dist @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/resources/svg/1001tracklists.svg b/resources/svg/1001tracklists.svg new file mode 100644 index 0000000..4798c60 --- /dev/null +++ b/resources/svg/1001tracklists.svg @@ -0,0 +1 @@ +1001Tracklists icon \ No newline at end of file diff --git a/resources/svg/1password.svg b/resources/svg/1password.svg new file mode 100644 index 0000000..bbcff08 --- /dev/null +++ b/resources/svg/1password.svg @@ -0,0 +1 @@ +1Password icon \ No newline at end of file diff --git a/resources/svg/3m.svg b/resources/svg/3m.svg new file mode 100644 index 0000000..00e9219 --- /dev/null +++ b/resources/svg/3m.svg @@ -0,0 +1 @@ +3M icon \ No newline at end of file diff --git a/resources/svg/42.svg b/resources/svg/42.svg new file mode 100644 index 0000000..b82a54b --- /dev/null +++ b/resources/svg/42.svg @@ -0,0 +1 @@ +42 icon diff --git a/resources/svg/4d.svg b/resources/svg/4d.svg new file mode 100644 index 0000000..f9d852d --- /dev/null +++ b/resources/svg/4d.svg @@ -0,0 +1 @@ +4D icon \ No newline at end of file diff --git a/resources/svg/500px.svg b/resources/svg/500px.svg new file mode 100644 index 0000000..4b7d5bf --- /dev/null +++ b/resources/svg/500px.svg @@ -0,0 +1 @@ +500px icon \ No newline at end of file diff --git a/resources/svg/a-frame.svg b/resources/svg/a-frame.svg new file mode 100644 index 0000000..c1fd7b5 --- /dev/null +++ b/resources/svg/a-frame.svg @@ -0,0 +1 @@ +A-Frame icon \ No newline at end of file diff --git a/resources/svg/abbrobotstudio.svg b/resources/svg/abbrobotstudio.svg new file mode 100644 index 0000000..269a471 --- /dev/null +++ b/resources/svg/abbrobotstudio.svg @@ -0,0 +1 @@ +ABB RobotStudio icon \ No newline at end of file diff --git a/resources/svg/abbvie.svg b/resources/svg/abbvie.svg new file mode 100644 index 0000000..4d47562 --- /dev/null +++ b/resources/svg/abbvie.svg @@ -0,0 +1 @@ +Abbvie icon \ No newline at end of file diff --git a/resources/svg/abletonlive.svg b/resources/svg/abletonlive.svg new file mode 100644 index 0000000..34adf06 --- /dev/null +++ b/resources/svg/abletonlive.svg @@ -0,0 +1 @@ +Ableton Live icon \ No newline at end of file diff --git a/resources/svg/about-dot-me.svg b/resources/svg/about-dot-me.svg new file mode 100644 index 0000000..9d09b98 --- /dev/null +++ b/resources/svg/about-dot-me.svg @@ -0,0 +1 @@ +About.me icon \ No newline at end of file diff --git a/resources/svg/abstract.svg b/resources/svg/abstract.svg new file mode 100644 index 0000000..3055ac6 --- /dev/null +++ b/resources/svg/abstract.svg @@ -0,0 +1 @@ +Abstract icon \ No newline at end of file diff --git a/resources/svg/academia.svg b/resources/svg/academia.svg new file mode 100644 index 0000000..1df90f5 --- /dev/null +++ b/resources/svg/academia.svg @@ -0,0 +1 @@ +Academia icon \ No newline at end of file diff --git a/resources/svg/accenture.svg b/resources/svg/accenture.svg new file mode 100644 index 0000000..b46f85b --- /dev/null +++ b/resources/svg/accenture.svg @@ -0,0 +1 @@ +Accenture icon \ No newline at end of file diff --git a/resources/svg/acclaim.svg b/resources/svg/acclaim.svg new file mode 100644 index 0000000..6e5d61b --- /dev/null +++ b/resources/svg/acclaim.svg @@ -0,0 +1 @@ +Acclaim icon \ No newline at end of file diff --git a/resources/svg/accusoft.svg b/resources/svg/accusoft.svg new file mode 100644 index 0000000..5fa3167 --- /dev/null +++ b/resources/svg/accusoft.svg @@ -0,0 +1 @@ +Accusoft icon \ No newline at end of file diff --git a/resources/svg/acer.svg b/resources/svg/acer.svg new file mode 100644 index 0000000..10ca462 --- /dev/null +++ b/resources/svg/acer.svg @@ -0,0 +1 @@ +Acer icon \ No newline at end of file diff --git a/resources/svg/acm.svg b/resources/svg/acm.svg new file mode 100644 index 0000000..75b7077 --- /dev/null +++ b/resources/svg/acm.svg @@ -0,0 +1 @@ +ACM icon \ No newline at end of file diff --git a/resources/svg/actigraph.svg b/resources/svg/actigraph.svg new file mode 100644 index 0000000..2367f22 --- /dev/null +++ b/resources/svg/actigraph.svg @@ -0,0 +1 @@ +ActiGraph icon \ No newline at end of file diff --git a/resources/svg/activision.svg b/resources/svg/activision.svg new file mode 100644 index 0000000..36aab4b --- /dev/null +++ b/resources/svg/activision.svg @@ -0,0 +1 @@ +Activision icon \ No newline at end of file diff --git a/resources/svg/adblock.svg b/resources/svg/adblock.svg new file mode 100644 index 0000000..d9b4ad1 --- /dev/null +++ b/resources/svg/adblock.svg @@ -0,0 +1 @@ +AdBlock icon \ No newline at end of file diff --git a/resources/svg/adblockplus.svg b/resources/svg/adblockplus.svg new file mode 100644 index 0000000..b27678c --- /dev/null +++ b/resources/svg/adblockplus.svg @@ -0,0 +1 @@ +Adblock Plus icon diff --git a/resources/svg/addthis.svg b/resources/svg/addthis.svg new file mode 100644 index 0000000..747ec25 --- /dev/null +++ b/resources/svg/addthis.svg @@ -0,0 +1 @@ +AddThis icon \ No newline at end of file diff --git a/resources/svg/adguard.svg b/resources/svg/adguard.svg new file mode 100644 index 0000000..c696586 --- /dev/null +++ b/resources/svg/adguard.svg @@ -0,0 +1 @@ +AdGuard icon \ No newline at end of file diff --git a/resources/svg/adobe.svg b/resources/svg/adobe.svg new file mode 100644 index 0000000..1b51b8b --- /dev/null +++ b/resources/svg/adobe.svg @@ -0,0 +1 @@ +Adobe icon \ No newline at end of file diff --git a/resources/svg/adobeacrobatreader.svg b/resources/svg/adobeacrobatreader.svg new file mode 100644 index 0000000..4b3c341 --- /dev/null +++ b/resources/svg/adobeacrobatreader.svg @@ -0,0 +1 @@ +Adobe Acrobat Reader icon \ No newline at end of file diff --git a/resources/svg/adobeaftereffects.svg b/resources/svg/adobeaftereffects.svg new file mode 100644 index 0000000..aa6fbff --- /dev/null +++ b/resources/svg/adobeaftereffects.svg @@ -0,0 +1 @@ +Adobe After Effects icon \ No newline at end of file diff --git a/resources/svg/adobeaudition.svg b/resources/svg/adobeaudition.svg new file mode 100644 index 0000000..2ae4f53 --- /dev/null +++ b/resources/svg/adobeaudition.svg @@ -0,0 +1 @@ +Adobe Audition icon \ No newline at end of file diff --git a/resources/svg/adobecreativecloud.svg b/resources/svg/adobecreativecloud.svg new file mode 100644 index 0000000..df9f24f --- /dev/null +++ b/resources/svg/adobecreativecloud.svg @@ -0,0 +1 @@ +Adobe Creative Cloud icon \ No newline at end of file diff --git a/resources/svg/adobedreamweaver.svg b/resources/svg/adobedreamweaver.svg new file mode 100644 index 0000000..4a9ce9b --- /dev/null +++ b/resources/svg/adobedreamweaver.svg @@ -0,0 +1 @@ +Adobe Dreamweaver icon \ No newline at end of file diff --git a/resources/svg/adobefonts.svg b/resources/svg/adobefonts.svg new file mode 100644 index 0000000..739e58b --- /dev/null +++ b/resources/svg/adobefonts.svg @@ -0,0 +1 @@ +Adobe Fonts icon \ No newline at end of file diff --git a/resources/svg/adobeillustrator.svg b/resources/svg/adobeillustrator.svg new file mode 100644 index 0000000..bb87348 --- /dev/null +++ b/resources/svg/adobeillustrator.svg @@ -0,0 +1 @@ +Adobe Illustrator icon \ No newline at end of file diff --git a/resources/svg/adobeindesign.svg b/resources/svg/adobeindesign.svg new file mode 100644 index 0000000..83bfb61 --- /dev/null +++ b/resources/svg/adobeindesign.svg @@ -0,0 +1 @@ +Adobe InDesign icon \ No newline at end of file diff --git a/resources/svg/adobelightroom.svg b/resources/svg/adobelightroom.svg new file mode 100644 index 0000000..b17d799 --- /dev/null +++ b/resources/svg/adobelightroom.svg @@ -0,0 +1 @@ +Adobe Lightroom icon \ No newline at end of file diff --git a/resources/svg/adobelightroomclassic.svg b/resources/svg/adobelightroomclassic.svg new file mode 100644 index 0000000..5da88aa --- /dev/null +++ b/resources/svg/adobelightroomclassic.svg @@ -0,0 +1 @@ +Adobe Lightroom Classic icon \ No newline at end of file diff --git a/resources/svg/adobephonegap.svg b/resources/svg/adobephonegap.svg new file mode 100644 index 0000000..fb3dd3a --- /dev/null +++ b/resources/svg/adobephonegap.svg @@ -0,0 +1 @@ +Adobe PhoneGap icon \ No newline at end of file diff --git a/resources/svg/adobephotoshop.svg b/resources/svg/adobephotoshop.svg new file mode 100644 index 0000000..d86b3e7 --- /dev/null +++ b/resources/svg/adobephotoshop.svg @@ -0,0 +1 @@ +Adobe Photoshop icon \ No newline at end of file diff --git a/resources/svg/adobepremierepro.svg b/resources/svg/adobepremierepro.svg new file mode 100644 index 0000000..5149018 --- /dev/null +++ b/resources/svg/adobepremierepro.svg @@ -0,0 +1 @@ +Adobe Premiere Pro icon \ No newline at end of file diff --git a/resources/svg/adobexd.svg b/resources/svg/adobexd.svg new file mode 100644 index 0000000..25e8251 --- /dev/null +++ b/resources/svg/adobexd.svg @@ -0,0 +1 @@ +Adobe XD icon \ No newline at end of file diff --git a/resources/svg/adonisjs.svg b/resources/svg/adonisjs.svg new file mode 100644 index 0000000..e0ad052 --- /dev/null +++ b/resources/svg/adonisjs.svg @@ -0,0 +1 @@ +AdonisJS icon diff --git a/resources/svg/aerlingus.svg b/resources/svg/aerlingus.svg new file mode 100644 index 0000000..22c84db --- /dev/null +++ b/resources/svg/aerlingus.svg @@ -0,0 +1 @@ +Aer Lingus icon diff --git a/resources/svg/aeroflot.svg b/resources/svg/aeroflot.svg new file mode 100644 index 0000000..7a77fe3 --- /dev/null +++ b/resources/svg/aeroflot.svg @@ -0,0 +1 @@ +Aeroflot icon \ No newline at end of file diff --git a/resources/svg/aeromexico.svg b/resources/svg/aeromexico.svg new file mode 100644 index 0000000..c29041a --- /dev/null +++ b/resources/svg/aeromexico.svg @@ -0,0 +1 @@ +Aeroméxico icon \ No newline at end of file diff --git a/resources/svg/aerospike.svg b/resources/svg/aerospike.svg new file mode 100644 index 0000000..4fa7c19 --- /dev/null +++ b/resources/svg/aerospike.svg @@ -0,0 +1 @@ +Aerospike icon \ No newline at end of file diff --git a/resources/svg/affinity.svg b/resources/svg/affinity.svg new file mode 100644 index 0000000..829a359 --- /dev/null +++ b/resources/svg/affinity.svg @@ -0,0 +1 @@ +Affinity icon diff --git a/resources/svg/affinitydesigner.svg b/resources/svg/affinitydesigner.svg new file mode 100644 index 0000000..933679c --- /dev/null +++ b/resources/svg/affinitydesigner.svg @@ -0,0 +1 @@ +Affinity Designer icon diff --git a/resources/svg/affinityphoto.svg b/resources/svg/affinityphoto.svg new file mode 100644 index 0000000..7a35493 --- /dev/null +++ b/resources/svg/affinityphoto.svg @@ -0,0 +1 @@ +Affinity Photo icon diff --git a/resources/svg/affinitypublisher.svg b/resources/svg/affinitypublisher.svg new file mode 100644 index 0000000..2fab64e --- /dev/null +++ b/resources/svg/affinitypublisher.svg @@ -0,0 +1 @@ +Affinity Publisher icon diff --git a/resources/svg/aidungeon.svg b/resources/svg/aidungeon.svg new file mode 100644 index 0000000..1fd4515 --- /dev/null +++ b/resources/svg/aidungeon.svg @@ -0,0 +1 @@ +AI Dungeon icon \ No newline at end of file diff --git a/resources/svg/aiohttp.svg b/resources/svg/aiohttp.svg new file mode 100644 index 0000000..e2ce7ea --- /dev/null +++ b/resources/svg/aiohttp.svg @@ -0,0 +1 @@ +AIOHTTP icon \ No newline at end of file diff --git a/resources/svg/aiqfome.svg b/resources/svg/aiqfome.svg new file mode 100644 index 0000000..07c422d --- /dev/null +++ b/resources/svg/aiqfome.svg @@ -0,0 +1 @@ +Aiqfome icon diff --git a/resources/svg/airasia.svg b/resources/svg/airasia.svg new file mode 100644 index 0000000..2b3f59f --- /dev/null +++ b/resources/svg/airasia.svg @@ -0,0 +1 @@ +AirAsia icon \ No newline at end of file diff --git a/resources/svg/airbnb.svg b/resources/svg/airbnb.svg new file mode 100644 index 0000000..d042336 --- /dev/null +++ b/resources/svg/airbnb.svg @@ -0,0 +1 @@ +Airbnb icon \ No newline at end of file diff --git a/resources/svg/airbus.svg b/resources/svg/airbus.svg new file mode 100644 index 0000000..7c293f4 --- /dev/null +++ b/resources/svg/airbus.svg @@ -0,0 +1 @@ +Airbus icon \ No newline at end of file diff --git a/resources/svg/aircall.svg b/resources/svg/aircall.svg new file mode 100644 index 0000000..f56cb30 --- /dev/null +++ b/resources/svg/aircall.svg @@ -0,0 +1 @@ +Aircall icon \ No newline at end of file diff --git a/resources/svg/aircanada.svg b/resources/svg/aircanada.svg new file mode 100644 index 0000000..843618e --- /dev/null +++ b/resources/svg/aircanada.svg @@ -0,0 +1 @@ +Air Canada icon \ No newline at end of file diff --git a/resources/svg/airchina.svg b/resources/svg/airchina.svg new file mode 100644 index 0000000..8cad350 --- /dev/null +++ b/resources/svg/airchina.svg @@ -0,0 +1 @@ +Air China icon \ No newline at end of file diff --git a/resources/svg/airfrance.svg b/resources/svg/airfrance.svg new file mode 100644 index 0000000..d8f0b62 --- /dev/null +++ b/resources/svg/airfrance.svg @@ -0,0 +1 @@ +Air France icon \ No newline at end of file diff --git a/resources/svg/airplayaudio.svg b/resources/svg/airplayaudio.svg new file mode 100644 index 0000000..e2385a9 --- /dev/null +++ b/resources/svg/airplayaudio.svg @@ -0,0 +1 @@ +AirPlay Audio icon \ No newline at end of file diff --git a/resources/svg/airplayvideo.svg b/resources/svg/airplayvideo.svg new file mode 100644 index 0000000..3b08b9f --- /dev/null +++ b/resources/svg/airplayvideo.svg @@ -0,0 +1 @@ +AirPlay Video icon diff --git a/resources/svg/airtable.svg b/resources/svg/airtable.svg new file mode 100644 index 0000000..4b28477 --- /dev/null +++ b/resources/svg/airtable.svg @@ -0,0 +1 @@ +Airtable icon \ No newline at end of file diff --git a/resources/svg/alfaromeo.svg b/resources/svg/alfaromeo.svg new file mode 100644 index 0000000..7f300b3 --- /dev/null +++ b/resources/svg/alfaromeo.svg @@ -0,0 +1 @@ +Alfa Romeo icon \ No newline at end of file diff --git a/resources/svg/algolia.svg b/resources/svg/algolia.svg new file mode 100644 index 0000000..7ec29c5 --- /dev/null +++ b/resources/svg/algolia.svg @@ -0,0 +1 @@ +Algolia icon diff --git a/resources/svg/alibaba-dot-com.svg b/resources/svg/alibaba-dot-com.svg new file mode 100644 index 0000000..7cfdca2 --- /dev/null +++ b/resources/svg/alibaba-dot-com.svg @@ -0,0 +1 @@ +Alibaba.com icon \ No newline at end of file diff --git a/resources/svg/alibabacloud.svg b/resources/svg/alibabacloud.svg new file mode 100644 index 0000000..dfc76ab --- /dev/null +++ b/resources/svg/alibabacloud.svg @@ -0,0 +1 @@ +Alibaba Cloud icon \ No newline at end of file diff --git a/resources/svg/aliexpress.svg b/resources/svg/aliexpress.svg new file mode 100644 index 0000000..94cd473 --- /dev/null +++ b/resources/svg/aliexpress.svg @@ -0,0 +1 @@ +AliExpress icon \ No newline at end of file diff --git a/resources/svg/alipay.svg b/resources/svg/alipay.svg new file mode 100644 index 0000000..023a03d --- /dev/null +++ b/resources/svg/alipay.svg @@ -0,0 +1 @@ +Alipay icon \ No newline at end of file diff --git a/resources/svg/alitalia.svg b/resources/svg/alitalia.svg new file mode 100644 index 0000000..333fdd2 --- /dev/null +++ b/resources/svg/alitalia.svg @@ -0,0 +1 @@ +Alitalia icon \ No newline at end of file diff --git a/resources/svg/alliedmodders.svg b/resources/svg/alliedmodders.svg new file mode 100644 index 0000000..61501d7 --- /dev/null +++ b/resources/svg/alliedmodders.svg @@ -0,0 +1 @@ +AlliedModders icon \ No newline at end of file diff --git a/resources/svg/allocine.svg b/resources/svg/allocine.svg new file mode 100644 index 0000000..d659ee3 --- /dev/null +++ b/resources/svg/allocine.svg @@ -0,0 +1 @@ +AlloCiné icon \ No newline at end of file diff --git a/resources/svg/alpinelinux.svg b/resources/svg/alpinelinux.svg new file mode 100644 index 0000000..6572be7 --- /dev/null +++ b/resources/svg/alpinelinux.svg @@ -0,0 +1 @@ +Alpine Linux icon diff --git a/resources/svg/altiumdesigner.svg b/resources/svg/altiumdesigner.svg new file mode 100644 index 0000000..403eb6b --- /dev/null +++ b/resources/svg/altiumdesigner.svg @@ -0,0 +1 @@ +Altium Designer icon \ No newline at end of file diff --git a/resources/svg/amazon.svg b/resources/svg/amazon.svg new file mode 100644 index 0000000..4933707 --- /dev/null +++ b/resources/svg/amazon.svg @@ -0,0 +1 @@ +Amazon icon diff --git a/resources/svg/amazonalexa.svg b/resources/svg/amazonalexa.svg new file mode 100644 index 0000000..4818488 --- /dev/null +++ b/resources/svg/amazonalexa.svg @@ -0,0 +1 @@ +Amazon Alexa icon diff --git a/resources/svg/amazonaws.svg b/resources/svg/amazonaws.svg new file mode 100644 index 0000000..b298f35 --- /dev/null +++ b/resources/svg/amazonaws.svg @@ -0,0 +1 @@ +Amazon AWS icon \ No newline at end of file diff --git a/resources/svg/amazondynamodb.svg b/resources/svg/amazondynamodb.svg new file mode 100644 index 0000000..a188117 --- /dev/null +++ b/resources/svg/amazondynamodb.svg @@ -0,0 +1 @@ +Amazon DynamoDB icon \ No newline at end of file diff --git a/resources/svg/amazonfiretv.svg b/resources/svg/amazonfiretv.svg new file mode 100644 index 0000000..01d4e4b --- /dev/null +++ b/resources/svg/amazonfiretv.svg @@ -0,0 +1 @@ +Amazon Fire TV icon \ No newline at end of file diff --git a/resources/svg/amazonlumberyard.svg b/resources/svg/amazonlumberyard.svg new file mode 100644 index 0000000..b353117 --- /dev/null +++ b/resources/svg/amazonlumberyard.svg @@ -0,0 +1 @@ +Amazon Lumberyard icon \ No newline at end of file diff --git a/resources/svg/amazonpay.svg b/resources/svg/amazonpay.svg new file mode 100644 index 0000000..76623a6 --- /dev/null +++ b/resources/svg/amazonpay.svg @@ -0,0 +1 @@ +Amazon Pay icon \ No newline at end of file diff --git a/resources/svg/amazonprime.svg b/resources/svg/amazonprime.svg new file mode 100644 index 0000000..30f4b70 --- /dev/null +++ b/resources/svg/amazonprime.svg @@ -0,0 +1 @@ +Amazon Prime icon \ No newline at end of file diff --git a/resources/svg/amazons3.svg b/resources/svg/amazons3.svg new file mode 100644 index 0000000..fb05dec --- /dev/null +++ b/resources/svg/amazons3.svg @@ -0,0 +1 @@ +Amazon S3 icon \ No newline at end of file diff --git a/resources/svg/amd.svg b/resources/svg/amd.svg new file mode 100644 index 0000000..6dcad6c --- /dev/null +++ b/resources/svg/amd.svg @@ -0,0 +1 @@ +AMD icon \ No newline at end of file diff --git a/resources/svg/americanairlines.svg b/resources/svg/americanairlines.svg new file mode 100644 index 0000000..188eae0 --- /dev/null +++ b/resources/svg/americanairlines.svg @@ -0,0 +1 @@ +American Airlines icon \ No newline at end of file diff --git a/resources/svg/americanexpress.svg b/resources/svg/americanexpress.svg new file mode 100644 index 0000000..b29d0a0 --- /dev/null +++ b/resources/svg/americanexpress.svg @@ -0,0 +1 @@ +American Express icon \ No newline at end of file diff --git a/resources/svg/amp.svg b/resources/svg/amp.svg new file mode 100644 index 0000000..0a109de --- /dev/null +++ b/resources/svg/amp.svg @@ -0,0 +1 @@ +AMP icon \ No newline at end of file diff --git a/resources/svg/amul.svg b/resources/svg/amul.svg new file mode 100644 index 0000000..e09721e --- /dev/null +++ b/resources/svg/amul.svg @@ -0,0 +1 @@ +Amul icon \ No newline at end of file diff --git a/resources/svg/ana.svg b/resources/svg/ana.svg new file mode 100644 index 0000000..15d7809 --- /dev/null +++ b/resources/svg/ana.svg @@ -0,0 +1 @@ +ANA icon \ No newline at end of file diff --git a/resources/svg/anaconda.svg b/resources/svg/anaconda.svg new file mode 100644 index 0000000..aa28370 --- /dev/null +++ b/resources/svg/anaconda.svg @@ -0,0 +1 @@ +Anaconda icon \ No newline at end of file diff --git a/resources/svg/analogue.svg b/resources/svg/analogue.svg new file mode 100644 index 0000000..f5bdacc --- /dev/null +++ b/resources/svg/analogue.svg @@ -0,0 +1 @@ +Analogue icon \ No newline at end of file diff --git a/resources/svg/anchor.svg b/resources/svg/anchor.svg new file mode 100644 index 0000000..3c43e3e --- /dev/null +++ b/resources/svg/anchor.svg @@ -0,0 +1 @@ +Anchor icon \ No newline at end of file diff --git a/resources/svg/andela.svg b/resources/svg/andela.svg new file mode 100644 index 0000000..83dfecc --- /dev/null +++ b/resources/svg/andela.svg @@ -0,0 +1 @@ +Andela icon \ No newline at end of file diff --git a/resources/svg/android.svg b/resources/svg/android.svg new file mode 100644 index 0000000..c73b8eb --- /dev/null +++ b/resources/svg/android.svg @@ -0,0 +1 @@ +Android icon \ No newline at end of file diff --git a/resources/svg/androidauto.svg b/resources/svg/androidauto.svg new file mode 100644 index 0000000..d6705f9 --- /dev/null +++ b/resources/svg/androidauto.svg @@ -0,0 +1 @@ +Android Auto icon diff --git a/resources/svg/androidstudio.svg b/resources/svg/androidstudio.svg new file mode 100644 index 0000000..a64d16b --- /dev/null +++ b/resources/svg/androidstudio.svg @@ -0,0 +1 @@ +Android Studio icon \ No newline at end of file diff --git a/resources/svg/angellist.svg b/resources/svg/angellist.svg new file mode 100644 index 0000000..b0e2a01 --- /dev/null +++ b/resources/svg/angellist.svg @@ -0,0 +1 @@ +AngelList icon \ No newline at end of file diff --git a/resources/svg/angular.svg b/resources/svg/angular.svg new file mode 100644 index 0000000..098e64f --- /dev/null +++ b/resources/svg/angular.svg @@ -0,0 +1 @@ +Angular icon \ No newline at end of file diff --git a/resources/svg/angularjs.svg b/resources/svg/angularjs.svg new file mode 100644 index 0000000..a5e772b --- /dev/null +++ b/resources/svg/angularjs.svg @@ -0,0 +1 @@ +AngularJS icon diff --git a/resources/svg/angularuniversal.svg b/resources/svg/angularuniversal.svg new file mode 100644 index 0000000..ca7a9cf --- /dev/null +++ b/resources/svg/angularuniversal.svg @@ -0,0 +1 @@ +Angular Universal icon \ No newline at end of file diff --git a/resources/svg/anilist.svg b/resources/svg/anilist.svg new file mode 100644 index 0000000..0ba12b7 --- /dev/null +++ b/resources/svg/anilist.svg @@ -0,0 +1 @@ +AniList icon \ No newline at end of file diff --git a/resources/svg/ansible.svg b/resources/svg/ansible.svg new file mode 100644 index 0000000..baee066 --- /dev/null +++ b/resources/svg/ansible.svg @@ -0,0 +1 @@ +Ansible icon \ No newline at end of file diff --git a/resources/svg/ansys.svg b/resources/svg/ansys.svg new file mode 100644 index 0000000..d463f41 --- /dev/null +++ b/resources/svg/ansys.svg @@ -0,0 +1 @@ +Ansys icon \ No newline at end of file diff --git a/resources/svg/antdesign.svg b/resources/svg/antdesign.svg new file mode 100644 index 0000000..892c994 --- /dev/null +++ b/resources/svg/antdesign.svg @@ -0,0 +1 @@ +Ant Design icon \ No newline at end of file diff --git a/resources/svg/antena3.svg b/resources/svg/antena3.svg new file mode 100644 index 0000000..6d30f24 --- /dev/null +++ b/resources/svg/antena3.svg @@ -0,0 +1 @@ +Antena 3 icon \ No newline at end of file diff --git a/resources/svg/anydesk.svg b/resources/svg/anydesk.svg new file mode 100644 index 0000000..095baf5 --- /dev/null +++ b/resources/svg/anydesk.svg @@ -0,0 +1 @@ +AnyDesk icon \ No newline at end of file diff --git a/resources/svg/aol.svg b/resources/svg/aol.svg new file mode 100644 index 0000000..b0f7c65 --- /dev/null +++ b/resources/svg/aol.svg @@ -0,0 +1 @@ +AOL icon \ No newline at end of file diff --git a/resources/svg/apache.svg b/resources/svg/apache.svg new file mode 100644 index 0000000..b5ef4c6 --- /dev/null +++ b/resources/svg/apache.svg @@ -0,0 +1 @@ +Apache icon \ No newline at end of file diff --git a/resources/svg/apacheairflow.svg b/resources/svg/apacheairflow.svg new file mode 100644 index 0000000..592a53e --- /dev/null +++ b/resources/svg/apacheairflow.svg @@ -0,0 +1 @@ +Apache Airflow icon \ No newline at end of file diff --git a/resources/svg/apacheant.svg b/resources/svg/apacheant.svg new file mode 100644 index 0000000..319a09d --- /dev/null +++ b/resources/svg/apacheant.svg @@ -0,0 +1 @@ +Apache Ant icon \ No newline at end of file diff --git a/resources/svg/apachecassandra.svg b/resources/svg/apachecassandra.svg new file mode 100644 index 0000000..166a7db --- /dev/null +++ b/resources/svg/apachecassandra.svg @@ -0,0 +1 @@ +Apache Cassandra icon \ No newline at end of file diff --git a/resources/svg/apachecloudstack.svg b/resources/svg/apachecloudstack.svg new file mode 100644 index 0000000..09f4ed8 --- /dev/null +++ b/resources/svg/apachecloudstack.svg @@ -0,0 +1 @@ +Apache CloudStack icon \ No newline at end of file diff --git a/resources/svg/apachecordova.svg b/resources/svg/apachecordova.svg new file mode 100644 index 0000000..97ef72d --- /dev/null +++ b/resources/svg/apachecordova.svg @@ -0,0 +1 @@ +Apache Cordova icon \ No newline at end of file diff --git a/resources/svg/apachedruid.svg b/resources/svg/apachedruid.svg new file mode 100644 index 0000000..2f8a620 --- /dev/null +++ b/resources/svg/apachedruid.svg @@ -0,0 +1 @@ +Apache Druid icon \ No newline at end of file diff --git a/resources/svg/apacheecharts.svg b/resources/svg/apacheecharts.svg new file mode 100644 index 0000000..e73e9f5 --- /dev/null +++ b/resources/svg/apacheecharts.svg @@ -0,0 +1 @@ +Apache ECharts icon \ No newline at end of file diff --git a/resources/svg/apacheflink.svg b/resources/svg/apacheflink.svg new file mode 100644 index 0000000..d41680b --- /dev/null +++ b/resources/svg/apacheflink.svg @@ -0,0 +1 @@ +Apache Flink icon \ No newline at end of file diff --git a/resources/svg/apachegroovy.svg b/resources/svg/apachegroovy.svg new file mode 100644 index 0000000..5c926f9 --- /dev/null +++ b/resources/svg/apachegroovy.svg @@ -0,0 +1 @@ +Apache Groovy icon \ No newline at end of file diff --git a/resources/svg/apachehive.svg b/resources/svg/apachehive.svg new file mode 100644 index 0000000..61c5cd6 --- /dev/null +++ b/resources/svg/apachehive.svg @@ -0,0 +1 @@ +Apache Hive icon \ No newline at end of file diff --git a/resources/svg/apachejmeter.svg b/resources/svg/apachejmeter.svg new file mode 100644 index 0000000..859ca8c --- /dev/null +++ b/resources/svg/apachejmeter.svg @@ -0,0 +1 @@ +Apache JMeter icon \ No newline at end of file diff --git a/resources/svg/apachekafka.svg b/resources/svg/apachekafka.svg new file mode 100644 index 0000000..723ff4f --- /dev/null +++ b/resources/svg/apachekafka.svg @@ -0,0 +1 @@ +Apache Kafka icon \ No newline at end of file diff --git a/resources/svg/apachekylin.svg b/resources/svg/apachekylin.svg new file mode 100644 index 0000000..c18ef50 --- /dev/null +++ b/resources/svg/apachekylin.svg @@ -0,0 +1 @@ +Apache Kylin icon \ No newline at end of file diff --git a/resources/svg/apachemaven.svg b/resources/svg/apachemaven.svg new file mode 100644 index 0000000..f61214e --- /dev/null +++ b/resources/svg/apachemaven.svg @@ -0,0 +1 @@ +Apache Maven icon \ No newline at end of file diff --git a/resources/svg/apachenetbeanside.svg b/resources/svg/apachenetbeanside.svg new file mode 100644 index 0000000..147cfff --- /dev/null +++ b/resources/svg/apachenetbeanside.svg @@ -0,0 +1 @@ +Apache NetBeans IDE icon \ No newline at end of file diff --git a/resources/svg/apacheopenoffice.svg b/resources/svg/apacheopenoffice.svg new file mode 100644 index 0000000..c376888 --- /dev/null +++ b/resources/svg/apacheopenoffice.svg @@ -0,0 +1 @@ +Apache OpenOffice icon \ No newline at end of file diff --git a/resources/svg/apachepulsar.svg b/resources/svg/apachepulsar.svg new file mode 100644 index 0000000..a8070e9 --- /dev/null +++ b/resources/svg/apachepulsar.svg @@ -0,0 +1 @@ +Apache Pulsar icon \ No newline at end of file diff --git a/resources/svg/apacherocketmq.svg b/resources/svg/apacherocketmq.svg new file mode 100644 index 0000000..48fbdae --- /dev/null +++ b/resources/svg/apacherocketmq.svg @@ -0,0 +1 @@ +Apache RocketMQ icon \ No newline at end of file diff --git a/resources/svg/apachesolr.svg b/resources/svg/apachesolr.svg new file mode 100644 index 0000000..4f19b1c --- /dev/null +++ b/resources/svg/apachesolr.svg @@ -0,0 +1 @@ +Apache Solr icon \ No newline at end of file diff --git a/resources/svg/apachespark.svg b/resources/svg/apachespark.svg new file mode 100644 index 0000000..ed10950 --- /dev/null +++ b/resources/svg/apachespark.svg @@ -0,0 +1 @@ +Apache Spark icon \ No newline at end of file diff --git a/resources/svg/apachetomcat.svg b/resources/svg/apachetomcat.svg new file mode 100644 index 0000000..675163c --- /dev/null +++ b/resources/svg/apachetomcat.svg @@ -0,0 +1 @@ +Apache Tomcat icon \ No newline at end of file diff --git a/resources/svg/aparat.svg b/resources/svg/aparat.svg new file mode 100644 index 0000000..4e2f95b --- /dev/null +++ b/resources/svg/aparat.svg @@ -0,0 +1 @@ +Aparat icon \ No newline at end of file diff --git a/resources/svg/apollographql.svg b/resources/svg/apollographql.svg new file mode 100644 index 0000000..61e9986 --- /dev/null +++ b/resources/svg/apollographql.svg @@ -0,0 +1 @@ +Apollo GraphQL icon diff --git a/resources/svg/apostrophe.svg b/resources/svg/apostrophe.svg new file mode 100644 index 0000000..4e3bb3e --- /dev/null +++ b/resources/svg/apostrophe.svg @@ -0,0 +1 @@ +Apostrophe icon \ No newline at end of file diff --git a/resources/svg/apple.svg b/resources/svg/apple.svg new file mode 100644 index 0000000..ab16b4f --- /dev/null +++ b/resources/svg/apple.svg @@ -0,0 +1 @@ +Apple icon \ No newline at end of file diff --git a/resources/svg/applearcade.svg b/resources/svg/applearcade.svg new file mode 100644 index 0000000..ac4887a --- /dev/null +++ b/resources/svg/applearcade.svg @@ -0,0 +1 @@ +Apple Arcade icon \ No newline at end of file diff --git a/resources/svg/applemusic.svg b/resources/svg/applemusic.svg new file mode 100644 index 0000000..402c68c --- /dev/null +++ b/resources/svg/applemusic.svg @@ -0,0 +1 @@ +Apple Music icon \ No newline at end of file diff --git a/resources/svg/applepay.svg b/resources/svg/applepay.svg new file mode 100644 index 0000000..da11fa8 --- /dev/null +++ b/resources/svg/applepay.svg @@ -0,0 +1 @@ +Apple Pay icon \ No newline at end of file diff --git a/resources/svg/applepodcasts.svg b/resources/svg/applepodcasts.svg new file mode 100644 index 0000000..3a1a08f --- /dev/null +++ b/resources/svg/applepodcasts.svg @@ -0,0 +1 @@ +Apple Podcasts icon diff --git a/resources/svg/appletv.svg b/resources/svg/appletv.svg new file mode 100644 index 0000000..7e7e820 --- /dev/null +++ b/resources/svg/appletv.svg @@ -0,0 +1 @@ +Apple TV icon \ No newline at end of file diff --git a/resources/svg/appsignal.svg b/resources/svg/appsignal.svg new file mode 100644 index 0000000..02cbe34 --- /dev/null +++ b/resources/svg/appsignal.svg @@ -0,0 +1 @@ +AppSignal icon \ No newline at end of file diff --git a/resources/svg/appstore.svg b/resources/svg/appstore.svg new file mode 100644 index 0000000..34e5566 --- /dev/null +++ b/resources/svg/appstore.svg @@ -0,0 +1 @@ +App Store icon \ No newline at end of file diff --git a/resources/svg/appveyor.svg b/resources/svg/appveyor.svg new file mode 100644 index 0000000..a8b8402 --- /dev/null +++ b/resources/svg/appveyor.svg @@ -0,0 +1 @@ +AppVeyor icon \ No newline at end of file diff --git a/resources/svg/aral.svg b/resources/svg/aral.svg new file mode 100644 index 0000000..947974c --- /dev/null +++ b/resources/svg/aral.svg @@ -0,0 +1 @@ +ARAL icon \ No newline at end of file diff --git a/resources/svg/arangodb.svg b/resources/svg/arangodb.svg new file mode 100644 index 0000000..7adde9b --- /dev/null +++ b/resources/svg/arangodb.svg @@ -0,0 +1 @@ +ArangoDB icon \ No newline at end of file diff --git a/resources/svg/archicad.svg b/resources/svg/archicad.svg new file mode 100644 index 0000000..2970da8 --- /dev/null +++ b/resources/svg/archicad.svg @@ -0,0 +1 @@ +Archicad icon \ No newline at end of file diff --git a/resources/svg/archiveofourown.svg b/resources/svg/archiveofourown.svg new file mode 100644 index 0000000..e015655 --- /dev/null +++ b/resources/svg/archiveofourown.svg @@ -0,0 +1 @@ +Archive of Our Own icon \ No newline at end of file diff --git a/resources/svg/archlinux.svg b/resources/svg/archlinux.svg new file mode 100644 index 0000000..0007904 --- /dev/null +++ b/resources/svg/archlinux.svg @@ -0,0 +1 @@ +Arch Linux icon \ No newline at end of file diff --git a/resources/svg/ardour.svg b/resources/svg/ardour.svg new file mode 100644 index 0000000..7b07a17 --- /dev/null +++ b/resources/svg/ardour.svg @@ -0,0 +1 @@ +Ardour icon \ No newline at end of file diff --git a/resources/svg/arduino.svg b/resources/svg/arduino.svg new file mode 100644 index 0000000..f227601 --- /dev/null +++ b/resources/svg/arduino.svg @@ -0,0 +1 @@ +Arduino icon \ No newline at end of file diff --git a/resources/svg/arkecosystem.svg b/resources/svg/arkecosystem.svg new file mode 100644 index 0000000..5766ffc --- /dev/null +++ b/resources/svg/arkecosystem.svg @@ -0,0 +1 @@ +ARK Ecosystem icon \ No newline at end of file diff --git a/resources/svg/arlo.svg b/resources/svg/arlo.svg new file mode 100644 index 0000000..fec179b --- /dev/null +++ b/resources/svg/arlo.svg @@ -0,0 +1 @@ +Arlo icon \ No newline at end of file diff --git a/resources/svg/artixlinux.svg b/resources/svg/artixlinux.svg new file mode 100644 index 0000000..c7ed287 --- /dev/null +++ b/resources/svg/artixlinux.svg @@ -0,0 +1 @@ +Artix Linux icon \ No newline at end of file diff --git a/resources/svg/artstation.svg b/resources/svg/artstation.svg new file mode 100644 index 0000000..372ec40 --- /dev/null +++ b/resources/svg/artstation.svg @@ -0,0 +1 @@ +ArtStation icon \ No newline at end of file diff --git a/resources/svg/arxiv.svg b/resources/svg/arxiv.svg new file mode 100644 index 0000000..f7ba7db --- /dev/null +++ b/resources/svg/arxiv.svg @@ -0,0 +1 @@ +arXiv icon \ No newline at end of file diff --git a/resources/svg/asana.svg b/resources/svg/asana.svg new file mode 100644 index 0000000..45a12c8 --- /dev/null +++ b/resources/svg/asana.svg @@ -0,0 +1 @@ +Asana icon \ No newline at end of file diff --git a/resources/svg/asciidoctor.svg b/resources/svg/asciidoctor.svg new file mode 100644 index 0000000..b366dd4 --- /dev/null +++ b/resources/svg/asciidoctor.svg @@ -0,0 +1 @@ +Asciidoctor icon \ No newline at end of file diff --git a/resources/svg/asciinema.svg b/resources/svg/asciinema.svg new file mode 100644 index 0000000..1222faf --- /dev/null +++ b/resources/svg/asciinema.svg @@ -0,0 +1 @@ +asciinema icon diff --git a/resources/svg/aseprite.svg b/resources/svg/aseprite.svg new file mode 100644 index 0000000..ab5db64 --- /dev/null +++ b/resources/svg/aseprite.svg @@ -0,0 +1 @@ +Aseprite icon \ No newline at end of file diff --git a/resources/svg/askfm.svg b/resources/svg/askfm.svg new file mode 100644 index 0000000..96cd74f --- /dev/null +++ b/resources/svg/askfm.svg @@ -0,0 +1 @@ +ASKfm icon \ No newline at end of file diff --git a/resources/svg/assemblyscript.svg b/resources/svg/assemblyscript.svg new file mode 100644 index 0000000..1e5467e --- /dev/null +++ b/resources/svg/assemblyscript.svg @@ -0,0 +1 @@ +AssemblyScript icon \ No newline at end of file diff --git a/resources/svg/asus.svg b/resources/svg/asus.svg new file mode 100644 index 0000000..38dc396 --- /dev/null +++ b/resources/svg/asus.svg @@ -0,0 +1 @@ +ASUS icon \ No newline at end of file diff --git a/resources/svg/at-and-t.svg b/resources/svg/at-and-t.svg new file mode 100644 index 0000000..8ac37ec --- /dev/null +++ b/resources/svg/at-and-t.svg @@ -0,0 +1 @@ +AT&T icon \ No newline at end of file diff --git a/resources/svg/atari.svg b/resources/svg/atari.svg new file mode 100644 index 0000000..71a439f --- /dev/null +++ b/resources/svg/atari.svg @@ -0,0 +1 @@ +Atari icon \ No newline at end of file diff --git a/resources/svg/atlassian.svg b/resources/svg/atlassian.svg new file mode 100644 index 0000000..e4683a5 --- /dev/null +++ b/resources/svg/atlassian.svg @@ -0,0 +1 @@ +Atlassian icon \ No newline at end of file diff --git a/resources/svg/atom.svg b/resources/svg/atom.svg new file mode 100644 index 0000000..e3bf192 --- /dev/null +++ b/resources/svg/atom.svg @@ -0,0 +1 @@ +Atom icon \ No newline at end of file diff --git a/resources/svg/audacity.svg b/resources/svg/audacity.svg new file mode 100644 index 0000000..8792e9c --- /dev/null +++ b/resources/svg/audacity.svg @@ -0,0 +1 @@ +Audacity icon \ No newline at end of file diff --git a/resources/svg/audi.svg b/resources/svg/audi.svg new file mode 100644 index 0000000..5c48cad --- /dev/null +++ b/resources/svg/audi.svg @@ -0,0 +1 @@ +Audi icon \ No newline at end of file diff --git a/resources/svg/audible.svg b/resources/svg/audible.svg new file mode 100644 index 0000000..004cc57 --- /dev/null +++ b/resources/svg/audible.svg @@ -0,0 +1 @@ +Audible icon \ No newline at end of file diff --git a/resources/svg/audio-technica.svg b/resources/svg/audio-technica.svg new file mode 100644 index 0000000..4c756ad --- /dev/null +++ b/resources/svg/audio-technica.svg @@ -0,0 +1 @@ +Audio-Technica icon \ No newline at end of file diff --git a/resources/svg/audioboom.svg b/resources/svg/audioboom.svg new file mode 100644 index 0000000..b42dda8 --- /dev/null +++ b/resources/svg/audioboom.svg @@ -0,0 +1 @@ +Audioboom icon \ No newline at end of file diff --git a/resources/svg/audiomack.svg b/resources/svg/audiomack.svg new file mode 100644 index 0000000..c4c4efc --- /dev/null +++ b/resources/svg/audiomack.svg @@ -0,0 +1 @@ +Audiomack icon \ No newline at end of file diff --git a/resources/svg/aurelia.svg b/resources/svg/aurelia.svg new file mode 100644 index 0000000..5b34e84 --- /dev/null +++ b/resources/svg/aurelia.svg @@ -0,0 +1 @@ +Aurelia icon \ No newline at end of file diff --git a/resources/svg/auth0.svg b/resources/svg/auth0.svg new file mode 100644 index 0000000..9342ec9 --- /dev/null +++ b/resources/svg/auth0.svg @@ -0,0 +1 @@ +Auth0 icon \ No newline at end of file diff --git a/resources/svg/authy.svg b/resources/svg/authy.svg new file mode 100644 index 0000000..ebf0528 --- /dev/null +++ b/resources/svg/authy.svg @@ -0,0 +1 @@ +Authy icon \ No newline at end of file diff --git a/resources/svg/autodesk.svg b/resources/svg/autodesk.svg new file mode 100644 index 0000000..14e8487 --- /dev/null +++ b/resources/svg/autodesk.svg @@ -0,0 +1 @@ +Autodesk icon \ No newline at end of file diff --git a/resources/svg/autohotkey.svg b/resources/svg/autohotkey.svg new file mode 100644 index 0000000..c53a40d --- /dev/null +++ b/resources/svg/autohotkey.svg @@ -0,0 +1 @@ +AutoHotkey icon \ No newline at end of file diff --git a/resources/svg/automatic.svg b/resources/svg/automatic.svg new file mode 100644 index 0000000..736e342 --- /dev/null +++ b/resources/svg/automatic.svg @@ -0,0 +1 @@ +Automatic icon \ No newline at end of file diff --git a/resources/svg/autotask.svg b/resources/svg/autotask.svg new file mode 100644 index 0000000..4dff607 --- /dev/null +++ b/resources/svg/autotask.svg @@ -0,0 +1 @@ +Autotask icon \ No newline at end of file diff --git a/resources/svg/aventrix.svg b/resources/svg/aventrix.svg new file mode 100644 index 0000000..f04b1e7 --- /dev/null +++ b/resources/svg/aventrix.svg @@ -0,0 +1 @@ +Aventrix icon \ No newline at end of file diff --git a/resources/svg/awesomelists.svg b/resources/svg/awesomelists.svg new file mode 100644 index 0000000..91d2fa3 --- /dev/null +++ b/resources/svg/awesomelists.svg @@ -0,0 +1 @@ +Awesome Lists icon \ No newline at end of file diff --git a/resources/svg/awesomewm.svg b/resources/svg/awesomewm.svg new file mode 100644 index 0000000..8f2c443 --- /dev/null +++ b/resources/svg/awesomewm.svg @@ -0,0 +1 @@ +awesomeWM icon diff --git a/resources/svg/awsamplify.svg b/resources/svg/awsamplify.svg new file mode 100644 index 0000000..d5d751a --- /dev/null +++ b/resources/svg/awsamplify.svg @@ -0,0 +1 @@ +AWS Amplify icon \ No newline at end of file diff --git a/resources/svg/azureartifacts.svg b/resources/svg/azureartifacts.svg new file mode 100644 index 0000000..918231e --- /dev/null +++ b/resources/svg/azureartifacts.svg @@ -0,0 +1 @@ +Azure Artifacts icon \ No newline at end of file diff --git a/resources/svg/azuredataexplorer.svg b/resources/svg/azuredataexplorer.svg new file mode 100644 index 0000000..b2fc461 --- /dev/null +++ b/resources/svg/azuredataexplorer.svg @@ -0,0 +1 @@ +Azure Data Explorer icon \ No newline at end of file diff --git a/resources/svg/azuredevops.svg b/resources/svg/azuredevops.svg new file mode 100644 index 0000000..4d1830b --- /dev/null +++ b/resources/svg/azuredevops.svg @@ -0,0 +1 @@ +Azure DevOps icon \ No newline at end of file diff --git a/resources/svg/azurefunctions.svg b/resources/svg/azurefunctions.svg new file mode 100644 index 0000000..4fa5dc0 --- /dev/null +++ b/resources/svg/azurefunctions.svg @@ -0,0 +1 @@ +Azure Functions icon \ No newline at end of file diff --git a/resources/svg/azurepipelines.svg b/resources/svg/azurepipelines.svg new file mode 100644 index 0000000..6e60822 --- /dev/null +++ b/resources/svg/azurepipelines.svg @@ -0,0 +1 @@ +Azure Pipelines icon \ No newline at end of file diff --git a/resources/svg/b-and-rautomation.svg b/resources/svg/b-and-rautomation.svg new file mode 100644 index 0000000..8901e91 --- /dev/null +++ b/resources/svg/b-and-rautomation.svg @@ -0,0 +1 @@ +B&R Automation icon \ No newline at end of file diff --git a/resources/svg/babel.svg b/resources/svg/babel.svg new file mode 100644 index 0000000..8cc9075 --- /dev/null +++ b/resources/svg/babel.svg @@ -0,0 +1 @@ +Babel icon diff --git a/resources/svg/badgr.svg b/resources/svg/badgr.svg new file mode 100644 index 0000000..75bd7d4 --- /dev/null +++ b/resources/svg/badgr.svg @@ -0,0 +1 @@ +Badgr icon \ No newline at end of file diff --git a/resources/svg/badoo.svg b/resources/svg/badoo.svg new file mode 100644 index 0000000..e86f483 --- /dev/null +++ b/resources/svg/badoo.svg @@ -0,0 +1 @@ +Badoo icon \ No newline at end of file diff --git a/resources/svg/baidu.svg b/resources/svg/baidu.svg new file mode 100644 index 0000000..6536c13 --- /dev/null +++ b/resources/svg/baidu.svg @@ -0,0 +1 @@ +Baidu icon \ No newline at end of file diff --git a/resources/svg/bamboo.svg b/resources/svg/bamboo.svg new file mode 100644 index 0000000..a939274 --- /dev/null +++ b/resources/svg/bamboo.svg @@ -0,0 +1 @@ +Bamboo icon \ No newline at end of file diff --git a/resources/svg/bancontact.svg b/resources/svg/bancontact.svg new file mode 100644 index 0000000..c75ff48 --- /dev/null +++ b/resources/svg/bancontact.svg @@ -0,0 +1 @@ +Bancontact icon \ No newline at end of file diff --git a/resources/svg/bandcamp.svg b/resources/svg/bandcamp.svg new file mode 100644 index 0000000..9e49e09 --- /dev/null +++ b/resources/svg/bandcamp.svg @@ -0,0 +1 @@ +Bandcamp icon \ No newline at end of file diff --git a/resources/svg/bandlab.svg b/resources/svg/bandlab.svg new file mode 100644 index 0000000..80456a4 --- /dev/null +++ b/resources/svg/bandlab.svg @@ -0,0 +1 @@ +BandLab icon \ No newline at end of file diff --git a/resources/svg/bandsintown.svg b/resources/svg/bandsintown.svg new file mode 100644 index 0000000..f3bce5b --- /dev/null +++ b/resources/svg/bandsintown.svg @@ -0,0 +1 @@ +Bandsintown icon diff --git a/resources/svg/bankofamerica.svg b/resources/svg/bankofamerica.svg new file mode 100644 index 0000000..e56965b --- /dev/null +++ b/resources/svg/bankofamerica.svg @@ -0,0 +1 @@ +Bank of America icon \ No newline at end of file diff --git a/resources/svg/barclays.svg b/resources/svg/barclays.svg new file mode 100644 index 0000000..8c8f5d3 --- /dev/null +++ b/resources/svg/barclays.svg @@ -0,0 +1 @@ +Barclays icon diff --git a/resources/svg/baremetrics.svg b/resources/svg/baremetrics.svg new file mode 100644 index 0000000..6f73efa --- /dev/null +++ b/resources/svg/baremetrics.svg @@ -0,0 +1 @@ +Baremetrics icon \ No newline at end of file diff --git a/resources/svg/basecamp.svg b/resources/svg/basecamp.svg new file mode 100644 index 0000000..5dd9d00 --- /dev/null +++ b/resources/svg/basecamp.svg @@ -0,0 +1 @@ +Basecamp icon \ No newline at end of file diff --git a/resources/svg/bata.svg b/resources/svg/bata.svg new file mode 100644 index 0000000..4a7a3b5 --- /dev/null +++ b/resources/svg/bata.svg @@ -0,0 +1 @@ +Bata icon \ No newline at end of file diff --git a/resources/svg/bathasu.svg b/resources/svg/bathasu.svg new file mode 100644 index 0000000..53cc332 --- /dev/null +++ b/resources/svg/bathasu.svg @@ -0,0 +1 @@ +Bath ASU icon \ No newline at end of file diff --git a/resources/svg/battle-dot-net.svg b/resources/svg/battle-dot-net.svg new file mode 100644 index 0000000..cfd1a3e --- /dev/null +++ b/resources/svg/battle-dot-net.svg @@ -0,0 +1 @@ +Battle.net icon diff --git a/resources/svg/bbc.svg b/resources/svg/bbc.svg new file mode 100644 index 0000000..035b48f --- /dev/null +++ b/resources/svg/bbc.svg @@ -0,0 +1 @@ +BBC icon \ No newline at end of file diff --git a/resources/svg/bbciplayer.svg b/resources/svg/bbciplayer.svg new file mode 100644 index 0000000..2aad21d --- /dev/null +++ b/resources/svg/bbciplayer.svg @@ -0,0 +1 @@ +BBC iPlayer icon \ No newline at end of file diff --git a/resources/svg/beatport.svg b/resources/svg/beatport.svg new file mode 100644 index 0000000..5838533 --- /dev/null +++ b/resources/svg/beatport.svg @@ -0,0 +1 @@ +Beatport icon \ No newline at end of file diff --git a/resources/svg/beats.svg b/resources/svg/beats.svg new file mode 100644 index 0000000..2f5e0b4 --- /dev/null +++ b/resources/svg/beats.svg @@ -0,0 +1 @@ +Beats icon diff --git a/resources/svg/beatsbydre.svg b/resources/svg/beatsbydre.svg new file mode 100644 index 0000000..22b499d --- /dev/null +++ b/resources/svg/beatsbydre.svg @@ -0,0 +1 @@ +Beats by Dre icon \ No newline at end of file diff --git a/resources/svg/behance.svg b/resources/svg/behance.svg new file mode 100644 index 0000000..7b09c5b --- /dev/null +++ b/resources/svg/behance.svg @@ -0,0 +1 @@ +Behance icon \ No newline at end of file diff --git a/resources/svg/beijingsubway.svg b/resources/svg/beijingsubway.svg new file mode 100644 index 0000000..7ad6469 --- /dev/null +++ b/resources/svg/beijingsubway.svg @@ -0,0 +1 @@ +Beijing Subway icon \ No newline at end of file diff --git a/resources/svg/bentley.svg b/resources/svg/bentley.svg new file mode 100644 index 0000000..54aa5f5 --- /dev/null +++ b/resources/svg/bentley.svg @@ -0,0 +1 @@ +Bentley icon \ No newline at end of file diff --git a/resources/svg/bigbasket.svg b/resources/svg/bigbasket.svg new file mode 100644 index 0000000..e4a53ac --- /dev/null +++ b/resources/svg/bigbasket.svg @@ -0,0 +1 @@ +bigbasket icon \ No newline at end of file diff --git a/resources/svg/bigcartel.svg b/resources/svg/bigcartel.svg new file mode 100644 index 0000000..3a11c7d --- /dev/null +++ b/resources/svg/bigcartel.svg @@ -0,0 +1 @@ +Big Cartel icon \ No newline at end of file diff --git a/resources/svg/bigcommerce.svg b/resources/svg/bigcommerce.svg new file mode 100644 index 0000000..db9672d --- /dev/null +++ b/resources/svg/bigcommerce.svg @@ -0,0 +1 @@ +BigCommerce icon \ No newline at end of file diff --git a/resources/svg/bilibili.svg b/resources/svg/bilibili.svg new file mode 100644 index 0000000..c2eb779 --- /dev/null +++ b/resources/svg/bilibili.svg @@ -0,0 +1 @@ +Bilibili icon \ No newline at end of file diff --git a/resources/svg/bing.svg b/resources/svg/bing.svg new file mode 100644 index 0000000..dd2c7d4 --- /dev/null +++ b/resources/svg/bing.svg @@ -0,0 +1 @@ +Bing icon \ No newline at end of file diff --git a/resources/svg/bit.svg b/resources/svg/bit.svg new file mode 100644 index 0000000..031f0c1 --- /dev/null +++ b/resources/svg/bit.svg @@ -0,0 +1 @@ +Bit icon \ No newline at end of file diff --git a/resources/svg/bitbucket.svg b/resources/svg/bitbucket.svg new file mode 100644 index 0000000..e84b098 --- /dev/null +++ b/resources/svg/bitbucket.svg @@ -0,0 +1 @@ +Bitbucket icon \ No newline at end of file diff --git a/resources/svg/bitcoin.svg b/resources/svg/bitcoin.svg new file mode 100644 index 0000000..b67393f --- /dev/null +++ b/resources/svg/bitcoin.svg @@ -0,0 +1 @@ +Bitcoin icon \ No newline at end of file diff --git a/resources/svg/bitcoincash.svg b/resources/svg/bitcoincash.svg new file mode 100644 index 0000000..05d2ccd --- /dev/null +++ b/resources/svg/bitcoincash.svg @@ -0,0 +1 @@ +Bitcoin Cash icon \ No newline at end of file diff --git a/resources/svg/bitcoinsv.svg b/resources/svg/bitcoinsv.svg new file mode 100644 index 0000000..3fbb769 --- /dev/null +++ b/resources/svg/bitcoinsv.svg @@ -0,0 +1 @@ +Bitcoin SV icon \ No newline at end of file diff --git a/resources/svg/bitdefender.svg b/resources/svg/bitdefender.svg new file mode 100644 index 0000000..f12e825 --- /dev/null +++ b/resources/svg/bitdefender.svg @@ -0,0 +1 @@ +Bitdefender icon \ No newline at end of file diff --git a/resources/svg/bitly.svg b/resources/svg/bitly.svg new file mode 100644 index 0000000..cbeb38e --- /dev/null +++ b/resources/svg/bitly.svg @@ -0,0 +1 @@ +Bitly icon \ No newline at end of file diff --git a/resources/svg/bitrise.svg b/resources/svg/bitrise.svg new file mode 100644 index 0000000..bd05395 --- /dev/null +++ b/resources/svg/bitrise.svg @@ -0,0 +1 @@ +Bitrise icon \ No newline at end of file diff --git a/resources/svg/bitwarden.svg b/resources/svg/bitwarden.svg new file mode 100644 index 0000000..49d619b --- /dev/null +++ b/resources/svg/bitwarden.svg @@ -0,0 +1 @@ +Bitwarden icon \ No newline at end of file diff --git a/resources/svg/bitwig.svg b/resources/svg/bitwig.svg new file mode 100644 index 0000000..6ce0d6a --- /dev/null +++ b/resources/svg/bitwig.svg @@ -0,0 +1 @@ +Bitwig icon \ No newline at end of file diff --git a/resources/svg/blackberry.svg b/resources/svg/blackberry.svg new file mode 100644 index 0000000..279325d --- /dev/null +++ b/resources/svg/blackberry.svg @@ -0,0 +1 @@ +Blackberry icon diff --git a/resources/svg/blazemeter.svg b/resources/svg/blazemeter.svg new file mode 100644 index 0000000..3b8efff --- /dev/null +++ b/resources/svg/blazemeter.svg @@ -0,0 +1 @@ +Blazemeter icon \ No newline at end of file diff --git a/resources/svg/blazor.svg b/resources/svg/blazor.svg new file mode 100644 index 0000000..4510be9 --- /dev/null +++ b/resources/svg/blazor.svg @@ -0,0 +1 @@ +Blazor icon \ No newline at end of file diff --git a/resources/svg/blender.svg b/resources/svg/blender.svg new file mode 100644 index 0000000..2a7fc93 --- /dev/null +++ b/resources/svg/blender.svg @@ -0,0 +1 @@ +Blender icon \ No newline at end of file diff --git a/resources/svg/blockchain-dot-com.svg b/resources/svg/blockchain-dot-com.svg new file mode 100644 index 0000000..e06a19e --- /dev/null +++ b/resources/svg/blockchain-dot-com.svg @@ -0,0 +1 @@ +Blockchain.com icon \ No newline at end of file diff --git a/resources/svg/blogger.svg b/resources/svg/blogger.svg new file mode 100644 index 0000000..a967350 --- /dev/null +++ b/resources/svg/blogger.svg @@ -0,0 +1 @@ +Blogger icon \ No newline at end of file diff --git a/resources/svg/bloglovin.svg b/resources/svg/bloglovin.svg new file mode 100644 index 0000000..4ea943b --- /dev/null +++ b/resources/svg/bloglovin.svg @@ -0,0 +1 @@ +Bloglovin icon \ No newline at end of file diff --git a/resources/svg/blueprint.svg b/resources/svg/blueprint.svg new file mode 100644 index 0000000..911f3be --- /dev/null +++ b/resources/svg/blueprint.svg @@ -0,0 +1 @@ +Blueprint icon \ No newline at end of file diff --git a/resources/svg/bluetooth.svg b/resources/svg/bluetooth.svg new file mode 100644 index 0000000..67bf503 --- /dev/null +++ b/resources/svg/bluetooth.svg @@ -0,0 +1 @@ +Bluetooth icon diff --git a/resources/svg/bmcsoftware.svg b/resources/svg/bmcsoftware.svg new file mode 100644 index 0000000..39243f4 --- /dev/null +++ b/resources/svg/bmcsoftware.svg @@ -0,0 +1 @@ +BMC Software icon \ No newline at end of file diff --git a/resources/svg/bmw.svg b/resources/svg/bmw.svg new file mode 100644 index 0000000..32c1e2f --- /dev/null +++ b/resources/svg/bmw.svg @@ -0,0 +1 @@ +BMW icon \ No newline at end of file diff --git a/resources/svg/boeing.svg b/resources/svg/boeing.svg new file mode 100644 index 0000000..4e1cb49 --- /dev/null +++ b/resources/svg/boeing.svg @@ -0,0 +1 @@ +Boeing icon \ No newline at end of file diff --git a/resources/svg/bookmeter.svg b/resources/svg/bookmeter.svg new file mode 100644 index 0000000..bc490c9 --- /dev/null +++ b/resources/svg/bookmeter.svg @@ -0,0 +1 @@ +Bookmeter icon \ No newline at end of file diff --git a/resources/svg/boost.svg b/resources/svg/boost.svg new file mode 100644 index 0000000..3486bcd --- /dev/null +++ b/resources/svg/boost.svg @@ -0,0 +1 @@ +Boost icon \ No newline at end of file diff --git a/resources/svg/bootstrap.svg b/resources/svg/bootstrap.svg new file mode 100644 index 0000000..5ae8bb2 --- /dev/null +++ b/resources/svg/bootstrap.svg @@ -0,0 +1 @@ +Bootstrap icon \ No newline at end of file diff --git a/resources/svg/bosch.svg b/resources/svg/bosch.svg new file mode 100644 index 0000000..46b8f7b --- /dev/null +++ b/resources/svg/bosch.svg @@ -0,0 +1 @@ +Bosch icon \ No newline at end of file diff --git a/resources/svg/bose.svg b/resources/svg/bose.svg new file mode 100644 index 0000000..7229272 --- /dev/null +++ b/resources/svg/bose.svg @@ -0,0 +1 @@ +Bose icon diff --git a/resources/svg/bower.svg b/resources/svg/bower.svg new file mode 100644 index 0000000..d183de7 --- /dev/null +++ b/resources/svg/bower.svg @@ -0,0 +1 @@ +Bower icon \ No newline at end of file diff --git a/resources/svg/box.svg b/resources/svg/box.svg new file mode 100644 index 0000000..0a1634c --- /dev/null +++ b/resources/svg/box.svg @@ -0,0 +1 @@ +Box icon diff --git a/resources/svg/brand-dot-ai.svg b/resources/svg/brand-dot-ai.svg new file mode 100644 index 0000000..26ab26e --- /dev/null +++ b/resources/svg/brand-dot-ai.svg @@ -0,0 +1 @@ +Brand.ai icon \ No newline at end of file diff --git a/resources/svg/brandfolder.svg b/resources/svg/brandfolder.svg new file mode 100644 index 0000000..8baa6d4 --- /dev/null +++ b/resources/svg/brandfolder.svg @@ -0,0 +1 @@ +Brandfolder icon \ No newline at end of file diff --git a/resources/svg/brave.svg b/resources/svg/brave.svg new file mode 100644 index 0000000..61bc31a --- /dev/null +++ b/resources/svg/brave.svg @@ -0,0 +1 @@ +Brave icon diff --git a/resources/svg/breaker.svg b/resources/svg/breaker.svg new file mode 100644 index 0000000..8a02b5c --- /dev/null +++ b/resources/svg/breaker.svg @@ -0,0 +1 @@ +Breaker icon \ No newline at end of file diff --git a/resources/svg/britishairways.svg b/resources/svg/britishairways.svg new file mode 100644 index 0000000..5aedebd --- /dev/null +++ b/resources/svg/britishairways.svg @@ -0,0 +1 @@ +British Airways icon \ No newline at end of file diff --git a/resources/svg/broadcom.svg b/resources/svg/broadcom.svg new file mode 100644 index 0000000..aa70206 --- /dev/null +++ b/resources/svg/broadcom.svg @@ -0,0 +1 @@ +Broadcom icon diff --git a/resources/svg/bt.svg b/resources/svg/bt.svg new file mode 100644 index 0000000..29f578e --- /dev/null +++ b/resources/svg/bt.svg @@ -0,0 +1 @@ +BT icon \ No newline at end of file diff --git a/resources/svg/buddy.svg b/resources/svg/buddy.svg new file mode 100644 index 0000000..b0e1e83 --- /dev/null +++ b/resources/svg/buddy.svg @@ -0,0 +1 @@ +Buddy icon \ No newline at end of file diff --git a/resources/svg/buefy.svg b/resources/svg/buefy.svg new file mode 100644 index 0000000..0a3002c --- /dev/null +++ b/resources/svg/buefy.svg @@ -0,0 +1 @@ +Buefy icon diff --git a/resources/svg/buffer.svg b/resources/svg/buffer.svg new file mode 100644 index 0000000..a65b79d --- /dev/null +++ b/resources/svg/buffer.svg @@ -0,0 +1 @@ +Buffer icon \ No newline at end of file diff --git a/resources/svg/bugatti.svg b/resources/svg/bugatti.svg new file mode 100644 index 0000000..23e726d --- /dev/null +++ b/resources/svg/bugatti.svg @@ -0,0 +1 @@ +Bugatti icon \ No newline at end of file diff --git a/resources/svg/bugcrowd.svg b/resources/svg/bugcrowd.svg new file mode 100644 index 0000000..0948ae6 --- /dev/null +++ b/resources/svg/bugcrowd.svg @@ -0,0 +1 @@ +Bugcrowd icon \ No newline at end of file diff --git a/resources/svg/bugsnag.svg b/resources/svg/bugsnag.svg new file mode 100644 index 0000000..8f02593 --- /dev/null +++ b/resources/svg/bugsnag.svg @@ -0,0 +1 @@ +Bugsnag icon diff --git a/resources/svg/buildkite.svg b/resources/svg/buildkite.svg new file mode 100644 index 0000000..b9ce3b4 --- /dev/null +++ b/resources/svg/buildkite.svg @@ -0,0 +1 @@ +Buildkite icon \ No newline at end of file diff --git a/resources/svg/bulma.svg b/resources/svg/bulma.svg new file mode 100644 index 0000000..e5a86ff --- /dev/null +++ b/resources/svg/bulma.svg @@ -0,0 +1 @@ +Bulma icon diff --git a/resources/svg/bunq.svg b/resources/svg/bunq.svg new file mode 100644 index 0000000..f49bce2 --- /dev/null +++ b/resources/svg/bunq.svg @@ -0,0 +1 @@ +bunq icon \ No newline at end of file diff --git a/resources/svg/buymeacoffee.svg b/resources/svg/buymeacoffee.svg new file mode 100644 index 0000000..0e89f8f --- /dev/null +++ b/resources/svg/buymeacoffee.svg @@ -0,0 +1 @@ +Buy Me A Coffee icon \ No newline at end of file diff --git a/resources/svg/buzzfeed.svg b/resources/svg/buzzfeed.svg new file mode 100644 index 0000000..0956d68 --- /dev/null +++ b/resources/svg/buzzfeed.svg @@ -0,0 +1 @@ +BuzzFeed icon \ No newline at end of file diff --git a/resources/svg/byte.svg b/resources/svg/byte.svg new file mode 100644 index 0000000..9df1fec --- /dev/null +++ b/resources/svg/byte.svg @@ -0,0 +1 @@ +byte icon \ No newline at end of file diff --git a/resources/svg/c.svg b/resources/svg/c.svg new file mode 100644 index 0000000..b6b3896 --- /dev/null +++ b/resources/svg/c.svg @@ -0,0 +1 @@ +C icon \ No newline at end of file diff --git a/resources/svg/cachet.svg b/resources/svg/cachet.svg new file mode 100644 index 0000000..b4a0439 --- /dev/null +++ b/resources/svg/cachet.svg @@ -0,0 +1 @@ +Cachet icon \ No newline at end of file diff --git a/resources/svg/cairometro.svg b/resources/svg/cairometro.svg new file mode 100644 index 0000000..96907a0 --- /dev/null +++ b/resources/svg/cairometro.svg @@ -0,0 +1 @@ +Cairo Metro icon \ No newline at end of file diff --git a/resources/svg/cakephp.svg b/resources/svg/cakephp.svg new file mode 100644 index 0000000..307f7c9 --- /dev/null +++ b/resources/svg/cakephp.svg @@ -0,0 +1 @@ +CakePHP icon \ No newline at end of file diff --git a/resources/svg/campaignmonitor.svg b/resources/svg/campaignmonitor.svg new file mode 100644 index 0000000..b7f9be9 --- /dev/null +++ b/resources/svg/campaignmonitor.svg @@ -0,0 +1 @@ +Campaign Monitor icon \ No newline at end of file diff --git a/resources/svg/canonical.svg b/resources/svg/canonical.svg new file mode 100644 index 0000000..f966709 --- /dev/null +++ b/resources/svg/canonical.svg @@ -0,0 +1 @@ +Canonical icon \ No newline at end of file diff --git a/resources/svg/canva.svg b/resources/svg/canva.svg new file mode 100644 index 0000000..a17ab9a --- /dev/null +++ b/resources/svg/canva.svg @@ -0,0 +1 @@ +Canva icon \ No newline at end of file diff --git a/resources/svg/capacitor.svg b/resources/svg/capacitor.svg new file mode 100644 index 0000000..c5e87af --- /dev/null +++ b/resources/svg/capacitor.svg @@ -0,0 +1 @@ +Capacitor icon \ No newline at end of file diff --git a/resources/svg/carthrottle.svg b/resources/svg/carthrottle.svg new file mode 100644 index 0000000..d6796c5 --- /dev/null +++ b/resources/svg/carthrottle.svg @@ -0,0 +1 @@ +Car Throttle icon \ No newline at end of file diff --git a/resources/svg/carto.svg b/resources/svg/carto.svg new file mode 100644 index 0000000..b7b6f10 --- /dev/null +++ b/resources/svg/carto.svg @@ -0,0 +1 @@ +Carto icon \ No newline at end of file diff --git a/resources/svg/cashapp.svg b/resources/svg/cashapp.svg new file mode 100644 index 0000000..abe277b --- /dev/null +++ b/resources/svg/cashapp.svg @@ -0,0 +1 @@ +Cash App icon \ No newline at end of file diff --git a/resources/svg/castbox.svg b/resources/svg/castbox.svg new file mode 100644 index 0000000..d6033ef --- /dev/null +++ b/resources/svg/castbox.svg @@ -0,0 +1 @@ +Castbox icon \ No newline at end of file diff --git a/resources/svg/castorama.svg b/resources/svg/castorama.svg new file mode 100644 index 0000000..f50aeb1 --- /dev/null +++ b/resources/svg/castorama.svg @@ -0,0 +1 @@ +Castorama icon \ No newline at end of file diff --git a/resources/svg/castro.svg b/resources/svg/castro.svg new file mode 100644 index 0000000..9e8a33c --- /dev/null +++ b/resources/svg/castro.svg @@ -0,0 +1 @@ +Castro icon \ No newline at end of file diff --git a/resources/svg/caterpillar.svg b/resources/svg/caterpillar.svg new file mode 100644 index 0000000..0d40522 --- /dev/null +++ b/resources/svg/caterpillar.svg @@ -0,0 +1 @@ +Caterpillar icon \ No newline at end of file diff --git a/resources/svg/cbs.svg b/resources/svg/cbs.svg new file mode 100644 index 0000000..12098d2 --- /dev/null +++ b/resources/svg/cbs.svg @@ -0,0 +1 @@ +CBS icon \ No newline at end of file diff --git a/resources/svg/cdprojekt.svg b/resources/svg/cdprojekt.svg new file mode 100644 index 0000000..17e4e13 --- /dev/null +++ b/resources/svg/cdprojekt.svg @@ -0,0 +1 @@ +CD Projekt icon \ No newline at end of file diff --git a/resources/svg/celery.svg b/resources/svg/celery.svg new file mode 100644 index 0000000..1bd7edb --- /dev/null +++ b/resources/svg/celery.svg @@ -0,0 +1 @@ +Celery icon \ No newline at end of file diff --git a/resources/svg/centos.svg b/resources/svg/centos.svg new file mode 100644 index 0000000..645c9ab --- /dev/null +++ b/resources/svg/centos.svg @@ -0,0 +1 @@ +CentOS icon \ No newline at end of file diff --git a/resources/svg/ceph.svg b/resources/svg/ceph.svg new file mode 100644 index 0000000..d89e9ef --- /dev/null +++ b/resources/svg/ceph.svg @@ -0,0 +1 @@ +Ceph icon \ No newline at end of file diff --git a/resources/svg/cesium.svg b/resources/svg/cesium.svg new file mode 100644 index 0000000..56459f9 --- /dev/null +++ b/resources/svg/cesium.svg @@ -0,0 +1 @@ +Cesium icon \ No newline at end of file diff --git a/resources/svg/cevo.svg b/resources/svg/cevo.svg new file mode 100644 index 0000000..2bd06da --- /dev/null +++ b/resources/svg/cevo.svg @@ -0,0 +1 @@ +CEVO icon \ No newline at end of file diff --git a/resources/svg/chainlink.svg b/resources/svg/chainlink.svg new file mode 100644 index 0000000..1b2d979 --- /dev/null +++ b/resources/svg/chainlink.svg @@ -0,0 +1 @@ +Chainlink icon \ No newline at end of file diff --git a/resources/svg/chakraui.svg b/resources/svg/chakraui.svg new file mode 100644 index 0000000..8e6accf --- /dev/null +++ b/resources/svg/chakraui.svg @@ -0,0 +1 @@ +Chakra UI icon \ No newline at end of file diff --git a/resources/svg/chart-dot-js.svg b/resources/svg/chart-dot-js.svg new file mode 100644 index 0000000..f14ee7f --- /dev/null +++ b/resources/svg/chart-dot-js.svg @@ -0,0 +1 @@ +Chart.js icon \ No newline at end of file diff --git a/resources/svg/chartmogul.svg b/resources/svg/chartmogul.svg new file mode 100644 index 0000000..63ae1f9 --- /dev/null +++ b/resources/svg/chartmogul.svg @@ -0,0 +1 @@ +ChartMogul icon diff --git a/resources/svg/chase.svg b/resources/svg/chase.svg new file mode 100644 index 0000000..3ea29e2 --- /dev/null +++ b/resources/svg/chase.svg @@ -0,0 +1 @@ +Chase icon \ No newline at end of file diff --git a/resources/svg/chatbot.svg b/resources/svg/chatbot.svg new file mode 100644 index 0000000..9f17a64 --- /dev/null +++ b/resources/svg/chatbot.svg @@ -0,0 +1 @@ +ChatBot icon \ No newline at end of file diff --git a/resources/svg/checkio.svg b/resources/svg/checkio.svg new file mode 100644 index 0000000..48486d8 --- /dev/null +++ b/resources/svg/checkio.svg @@ -0,0 +1 @@ +CheckiO icon \ No newline at end of file diff --git a/resources/svg/checkmarx.svg b/resources/svg/checkmarx.svg new file mode 100644 index 0000000..9775b25 --- /dev/null +++ b/resources/svg/checkmarx.svg @@ -0,0 +1 @@ +Checkmarx icon \ No newline at end of file diff --git a/resources/svg/chef.svg b/resources/svg/chef.svg new file mode 100644 index 0000000..9c42d14 --- /dev/null +++ b/resources/svg/chef.svg @@ -0,0 +1 @@ +Chef icon \ No newline at end of file diff --git a/resources/svg/chevrolet.svg b/resources/svg/chevrolet.svg new file mode 100644 index 0000000..f142cec --- /dev/null +++ b/resources/svg/chevrolet.svg @@ -0,0 +1 @@ +Chevrolet icon \ No newline at end of file diff --git a/resources/svg/chinaeasternairlines.svg b/resources/svg/chinaeasternairlines.svg new file mode 100644 index 0000000..bdeeb6d --- /dev/null +++ b/resources/svg/chinaeasternairlines.svg @@ -0,0 +1 @@ +China Eastern Airlines icon \ No newline at end of file diff --git a/resources/svg/chinasouthernairlines.svg b/resources/svg/chinasouthernairlines.svg new file mode 100644 index 0000000..b3773df --- /dev/null +++ b/resources/svg/chinasouthernairlines.svg @@ -0,0 +1 @@ +China Southern Airlines icon \ No newline at end of file diff --git a/resources/svg/chocolatey.svg b/resources/svg/chocolatey.svg new file mode 100644 index 0000000..84eccb3 --- /dev/null +++ b/resources/svg/chocolatey.svg @@ -0,0 +1 @@ +Chocolatey icon \ No newline at end of file diff --git a/resources/svg/chrysler.svg b/resources/svg/chrysler.svg new file mode 100644 index 0000000..54fb28f --- /dev/null +++ b/resources/svg/chrysler.svg @@ -0,0 +1 @@ +Chrysler icon \ No newline at end of file diff --git a/resources/svg/chupachups.svg b/resources/svg/chupachups.svg new file mode 100644 index 0000000..b512b2d --- /dev/null +++ b/resources/svg/chupachups.svg @@ -0,0 +1 @@ +Chupa Chups icon \ No newline at end of file diff --git a/resources/svg/cinema4d.svg b/resources/svg/cinema4d.svg new file mode 100644 index 0000000..ae9b05c --- /dev/null +++ b/resources/svg/cinema4d.svg @@ -0,0 +1 @@ +Cinema 4D icon \ No newline at end of file diff --git a/resources/svg/circle.svg b/resources/svg/circle.svg new file mode 100644 index 0000000..e2dc33a --- /dev/null +++ b/resources/svg/circle.svg @@ -0,0 +1 @@ +Circle icon \ No newline at end of file diff --git a/resources/svg/circleci.svg b/resources/svg/circleci.svg new file mode 100644 index 0000000..24b47f6 --- /dev/null +++ b/resources/svg/circleci.svg @@ -0,0 +1 @@ +CircleCI icon \ No newline at end of file diff --git a/resources/svg/cirrusci.svg b/resources/svg/cirrusci.svg new file mode 100644 index 0000000..06851d1 --- /dev/null +++ b/resources/svg/cirrusci.svg @@ -0,0 +1 @@ +Cirrus CI icon \ No newline at end of file diff --git a/resources/svg/cisco.svg b/resources/svg/cisco.svg new file mode 100644 index 0000000..dfeeaf0 --- /dev/null +++ b/resources/svg/cisco.svg @@ -0,0 +1 @@ +Cisco icon \ No newline at end of file diff --git a/resources/svg/citrix.svg b/resources/svg/citrix.svg new file mode 100644 index 0000000..db5c44d --- /dev/null +++ b/resources/svg/citrix.svg @@ -0,0 +1 @@ +Citrix icon \ No newline at end of file diff --git a/resources/svg/citroen.svg b/resources/svg/citroen.svg new file mode 100644 index 0000000..199a46e --- /dev/null +++ b/resources/svg/citroen.svg @@ -0,0 +1 @@ +Citroën icon \ No newline at end of file diff --git a/resources/svg/civicrm.svg b/resources/svg/civicrm.svg new file mode 100644 index 0000000..39bd098 --- /dev/null +++ b/resources/svg/civicrm.svg @@ -0,0 +1 @@ +CiviCRM icon \ No newline at end of file diff --git a/resources/svg/claris.svg b/resources/svg/claris.svg new file mode 100644 index 0000000..ad53b15 --- /dev/null +++ b/resources/svg/claris.svg @@ -0,0 +1 @@ +Claris icon diff --git a/resources/svg/clickup.svg b/resources/svg/clickup.svg new file mode 100644 index 0000000..3852f9b --- /dev/null +++ b/resources/svg/clickup.svg @@ -0,0 +1 @@ +ClickUp icon \ No newline at end of file diff --git a/resources/svg/cliqz.svg b/resources/svg/cliqz.svg new file mode 100644 index 0000000..5fbb96a --- /dev/null +++ b/resources/svg/cliqz.svg @@ -0,0 +1 @@ +Cliqz icon \ No newline at end of file diff --git a/resources/svg/clockify.svg b/resources/svg/clockify.svg new file mode 100644 index 0000000..bbe8505 --- /dev/null +++ b/resources/svg/clockify.svg @@ -0,0 +1 @@ +Clockify icon \ No newline at end of file diff --git a/resources/svg/clojure.svg b/resources/svg/clojure.svg new file mode 100644 index 0000000..4bface6 --- /dev/null +++ b/resources/svg/clojure.svg @@ -0,0 +1 @@ +Clojure icon \ No newline at end of file diff --git a/resources/svg/cloud66.svg b/resources/svg/cloud66.svg new file mode 100644 index 0000000..bd14351 --- /dev/null +++ b/resources/svg/cloud66.svg @@ -0,0 +1 @@ +Cloud 66 icon \ No newline at end of file diff --git a/resources/svg/cloudbees.svg b/resources/svg/cloudbees.svg new file mode 100644 index 0000000..bd81c4d --- /dev/null +++ b/resources/svg/cloudbees.svg @@ -0,0 +1 @@ +CloudBees icon \ No newline at end of file diff --git a/resources/svg/cloudcannon.svg b/resources/svg/cloudcannon.svg new file mode 100644 index 0000000..e69ad22 --- /dev/null +++ b/resources/svg/cloudcannon.svg @@ -0,0 +1 @@ +CloudCannon icon \ No newline at end of file diff --git a/resources/svg/cloudera.svg b/resources/svg/cloudera.svg new file mode 100644 index 0000000..be663a2 --- /dev/null +++ b/resources/svg/cloudera.svg @@ -0,0 +1 @@ +Cloudera icon \ No newline at end of file diff --git a/resources/svg/cloudflare.svg b/resources/svg/cloudflare.svg new file mode 100644 index 0000000..ee0cc91 --- /dev/null +++ b/resources/svg/cloudflare.svg @@ -0,0 +1 @@ +Cloudflare icon \ No newline at end of file diff --git a/resources/svg/cloudsmith.svg b/resources/svg/cloudsmith.svg new file mode 100644 index 0000000..c3e1fb6 --- /dev/null +++ b/resources/svg/cloudsmith.svg @@ -0,0 +1 @@ +Cloudsmith icon diff --git a/resources/svg/cloudways.svg b/resources/svg/cloudways.svg new file mode 100644 index 0000000..3a10b12 --- /dev/null +++ b/resources/svg/cloudways.svg @@ -0,0 +1 @@ +Cloudways icon \ No newline at end of file diff --git a/resources/svg/clubhouse.svg b/resources/svg/clubhouse.svg new file mode 100644 index 0000000..ccac478 --- /dev/null +++ b/resources/svg/clubhouse.svg @@ -0,0 +1 @@ +Clubhouse icon \ No newline at end of file diff --git a/resources/svg/clyp.svg b/resources/svg/clyp.svg new file mode 100644 index 0000000..7dd6071 --- /dev/null +++ b/resources/svg/clyp.svg @@ -0,0 +1 @@ +Clyp icon \ No newline at end of file diff --git a/resources/svg/cmake.svg b/resources/svg/cmake.svg new file mode 100644 index 0000000..fdbbddc --- /dev/null +++ b/resources/svg/cmake.svg @@ -0,0 +1 @@ +CMake icon \ No newline at end of file diff --git a/resources/svg/cnn.svg b/resources/svg/cnn.svg new file mode 100644 index 0000000..79aa75c --- /dev/null +++ b/resources/svg/cnn.svg @@ -0,0 +1 @@ +CNN icon \ No newline at end of file diff --git a/resources/svg/co-op.svg b/resources/svg/co-op.svg new file mode 100644 index 0000000..1be1dff --- /dev/null +++ b/resources/svg/co-op.svg @@ -0,0 +1 @@ +Co-op icon \ No newline at end of file diff --git a/resources/svg/cockroachlabs.svg b/resources/svg/cockroachlabs.svg new file mode 100644 index 0000000..2eb2e4f --- /dev/null +++ b/resources/svg/cockroachlabs.svg @@ -0,0 +1 @@ +Cockroach Labs icon \ No newline at end of file diff --git a/resources/svg/cocoapods.svg b/resources/svg/cocoapods.svg new file mode 100644 index 0000000..14a258f --- /dev/null +++ b/resources/svg/cocoapods.svg @@ -0,0 +1 @@ +CocoaPods icon diff --git a/resources/svg/cocos.svg b/resources/svg/cocos.svg new file mode 100644 index 0000000..b894472 --- /dev/null +++ b/resources/svg/cocos.svg @@ -0,0 +1 @@ +Cocos icon \ No newline at end of file diff --git a/resources/svg/coda.svg b/resources/svg/coda.svg new file mode 100644 index 0000000..25b9386 --- /dev/null +++ b/resources/svg/coda.svg @@ -0,0 +1 @@ +Coda icon \ No newline at end of file diff --git a/resources/svg/codacy.svg b/resources/svg/codacy.svg new file mode 100644 index 0000000..0120eec --- /dev/null +++ b/resources/svg/codacy.svg @@ -0,0 +1 @@ +Codacy icon \ No newline at end of file diff --git a/resources/svg/codeberg.svg b/resources/svg/codeberg.svg new file mode 100644 index 0000000..ab1ad05 --- /dev/null +++ b/resources/svg/codeberg.svg @@ -0,0 +1 @@ +Codeberg icon \ No newline at end of file diff --git a/resources/svg/codecademy.svg b/resources/svg/codecademy.svg new file mode 100644 index 0000000..e6f0562 --- /dev/null +++ b/resources/svg/codecademy.svg @@ -0,0 +1 @@ +Codecademy icon \ No newline at end of file diff --git a/resources/svg/codeceptjs.svg b/resources/svg/codeceptjs.svg new file mode 100644 index 0000000..442c9ec --- /dev/null +++ b/resources/svg/codeceptjs.svg @@ -0,0 +1 @@ +CodeceptJS icon \ No newline at end of file diff --git a/resources/svg/codechef.svg b/resources/svg/codechef.svg new file mode 100644 index 0000000..4cbb2c9 --- /dev/null +++ b/resources/svg/codechef.svg @@ -0,0 +1 @@ +CodeChef icon \ No newline at end of file diff --git a/resources/svg/codeclimate.svg b/resources/svg/codeclimate.svg new file mode 100644 index 0000000..e7ede97 --- /dev/null +++ b/resources/svg/codeclimate.svg @@ -0,0 +1 @@ +Code Climate icon \ No newline at end of file diff --git a/resources/svg/codecov.svg b/resources/svg/codecov.svg new file mode 100644 index 0000000..81729e3 --- /dev/null +++ b/resources/svg/codecov.svg @@ -0,0 +1 @@ +Codecov icon \ No newline at end of file diff --git a/resources/svg/codefactor.svg b/resources/svg/codefactor.svg new file mode 100644 index 0000000..69c865b --- /dev/null +++ b/resources/svg/codefactor.svg @@ -0,0 +1 @@ +CodeFactor icon \ No newline at end of file diff --git a/resources/svg/codeforces.svg b/resources/svg/codeforces.svg new file mode 100644 index 0000000..8584d1b --- /dev/null +++ b/resources/svg/codeforces.svg @@ -0,0 +1 @@ +Codeforces icon \ No newline at end of file diff --git a/resources/svg/codeigniter.svg b/resources/svg/codeigniter.svg new file mode 100644 index 0000000..a471c4f --- /dev/null +++ b/resources/svg/codeigniter.svg @@ -0,0 +1 @@ +CodeIgniter icon \ No newline at end of file diff --git a/resources/svg/codemagic.svg b/resources/svg/codemagic.svg new file mode 100644 index 0000000..8189b53 --- /dev/null +++ b/resources/svg/codemagic.svg @@ -0,0 +1 @@ +Codemagic icon \ No newline at end of file diff --git a/resources/svg/codemirror.svg b/resources/svg/codemirror.svg new file mode 100644 index 0000000..0ddc6a6 --- /dev/null +++ b/resources/svg/codemirror.svg @@ -0,0 +1 @@ +CodeMirror icon \ No newline at end of file diff --git a/resources/svg/codenewbie.svg b/resources/svg/codenewbie.svg new file mode 100644 index 0000000..ae4b0e3 --- /dev/null +++ b/resources/svg/codenewbie.svg @@ -0,0 +1 @@ +CodeNewbie icon \ No newline at end of file diff --git a/resources/svg/codepen.svg b/resources/svg/codepen.svg new file mode 100644 index 0000000..a31a6bc --- /dev/null +++ b/resources/svg/codepen.svg @@ -0,0 +1 @@ +CodePen icon diff --git a/resources/svg/codeproject.svg b/resources/svg/codeproject.svg new file mode 100644 index 0000000..10fd55e --- /dev/null +++ b/resources/svg/codeproject.svg @@ -0,0 +1 @@ +CodeProject icon \ No newline at end of file diff --git a/resources/svg/codersrank.svg b/resources/svg/codersrank.svg new file mode 100644 index 0000000..abf7169 --- /dev/null +++ b/resources/svg/codersrank.svg @@ -0,0 +1 @@ +CodersRank icon \ No newline at end of file diff --git a/resources/svg/coderwall.svg b/resources/svg/coderwall.svg new file mode 100644 index 0000000..a90fc52 --- /dev/null +++ b/resources/svg/coderwall.svg @@ -0,0 +1 @@ +Coderwall icon \ No newline at end of file diff --git a/resources/svg/codesandbox.svg b/resources/svg/codesandbox.svg new file mode 100644 index 0000000..174654a --- /dev/null +++ b/resources/svg/codesandbox.svg @@ -0,0 +1 @@ +CodeSandbox icon \ No newline at end of file diff --git a/resources/svg/codeship.svg b/resources/svg/codeship.svg new file mode 100644 index 0000000..7191560 --- /dev/null +++ b/resources/svg/codeship.svg @@ -0,0 +1 @@ +Codeship icon \ No newline at end of file diff --git a/resources/svg/codewars.svg b/resources/svg/codewars.svg new file mode 100644 index 0000000..43b2ec6 --- /dev/null +++ b/resources/svg/codewars.svg @@ -0,0 +1 @@ +Codewars icon \ No newline at end of file diff --git a/resources/svg/codingame.svg b/resources/svg/codingame.svg new file mode 100644 index 0000000..945ed43 --- /dev/null +++ b/resources/svg/codingame.svg @@ -0,0 +1 @@ +CodinGame icon \ No newline at end of file diff --git a/resources/svg/codingninjas.svg b/resources/svg/codingninjas.svg new file mode 100644 index 0000000..1eff8f2 --- /dev/null +++ b/resources/svg/codingninjas.svg @@ -0,0 +1 @@ +Coding Ninjas icon \ No newline at end of file diff --git a/resources/svg/codio.svg b/resources/svg/codio.svg new file mode 100644 index 0000000..4764901 --- /dev/null +++ b/resources/svg/codio.svg @@ -0,0 +1 @@ +Codio icon \ No newline at end of file diff --git a/resources/svg/coffeescript.svg b/resources/svg/coffeescript.svg new file mode 100644 index 0000000..854ab53 --- /dev/null +++ b/resources/svg/coffeescript.svg @@ -0,0 +1 @@ +CoffeeScript icon \ No newline at end of file diff --git a/resources/svg/cognizant.svg b/resources/svg/cognizant.svg new file mode 100644 index 0000000..8d38df5 --- /dev/null +++ b/resources/svg/cognizant.svg @@ -0,0 +1 @@ +Cognizant icon \ No newline at end of file diff --git a/resources/svg/coinbase.svg b/resources/svg/coinbase.svg new file mode 100644 index 0000000..7bb7067 --- /dev/null +++ b/resources/svg/coinbase.svg @@ -0,0 +1 @@ +Coinbase icon \ No newline at end of file diff --git a/resources/svg/commerzbank.svg b/resources/svg/commerzbank.svg new file mode 100644 index 0000000..89ee28b --- /dev/null +++ b/resources/svg/commerzbank.svg @@ -0,0 +1 @@ +Commerzbank icon \ No newline at end of file diff --git a/resources/svg/commonworkflowlanguage.svg b/resources/svg/commonworkflowlanguage.svg new file mode 100644 index 0000000..8c706f6 --- /dev/null +++ b/resources/svg/commonworkflowlanguage.svg @@ -0,0 +1 @@ +Common Workflow Language icon \ No newline at end of file diff --git a/resources/svg/composer.svg b/resources/svg/composer.svg new file mode 100644 index 0000000..9efe882 --- /dev/null +++ b/resources/svg/composer.svg @@ -0,0 +1 @@ +Composer icon \ No newline at end of file diff --git a/resources/svg/compropago.svg b/resources/svg/compropago.svg new file mode 100644 index 0000000..d121e2d --- /dev/null +++ b/resources/svg/compropago.svg @@ -0,0 +1 @@ +ComproPago icon \ No newline at end of file diff --git a/resources/svg/concourse.svg b/resources/svg/concourse.svg new file mode 100644 index 0000000..52bb11b --- /dev/null +++ b/resources/svg/concourse.svg @@ -0,0 +1 @@ +Concourse icon diff --git a/resources/svg/conda-forge.svg b/resources/svg/conda-forge.svg new file mode 100644 index 0000000..22cfc3b --- /dev/null +++ b/resources/svg/conda-forge.svg @@ -0,0 +1 @@ +Conda-Forge icon \ No newline at end of file diff --git a/resources/svg/conekta.svg b/resources/svg/conekta.svg new file mode 100644 index 0000000..5e6b2d0 --- /dev/null +++ b/resources/svg/conekta.svg @@ -0,0 +1 @@ +Conekta icon \ No newline at end of file diff --git a/resources/svg/confluence.svg b/resources/svg/confluence.svg new file mode 100644 index 0000000..3441b6e --- /dev/null +++ b/resources/svg/confluence.svg @@ -0,0 +1 @@ +Confluence icon \ No newline at end of file diff --git a/resources/svg/consul.svg b/resources/svg/consul.svg new file mode 100644 index 0000000..2de6cee --- /dev/null +++ b/resources/svg/consul.svg @@ -0,0 +1 @@ +Consul icon \ No newline at end of file diff --git a/resources/svg/contactlesspayment.svg b/resources/svg/contactlesspayment.svg new file mode 100644 index 0000000..48bf1c4 --- /dev/null +++ b/resources/svg/contactlesspayment.svg @@ -0,0 +1 @@ +Contactless Payment icon \ No newline at end of file diff --git a/resources/svg/contentful.svg b/resources/svg/contentful.svg new file mode 100644 index 0000000..46cd8eb --- /dev/null +++ b/resources/svg/contentful.svg @@ -0,0 +1 @@ +Contentful icon \ No newline at end of file diff --git a/resources/svg/convertio.svg b/resources/svg/convertio.svg new file mode 100644 index 0000000..2fad729 --- /dev/null +++ b/resources/svg/convertio.svg @@ -0,0 +1 @@ +Convertio icon diff --git a/resources/svg/cookiecutter.svg b/resources/svg/cookiecutter.svg new file mode 100644 index 0000000..d2f966c --- /dev/null +++ b/resources/svg/cookiecutter.svg @@ -0,0 +1 @@ +Cookiecutter icon \ No newline at end of file diff --git a/resources/svg/coronaengine.svg b/resources/svg/coronaengine.svg new file mode 100644 index 0000000..a21e9e5 --- /dev/null +++ b/resources/svg/coronaengine.svg @@ -0,0 +1 @@ +Corona Engine icon \ No newline at end of file diff --git a/resources/svg/coronarenderer.svg b/resources/svg/coronarenderer.svg new file mode 100644 index 0000000..faa5440 --- /dev/null +++ b/resources/svg/coronarenderer.svg @@ -0,0 +1 @@ +Corona Renderer icon \ No newline at end of file diff --git a/resources/svg/corsair.svg b/resources/svg/corsair.svg new file mode 100644 index 0000000..e1e5e1f --- /dev/null +++ b/resources/svg/corsair.svg @@ -0,0 +1 @@ +Corsair icon \ No newline at end of file diff --git a/resources/svg/couchbase.svg b/resources/svg/couchbase.svg new file mode 100644 index 0000000..dc4c23d --- /dev/null +++ b/resources/svg/couchbase.svg @@ -0,0 +1 @@ +Couchbase icon \ No newline at end of file diff --git a/resources/svg/counter-strike.svg b/resources/svg/counter-strike.svg new file mode 100644 index 0000000..5d60332 --- /dev/null +++ b/resources/svg/counter-strike.svg @@ -0,0 +1 @@ +Counter-Strike icon \ No newline at end of file diff --git a/resources/svg/countingworkspro.svg b/resources/svg/countingworkspro.svg new file mode 100644 index 0000000..c468a7c --- /dev/null +++ b/resources/svg/countingworkspro.svg @@ -0,0 +1 @@ +CountingWorks PRO icon \ No newline at end of file diff --git a/resources/svg/coursera.svg b/resources/svg/coursera.svg new file mode 100644 index 0000000..75dbc65 --- /dev/null +++ b/resources/svg/coursera.svg @@ -0,0 +1 @@ +Coursera icon \ No newline at end of file diff --git a/resources/svg/coveralls.svg b/resources/svg/coveralls.svg new file mode 100644 index 0000000..686e7d8 --- /dev/null +++ b/resources/svg/coveralls.svg @@ -0,0 +1 @@ +Coveralls icon \ No newline at end of file diff --git a/resources/svg/cpanel.svg b/resources/svg/cpanel.svg new file mode 100644 index 0000000..f139e15 --- /dev/null +++ b/resources/svg/cpanel.svg @@ -0,0 +1 @@ +cPanel icon diff --git a/resources/svg/cplusplus.svg b/resources/svg/cplusplus.svg new file mode 100644 index 0000000..ee668f7 --- /dev/null +++ b/resources/svg/cplusplus.svg @@ -0,0 +1 @@ +C++ icon \ No newline at end of file diff --git a/resources/svg/craftcms.svg b/resources/svg/craftcms.svg new file mode 100644 index 0000000..f0b876b --- /dev/null +++ b/resources/svg/craftcms.svg @@ -0,0 +1 @@ +Craft CMS icon \ No newline at end of file diff --git a/resources/svg/creativecommons.svg b/resources/svg/creativecommons.svg new file mode 100644 index 0000000..ea4e78e --- /dev/null +++ b/resources/svg/creativecommons.svg @@ -0,0 +1 @@ +Creative Commons icon \ No newline at end of file diff --git a/resources/svg/crehana.svg b/resources/svg/crehana.svg new file mode 100644 index 0000000..9f464c2 --- /dev/null +++ b/resources/svg/crehana.svg @@ -0,0 +1 @@ +Crehana icon \ No newline at end of file diff --git a/resources/svg/crowdin.svg b/resources/svg/crowdin.svg new file mode 100644 index 0000000..d6cc042 --- /dev/null +++ b/resources/svg/crowdin.svg @@ -0,0 +1 @@ +Crowdin icon \ No newline at end of file diff --git a/resources/svg/crowdsource.svg b/resources/svg/crowdsource.svg new file mode 100644 index 0000000..49f3bc4 --- /dev/null +++ b/resources/svg/crowdsource.svg @@ -0,0 +1 @@ +Crowdsource icon \ No newline at end of file diff --git a/resources/svg/crunchbase.svg b/resources/svg/crunchbase.svg new file mode 100644 index 0000000..f4558bb --- /dev/null +++ b/resources/svg/crunchbase.svg @@ -0,0 +1 @@ +Crunchbase icon \ No newline at end of file diff --git a/resources/svg/crunchyroll.svg b/resources/svg/crunchyroll.svg new file mode 100644 index 0000000..08dd208 --- /dev/null +++ b/resources/svg/crunchyroll.svg @@ -0,0 +1 @@ +Crunchyroll icon \ No newline at end of file diff --git a/resources/svg/cryengine.svg b/resources/svg/cryengine.svg new file mode 100644 index 0000000..7241c23 --- /dev/null +++ b/resources/svg/cryengine.svg @@ -0,0 +1 @@ +CRYENGINE icon \ No newline at end of file diff --git a/resources/svg/crystal.svg b/resources/svg/crystal.svg new file mode 100644 index 0000000..d09c582 --- /dev/null +++ b/resources/svg/crystal.svg @@ -0,0 +1 @@ +Crystal icon \ No newline at end of file diff --git a/resources/svg/csharp.svg b/resources/svg/csharp.svg new file mode 100644 index 0000000..217d2e3 --- /dev/null +++ b/resources/svg/csharp.svg @@ -0,0 +1 @@ +C Sharp icon \ No newline at end of file diff --git a/resources/svg/css3.svg b/resources/svg/css3.svg new file mode 100644 index 0000000..f44a2ba --- /dev/null +++ b/resources/svg/css3.svg @@ -0,0 +1 @@ +CSS3 icon \ No newline at end of file diff --git a/resources/svg/csswizardry.svg b/resources/svg/csswizardry.svg new file mode 100644 index 0000000..43453b2 --- /dev/null +++ b/resources/svg/csswizardry.svg @@ -0,0 +1 @@ +CSS Wizardry icon \ No newline at end of file diff --git a/resources/svg/cucumber.svg b/resources/svg/cucumber.svg new file mode 100644 index 0000000..7a6c7ee --- /dev/null +++ b/resources/svg/cucumber.svg @@ -0,0 +1 @@ +Cucumber icon \ No newline at end of file diff --git a/resources/svg/curl.svg b/resources/svg/curl.svg new file mode 100644 index 0000000..ddbcba6 --- /dev/null +++ b/resources/svg/curl.svg @@ -0,0 +1 @@ +curl icon \ No newline at end of file diff --git a/resources/svg/curseforge.svg b/resources/svg/curseforge.svg new file mode 100644 index 0000000..2afa963 --- /dev/null +++ b/resources/svg/curseforge.svg @@ -0,0 +1 @@ +CurseForge icon \ No newline at end of file diff --git a/resources/svg/cycling74.svg b/resources/svg/cycling74.svg new file mode 100644 index 0000000..793706f --- /dev/null +++ b/resources/svg/cycling74.svg @@ -0,0 +1 @@ +Cycling '74 icon \ No newline at end of file diff --git a/resources/svg/cypress.svg b/resources/svg/cypress.svg new file mode 100644 index 0000000..9a4dc06 --- /dev/null +++ b/resources/svg/cypress.svg @@ -0,0 +1 @@ +Cypress icon \ No newline at end of file diff --git a/resources/svg/d-wavesystems.svg b/resources/svg/d-wavesystems.svg new file mode 100644 index 0000000..3b3a4cb --- /dev/null +++ b/resources/svg/d-wavesystems.svg @@ -0,0 +1 @@ +D-Wave Systems icon diff --git a/resources/svg/d3-dot-js.svg b/resources/svg/d3-dot-js.svg new file mode 100644 index 0000000..3745402 --- /dev/null +++ b/resources/svg/d3-dot-js.svg @@ -0,0 +1 @@ +D3.js icon \ No newline at end of file diff --git a/resources/svg/dacia.svg b/resources/svg/dacia.svg new file mode 100644 index 0000000..340e28c --- /dev/null +++ b/resources/svg/dacia.svg @@ -0,0 +1 @@ +Dacia icon \ No newline at end of file diff --git a/resources/svg/daf.svg b/resources/svg/daf.svg new file mode 100644 index 0000000..e98844d --- /dev/null +++ b/resources/svg/daf.svg @@ -0,0 +1 @@ +DAF icon \ No newline at end of file diff --git a/resources/svg/dailymotion.svg b/resources/svg/dailymotion.svg new file mode 100644 index 0000000..9c3d914 --- /dev/null +++ b/resources/svg/dailymotion.svg @@ -0,0 +1 @@ +Dailymotion icon \ No newline at end of file diff --git a/resources/svg/daimler.svg b/resources/svg/daimler.svg new file mode 100644 index 0000000..8c61976 --- /dev/null +++ b/resources/svg/daimler.svg @@ -0,0 +1 @@ +Daimler icon \ No newline at end of file diff --git a/resources/svg/darkreader.svg b/resources/svg/darkreader.svg new file mode 100644 index 0000000..9a6f873 --- /dev/null +++ b/resources/svg/darkreader.svg @@ -0,0 +1 @@ +Dark Reader icon diff --git a/resources/svg/dart.svg b/resources/svg/dart.svg new file mode 100644 index 0000000..38bed42 --- /dev/null +++ b/resources/svg/dart.svg @@ -0,0 +1 @@ +Dart icon \ No newline at end of file diff --git a/resources/svg/daserste.svg b/resources/svg/daserste.svg new file mode 100644 index 0000000..cab4518 --- /dev/null +++ b/resources/svg/daserste.svg @@ -0,0 +1 @@ +Das Erste icon diff --git a/resources/svg/dash.svg b/resources/svg/dash.svg new file mode 100644 index 0000000..fde2040 --- /dev/null +++ b/resources/svg/dash.svg @@ -0,0 +1 @@ +Dash icon \ No newline at end of file diff --git a/resources/svg/dashlane.svg b/resources/svg/dashlane.svg new file mode 100644 index 0000000..004c7ba --- /dev/null +++ b/resources/svg/dashlane.svg @@ -0,0 +1 @@ +Dashlane icon \ No newline at end of file diff --git a/resources/svg/dassaultsystemes.svg b/resources/svg/dassaultsystemes.svg new file mode 100644 index 0000000..af19fb2 --- /dev/null +++ b/resources/svg/dassaultsystemes.svg @@ -0,0 +1 @@ +Dassault Systèmes icon \ No newline at end of file diff --git a/resources/svg/databricks.svg b/resources/svg/databricks.svg new file mode 100644 index 0000000..fbfb985 --- /dev/null +++ b/resources/svg/databricks.svg @@ -0,0 +1 @@ +Databricks icon \ No newline at end of file diff --git a/resources/svg/datacamp.svg b/resources/svg/datacamp.svg new file mode 100644 index 0000000..a4f671b --- /dev/null +++ b/resources/svg/datacamp.svg @@ -0,0 +1 @@ +DataCamp icon \ No newline at end of file diff --git a/resources/svg/datadog.svg b/resources/svg/datadog.svg new file mode 100644 index 0000000..27a841e --- /dev/null +++ b/resources/svg/datadog.svg @@ -0,0 +1 @@ +Datadog icon \ No newline at end of file diff --git a/resources/svg/datastax.svg b/resources/svg/datastax.svg new file mode 100644 index 0000000..145f7c0 --- /dev/null +++ b/resources/svg/datastax.svg @@ -0,0 +1 @@ +DataStax icon \ No newline at end of file diff --git a/resources/svg/datocms.svg b/resources/svg/datocms.svg new file mode 100644 index 0000000..3cc43de --- /dev/null +++ b/resources/svg/datocms.svg @@ -0,0 +1 @@ +DatoCMS icon \ No newline at end of file diff --git a/resources/svg/dazn.svg b/resources/svg/dazn.svg new file mode 100644 index 0000000..2b25189 --- /dev/null +++ b/resources/svg/dazn.svg @@ -0,0 +1 @@ +DAZN icon \ No newline at end of file diff --git a/resources/svg/dblp.svg b/resources/svg/dblp.svg new file mode 100644 index 0000000..99fc809 --- /dev/null +++ b/resources/svg/dblp.svg @@ -0,0 +1 @@ +dblp icon \ No newline at end of file diff --git a/resources/svg/dcentertainment.svg b/resources/svg/dcentertainment.svg new file mode 100644 index 0000000..8e6f955 --- /dev/null +++ b/resources/svg/dcentertainment.svg @@ -0,0 +1 @@ +DC Entertainment icon diff --git a/resources/svg/debian.svg b/resources/svg/debian.svg new file mode 100644 index 0000000..70d67af --- /dev/null +++ b/resources/svg/debian.svg @@ -0,0 +1 @@ +Debian icon \ No newline at end of file diff --git a/resources/svg/deepin.svg b/resources/svg/deepin.svg new file mode 100644 index 0000000..7a95fa7 --- /dev/null +++ b/resources/svg/deepin.svg @@ -0,0 +1 @@ +deepin icon \ No newline at end of file diff --git a/resources/svg/deepnote.svg b/resources/svg/deepnote.svg new file mode 100644 index 0000000..e770a6c --- /dev/null +++ b/resources/svg/deepnote.svg @@ -0,0 +1 @@ +Deepnote icon \ No newline at end of file diff --git a/resources/svg/deezer.svg b/resources/svg/deezer.svg new file mode 100644 index 0000000..f2e3597 --- /dev/null +++ b/resources/svg/deezer.svg @@ -0,0 +1 @@ +Deezer icon diff --git a/resources/svg/delicious.svg b/resources/svg/delicious.svg new file mode 100644 index 0000000..55c047b --- /dev/null +++ b/resources/svg/delicious.svg @@ -0,0 +1 @@ +Delicious icon diff --git a/resources/svg/deliveroo.svg b/resources/svg/deliveroo.svg new file mode 100644 index 0000000..db9f43a --- /dev/null +++ b/resources/svg/deliveroo.svg @@ -0,0 +1 @@ +Deliveroo icon diff --git a/resources/svg/dell.svg b/resources/svg/dell.svg new file mode 100644 index 0000000..5386adf --- /dev/null +++ b/resources/svg/dell.svg @@ -0,0 +1 @@ +Dell icon \ No newline at end of file diff --git a/resources/svg/delonghi.svg b/resources/svg/delonghi.svg new file mode 100644 index 0000000..e312914 --- /dev/null +++ b/resources/svg/delonghi.svg @@ -0,0 +1 @@ +De'Longhi icon \ No newline at end of file diff --git a/resources/svg/delphi.svg b/resources/svg/delphi.svg new file mode 100644 index 0000000..7eb0fce --- /dev/null +++ b/resources/svg/delphi.svg @@ -0,0 +1 @@ +Delphi icon \ No newline at end of file diff --git a/resources/svg/delta.svg b/resources/svg/delta.svg new file mode 100644 index 0000000..a4260f8 --- /dev/null +++ b/resources/svg/delta.svg @@ -0,0 +1 @@ +Delta icon \ No newline at end of file diff --git a/resources/svg/deno.svg b/resources/svg/deno.svg new file mode 100644 index 0000000..76242a8 --- /dev/null +++ b/resources/svg/deno.svg @@ -0,0 +1 @@ +Deno icon \ No newline at end of file diff --git a/resources/svg/dependabot.svg b/resources/svg/dependabot.svg new file mode 100644 index 0000000..84b2f77 --- /dev/null +++ b/resources/svg/dependabot.svg @@ -0,0 +1 @@ +Dependabot icon \ No newline at end of file diff --git a/resources/svg/derspiegel.svg b/resources/svg/derspiegel.svg new file mode 100644 index 0000000..5869322 --- /dev/null +++ b/resources/svg/derspiegel.svg @@ -0,0 +1 @@ +Der Spiegel icon \ No newline at end of file diff --git a/resources/svg/designernews.svg b/resources/svg/designernews.svg new file mode 100644 index 0000000..b7a0d65 --- /dev/null +++ b/resources/svg/designernews.svg @@ -0,0 +1 @@ +Designer News icon \ No newline at end of file diff --git a/resources/svg/deutschebahn.svg b/resources/svg/deutschebahn.svg new file mode 100644 index 0000000..d42c5e5 --- /dev/null +++ b/resources/svg/deutschebahn.svg @@ -0,0 +1 @@ +Deutsche Bahn icon \ No newline at end of file diff --git a/resources/svg/deutschebank.svg b/resources/svg/deutschebank.svg new file mode 100644 index 0000000..7c5640f --- /dev/null +++ b/resources/svg/deutschebank.svg @@ -0,0 +1 @@ +Deutsche Bank icon \ No newline at end of file diff --git a/resources/svg/dev-dot-to.svg b/resources/svg/dev-dot-to.svg new file mode 100644 index 0000000..166a63b --- /dev/null +++ b/resources/svg/dev-dot-to.svg @@ -0,0 +1 @@ +dev.to icon \ No newline at end of file diff --git a/resources/svg/deviantart.svg b/resources/svg/deviantart.svg new file mode 100644 index 0000000..862b6cc --- /dev/null +++ b/resources/svg/deviantart.svg @@ -0,0 +1 @@ +DeviantArt icon \ No newline at end of file diff --git a/resources/svg/devpost.svg b/resources/svg/devpost.svg new file mode 100644 index 0000000..ea054c2 --- /dev/null +++ b/resources/svg/devpost.svg @@ -0,0 +1 @@ +Devpost icon \ No newline at end of file diff --git a/resources/svg/devrant.svg b/resources/svg/devrant.svg new file mode 100644 index 0000000..acb636c --- /dev/null +++ b/resources/svg/devrant.svg @@ -0,0 +1 @@ +devRant icon \ No newline at end of file diff --git a/resources/svg/dgraph.svg b/resources/svg/dgraph.svg new file mode 100644 index 0000000..4f9a7b4 --- /dev/null +++ b/resources/svg/dgraph.svg @@ -0,0 +1 @@ +Dgraph icon \ No newline at end of file diff --git a/resources/svg/dhl.svg b/resources/svg/dhl.svg new file mode 100644 index 0000000..7f136d3 --- /dev/null +++ b/resources/svg/dhl.svg @@ -0,0 +1 @@ +DHL icon diff --git a/resources/svg/diagrams-dot-net.svg b/resources/svg/diagrams-dot-net.svg new file mode 100644 index 0000000..e556f56 --- /dev/null +++ b/resources/svg/diagrams-dot-net.svg @@ -0,0 +1 @@ +diagrams.net icon \ No newline at end of file diff --git a/resources/svg/dialogflow.svg b/resources/svg/dialogflow.svg new file mode 100644 index 0000000..5047ba5 --- /dev/null +++ b/resources/svg/dialogflow.svg @@ -0,0 +1 @@ +Dialogflow icon \ No newline at end of file diff --git a/resources/svg/diaspora.svg b/resources/svg/diaspora.svg new file mode 100644 index 0000000..f07af27 --- /dev/null +++ b/resources/svg/diaspora.svg @@ -0,0 +1 @@ +Diaspora icon \ No newline at end of file diff --git a/resources/svg/digg.svg b/resources/svg/digg.svg new file mode 100644 index 0000000..7d81a43 --- /dev/null +++ b/resources/svg/digg.svg @@ -0,0 +1 @@ +Digg icon \ No newline at end of file diff --git a/resources/svg/digi-keyelectronics.svg b/resources/svg/digi-keyelectronics.svg new file mode 100644 index 0000000..265211b --- /dev/null +++ b/resources/svg/digi-keyelectronics.svg @@ -0,0 +1 @@ +Digi-Key Electronics icon \ No newline at end of file diff --git a/resources/svg/digitalocean.svg b/resources/svg/digitalocean.svg new file mode 100644 index 0000000..da03d7f --- /dev/null +++ b/resources/svg/digitalocean.svg @@ -0,0 +1 @@ +DigitalOcean icon \ No newline at end of file diff --git a/resources/svg/dior.svg b/resources/svg/dior.svg new file mode 100644 index 0000000..8c82347 --- /dev/null +++ b/resources/svg/dior.svg @@ -0,0 +1 @@ +Dior icon \ No newline at end of file diff --git a/resources/svg/directus.svg b/resources/svg/directus.svg new file mode 100644 index 0000000..d929332 --- /dev/null +++ b/resources/svg/directus.svg @@ -0,0 +1 @@ +Directus icon \ No newline at end of file diff --git a/resources/svg/discogs.svg b/resources/svg/discogs.svg new file mode 100644 index 0000000..775111f --- /dev/null +++ b/resources/svg/discogs.svg @@ -0,0 +1 @@ +Discogs icon diff --git a/resources/svg/discord.svg b/resources/svg/discord.svg new file mode 100644 index 0000000..1f3383f --- /dev/null +++ b/resources/svg/discord.svg @@ -0,0 +1 @@ +Discord icon \ No newline at end of file diff --git a/resources/svg/discourse.svg b/resources/svg/discourse.svg new file mode 100644 index 0000000..b647cb0 --- /dev/null +++ b/resources/svg/discourse.svg @@ -0,0 +1 @@ +Discourse icon \ No newline at end of file diff --git a/resources/svg/discover.svg b/resources/svg/discover.svg new file mode 100644 index 0000000..69c7dfb --- /dev/null +++ b/resources/svg/discover.svg @@ -0,0 +1 @@ +Discover icon \ No newline at end of file diff --git a/resources/svg/disqus.svg b/resources/svg/disqus.svg new file mode 100644 index 0000000..998d1aa --- /dev/null +++ b/resources/svg/disqus.svg @@ -0,0 +1 @@ +Disqus icon \ No newline at end of file diff --git a/resources/svg/disroot.svg b/resources/svg/disroot.svg new file mode 100644 index 0000000..c1c8617 --- /dev/null +++ b/resources/svg/disroot.svg @@ -0,0 +1 @@ +Disroot icon \ No newline at end of file diff --git a/resources/svg/django.svg b/resources/svg/django.svg new file mode 100644 index 0000000..14f40ce --- /dev/null +++ b/resources/svg/django.svg @@ -0,0 +1 @@ +Django icon \ No newline at end of file diff --git a/resources/svg/dlna.svg b/resources/svg/dlna.svg new file mode 100644 index 0000000..290fdda --- /dev/null +++ b/resources/svg/dlna.svg @@ -0,0 +1 @@ +DLNA icon \ No newline at end of file diff --git a/resources/svg/docker.svg b/resources/svg/docker.svg new file mode 100644 index 0000000..23ba1eb --- /dev/null +++ b/resources/svg/docker.svg @@ -0,0 +1 @@ +Docker icon diff --git a/resources/svg/docusign.svg b/resources/svg/docusign.svg new file mode 100644 index 0000000..b4e1091 --- /dev/null +++ b/resources/svg/docusign.svg @@ -0,0 +1 @@ +DocuSign icon \ No newline at end of file diff --git a/resources/svg/dogecoin.svg b/resources/svg/dogecoin.svg new file mode 100644 index 0000000..b9da063 --- /dev/null +++ b/resources/svg/dogecoin.svg @@ -0,0 +1 @@ +Dogecoin icon \ No newline at end of file diff --git a/resources/svg/dolby.svg b/resources/svg/dolby.svg new file mode 100644 index 0000000..fa6fdd5 --- /dev/null +++ b/resources/svg/dolby.svg @@ -0,0 +1 @@ +Dolby icon \ No newline at end of file diff --git a/resources/svg/doordash.svg b/resources/svg/doordash.svg new file mode 100644 index 0000000..018095a --- /dev/null +++ b/resources/svg/doordash.svg @@ -0,0 +1 @@ +DoorDash icon \ No newline at end of file diff --git a/resources/svg/dot-net.svg b/resources/svg/dot-net.svg new file mode 100644 index 0000000..8cec0ac --- /dev/null +++ b/resources/svg/dot-net.svg @@ -0,0 +1 @@ +.NET icon diff --git a/resources/svg/douban.svg b/resources/svg/douban.svg new file mode 100644 index 0000000..b3eaee1 --- /dev/null +++ b/resources/svg/douban.svg @@ -0,0 +1 @@ +Douban icon diff --git a/resources/svg/draugiem-dot-lv.svg b/resources/svg/draugiem-dot-lv.svg new file mode 100644 index 0000000..dce601c --- /dev/null +++ b/resources/svg/draugiem-dot-lv.svg @@ -0,0 +1 @@ +Draugiem.lv icon \ No newline at end of file diff --git a/resources/svg/dribbble.svg b/resources/svg/dribbble.svg new file mode 100644 index 0000000..6652a80 --- /dev/null +++ b/resources/svg/dribbble.svg @@ -0,0 +1 @@ +Dribbble icon \ No newline at end of file diff --git a/resources/svg/drone.svg b/resources/svg/drone.svg new file mode 100644 index 0000000..8e8f335 --- /dev/null +++ b/resources/svg/drone.svg @@ -0,0 +1 @@ +Drone icon \ No newline at end of file diff --git a/resources/svg/drooble.svg b/resources/svg/drooble.svg new file mode 100644 index 0000000..1bec6c9 --- /dev/null +++ b/resources/svg/drooble.svg @@ -0,0 +1 @@ +Drooble icon diff --git a/resources/svg/dropbox.svg b/resources/svg/dropbox.svg new file mode 100644 index 0000000..30a63bd --- /dev/null +++ b/resources/svg/dropbox.svg @@ -0,0 +1 @@ +Dropbox icon \ No newline at end of file diff --git a/resources/svg/drupal.svg b/resources/svg/drupal.svg new file mode 100644 index 0000000..e25bc4e --- /dev/null +++ b/resources/svg/drupal.svg @@ -0,0 +1 @@ +Drupal icon \ No newline at end of file diff --git a/resources/svg/dsautomobiles.svg b/resources/svg/dsautomobiles.svg new file mode 100644 index 0000000..277eb9b --- /dev/null +++ b/resources/svg/dsautomobiles.svg @@ -0,0 +1 @@ +DS Automobiles icon \ No newline at end of file diff --git a/resources/svg/dtube.svg b/resources/svg/dtube.svg new file mode 100644 index 0000000..34d8941 --- /dev/null +++ b/resources/svg/dtube.svg @@ -0,0 +1 @@ +DTube icon \ No newline at end of file diff --git a/resources/svg/duckduckgo.svg b/resources/svg/duckduckgo.svg new file mode 100644 index 0000000..b108f2c --- /dev/null +++ b/resources/svg/duckduckgo.svg @@ -0,0 +1 @@ +DuckDuckGo icon \ No newline at end of file diff --git a/resources/svg/dunked.svg b/resources/svg/dunked.svg new file mode 100644 index 0000000..7425a0d --- /dev/null +++ b/resources/svg/dunked.svg @@ -0,0 +1 @@ +Dunked icon \ No newline at end of file diff --git a/resources/svg/duolingo.svg b/resources/svg/duolingo.svg new file mode 100644 index 0000000..e82c48e --- /dev/null +++ b/resources/svg/duolingo.svg @@ -0,0 +1 @@ +Duolingo icon diff --git a/resources/svg/dwm.svg b/resources/svg/dwm.svg new file mode 100644 index 0000000..28532f0 --- /dev/null +++ b/resources/svg/dwm.svg @@ -0,0 +1 @@ +dwm icon diff --git a/resources/svg/dynamics365.svg b/resources/svg/dynamics365.svg new file mode 100644 index 0000000..ca132c3 --- /dev/null +++ b/resources/svg/dynamics365.svg @@ -0,0 +1 @@ +Dynamics 365 icon diff --git a/resources/svg/dynatrace.svg b/resources/svg/dynatrace.svg new file mode 100644 index 0000000..cb1b9f9 --- /dev/null +++ b/resources/svg/dynatrace.svg @@ -0,0 +1 @@ +Dynatrace icon \ No newline at end of file diff --git a/resources/svg/ea.svg b/resources/svg/ea.svg new file mode 100644 index 0000000..a9deb8d --- /dev/null +++ b/resources/svg/ea.svg @@ -0,0 +1 @@ +EA icon \ No newline at end of file diff --git a/resources/svg/eagle.svg b/resources/svg/eagle.svg new file mode 100644 index 0000000..08e4265 --- /dev/null +++ b/resources/svg/eagle.svg @@ -0,0 +1 @@ +Eagle icon \ No newline at end of file diff --git a/resources/svg/easyjet.svg b/resources/svg/easyjet.svg new file mode 100644 index 0000000..1a8b045 --- /dev/null +++ b/resources/svg/easyjet.svg @@ -0,0 +1 @@ +easyJet icon \ No newline at end of file diff --git a/resources/svg/ebay.svg b/resources/svg/ebay.svg new file mode 100644 index 0000000..e8b1071 --- /dev/null +++ b/resources/svg/ebay.svg @@ -0,0 +1 @@ +eBay icon \ No newline at end of file diff --git a/resources/svg/eclipseche.svg b/resources/svg/eclipseche.svg new file mode 100644 index 0000000..3d90045 --- /dev/null +++ b/resources/svg/eclipseche.svg @@ -0,0 +1 @@ +Eclipse Che icon diff --git a/resources/svg/eclipseide.svg b/resources/svg/eclipseide.svg new file mode 100644 index 0000000..c6d90d5 --- /dev/null +++ b/resources/svg/eclipseide.svg @@ -0,0 +1 @@ +Eclipse IDE icon \ No newline at end of file diff --git a/resources/svg/eclipsemosquitto.svg b/resources/svg/eclipsemosquitto.svg new file mode 100644 index 0000000..761dc50 --- /dev/null +++ b/resources/svg/eclipsemosquitto.svg @@ -0,0 +1 @@ +Eclipse Mosquitto icon \ No newline at end of file diff --git a/resources/svg/eclipsevert-dot-x.svg b/resources/svg/eclipsevert-dot-x.svg new file mode 100644 index 0000000..d54dd90 --- /dev/null +++ b/resources/svg/eclipsevert-dot-x.svg @@ -0,0 +1 @@ +Eclipse Vert.x icon \ No newline at end of file diff --git a/resources/svg/edx.svg b/resources/svg/edx.svg new file mode 100644 index 0000000..e22d0ad --- /dev/null +++ b/resources/svg/edx.svg @@ -0,0 +1 @@ +edX icon \ No newline at end of file diff --git a/resources/svg/egghead.svg b/resources/svg/egghead.svg new file mode 100644 index 0000000..1da6abf --- /dev/null +++ b/resources/svg/egghead.svg @@ -0,0 +1 @@ +egghead icon \ No newline at end of file diff --git a/resources/svg/egnyte.svg b/resources/svg/egnyte.svg new file mode 100644 index 0000000..327119c --- /dev/null +++ b/resources/svg/egnyte.svg @@ -0,0 +1 @@ +Egnyte icon \ No newline at end of file diff --git a/resources/svg/eightsleep.svg b/resources/svg/eightsleep.svg new file mode 100644 index 0000000..6e34018 --- /dev/null +++ b/resources/svg/eightsleep.svg @@ -0,0 +1 @@ +Eight Sleep icon \ No newline at end of file diff --git a/resources/svg/elastic.svg b/resources/svg/elastic.svg new file mode 100644 index 0000000..7ff2060 --- /dev/null +++ b/resources/svg/elastic.svg @@ -0,0 +1 @@ +Elastic icon \ No newline at end of file diff --git a/resources/svg/elasticcloud.svg b/resources/svg/elasticcloud.svg new file mode 100644 index 0000000..20bfae0 --- /dev/null +++ b/resources/svg/elasticcloud.svg @@ -0,0 +1 @@ +Elastic Cloud icon \ No newline at end of file diff --git a/resources/svg/elasticsearch.svg b/resources/svg/elasticsearch.svg new file mode 100644 index 0000000..ce0bbdd --- /dev/null +++ b/resources/svg/elasticsearch.svg @@ -0,0 +1 @@ +Elasticsearch icon \ No newline at end of file diff --git a/resources/svg/elasticstack.svg b/resources/svg/elasticstack.svg new file mode 100644 index 0000000..412d488 --- /dev/null +++ b/resources/svg/elasticstack.svg @@ -0,0 +1 @@ +Elastic Stack icon \ No newline at end of file diff --git a/resources/svg/electron.svg b/resources/svg/electron.svg new file mode 100644 index 0000000..fa4a215 --- /dev/null +++ b/resources/svg/electron.svg @@ -0,0 +1 @@ +Electron icon \ No newline at end of file diff --git a/resources/svg/element.svg b/resources/svg/element.svg new file mode 100644 index 0000000..bcb2020 --- /dev/null +++ b/resources/svg/element.svg @@ -0,0 +1 @@ +Element icon \ No newline at end of file diff --git a/resources/svg/elementary.svg b/resources/svg/elementary.svg new file mode 100644 index 0000000..27eedb6 --- /dev/null +++ b/resources/svg/elementary.svg @@ -0,0 +1 @@ +elementary icon \ No newline at end of file diff --git a/resources/svg/eleventy.svg b/resources/svg/eleventy.svg new file mode 100644 index 0000000..fe6f5da --- /dev/null +++ b/resources/svg/eleventy.svg @@ -0,0 +1 @@ +Eleventy icon \ No newline at end of file diff --git a/resources/svg/elixir.svg b/resources/svg/elixir.svg new file mode 100644 index 0000000..e125170 --- /dev/null +++ b/resources/svg/elixir.svg @@ -0,0 +1 @@ +Elixir icon \ No newline at end of file diff --git a/resources/svg/eljueves.svg b/resources/svg/eljueves.svg new file mode 100644 index 0000000..4caa2c4 --- /dev/null +++ b/resources/svg/eljueves.svg @@ -0,0 +1 @@ +El Jueves icon diff --git a/resources/svg/ello.svg b/resources/svg/ello.svg new file mode 100644 index 0000000..85f86d7 --- /dev/null +++ b/resources/svg/ello.svg @@ -0,0 +1 @@ +Ello icon \ No newline at end of file diff --git a/resources/svg/elm.svg b/resources/svg/elm.svg new file mode 100644 index 0000000..27dd0d5 --- /dev/null +++ b/resources/svg/elm.svg @@ -0,0 +1 @@ +Elm icon \ No newline at end of file diff --git a/resources/svg/elsevier.svg b/resources/svg/elsevier.svg new file mode 100644 index 0000000..5c532b4 --- /dev/null +++ b/resources/svg/elsevier.svg @@ -0,0 +1 @@ +Elsevier icon \ No newline at end of file diff --git a/resources/svg/embarcadero.svg b/resources/svg/embarcadero.svg new file mode 100644 index 0000000..a612308 --- /dev/null +++ b/resources/svg/embarcadero.svg @@ -0,0 +1 @@ +Embarcadero icon \ No newline at end of file diff --git a/resources/svg/ember-dot-js.svg b/resources/svg/ember-dot-js.svg new file mode 100644 index 0000000..9683c83 --- /dev/null +++ b/resources/svg/ember-dot-js.svg @@ -0,0 +1 @@ +Ember.js icon diff --git a/resources/svg/emby.svg b/resources/svg/emby.svg new file mode 100644 index 0000000..f678ce5 --- /dev/null +++ b/resources/svg/emby.svg @@ -0,0 +1 @@ +Emby icon diff --git a/resources/svg/emirates.svg b/resources/svg/emirates.svg new file mode 100644 index 0000000..158345e --- /dev/null +++ b/resources/svg/emirates.svg @@ -0,0 +1 @@ +Emirates icon \ No newline at end of file diff --git a/resources/svg/emlakjet.svg b/resources/svg/emlakjet.svg new file mode 100644 index 0000000..c4320fd --- /dev/null +++ b/resources/svg/emlakjet.svg @@ -0,0 +1 @@ +Emlakjet icon \ No newline at end of file diff --git a/resources/svg/empirekred.svg b/resources/svg/empirekred.svg new file mode 100644 index 0000000..59c5079 --- /dev/null +++ b/resources/svg/empirekred.svg @@ -0,0 +1 @@ +Empire Kred icon \ No newline at end of file diff --git a/resources/svg/enpass.svg b/resources/svg/enpass.svg new file mode 100644 index 0000000..32a977c --- /dev/null +++ b/resources/svg/enpass.svg @@ -0,0 +1 @@ +Enpass icon \ No newline at end of file diff --git a/resources/svg/envato.svg b/resources/svg/envato.svg new file mode 100644 index 0000000..eb802f6 --- /dev/null +++ b/resources/svg/envato.svg @@ -0,0 +1 @@ +Envato icon \ No newline at end of file diff --git a/resources/svg/epel.svg b/resources/svg/epel.svg new file mode 100644 index 0000000..06400bf --- /dev/null +++ b/resources/svg/epel.svg @@ -0,0 +1 @@ +EPEL icon \ No newline at end of file diff --git a/resources/svg/epicgames.svg b/resources/svg/epicgames.svg new file mode 100644 index 0000000..d9b5ac5 --- /dev/null +++ b/resources/svg/epicgames.svg @@ -0,0 +1 @@ +Epic Games icon \ No newline at end of file diff --git a/resources/svg/epson.svg b/resources/svg/epson.svg new file mode 100644 index 0000000..eb1925b --- /dev/null +++ b/resources/svg/epson.svg @@ -0,0 +1 @@ +Epson icon \ No newline at end of file diff --git a/resources/svg/erlang.svg b/resources/svg/erlang.svg new file mode 100644 index 0000000..be4b8a0 --- /dev/null +++ b/resources/svg/erlang.svg @@ -0,0 +1 @@ +Erlang icon \ No newline at end of file diff --git a/resources/svg/esea.svg b/resources/svg/esea.svg new file mode 100644 index 0000000..0ecc0df --- /dev/null +++ b/resources/svg/esea.svg @@ -0,0 +1 @@ +ESEA icon \ No newline at end of file diff --git a/resources/svg/eslgaming.svg b/resources/svg/eslgaming.svg new file mode 100644 index 0000000..aaa082a --- /dev/null +++ b/resources/svg/eslgaming.svg @@ -0,0 +1 @@ +ESLGaming icon \ No newline at end of file diff --git a/resources/svg/eslint.svg b/resources/svg/eslint.svg new file mode 100644 index 0000000..4222bd1 --- /dev/null +++ b/resources/svg/eslint.svg @@ -0,0 +1 @@ +ESLint icon \ No newline at end of file diff --git a/resources/svg/esphome.svg b/resources/svg/esphome.svg new file mode 100644 index 0000000..8feaf56 --- /dev/null +++ b/resources/svg/esphome.svg @@ -0,0 +1 @@ +ESPHome icon \ No newline at end of file diff --git a/resources/svg/espressif.svg b/resources/svg/espressif.svg new file mode 100644 index 0000000..7630851 --- /dev/null +++ b/resources/svg/espressif.svg @@ -0,0 +1 @@ +Espressif icon \ No newline at end of file diff --git a/resources/svg/ethereum.svg b/resources/svg/ethereum.svg new file mode 100644 index 0000000..21ad326 --- /dev/null +++ b/resources/svg/ethereum.svg @@ -0,0 +1 @@ +Ethereum icon \ No newline at end of file diff --git a/resources/svg/ethiopianairlines.svg b/resources/svg/ethiopianairlines.svg new file mode 100644 index 0000000..a0ad376 --- /dev/null +++ b/resources/svg/ethiopianairlines.svg @@ -0,0 +1 @@ +Ethiopian Airlines icon \ No newline at end of file diff --git a/resources/svg/etihadairways.svg b/resources/svg/etihadairways.svg new file mode 100644 index 0000000..c433d82 --- /dev/null +++ b/resources/svg/etihadairways.svg @@ -0,0 +1 @@ +Etihad Airways icon \ No newline at end of file diff --git a/resources/svg/etsy.svg b/resources/svg/etsy.svg new file mode 100644 index 0000000..57e7779 --- /dev/null +++ b/resources/svg/etsy.svg @@ -0,0 +1 @@ +Etsy icon \ No newline at end of file diff --git a/resources/svg/eventbrite.svg b/resources/svg/eventbrite.svg new file mode 100644 index 0000000..68b259e --- /dev/null +++ b/resources/svg/eventbrite.svg @@ -0,0 +1 @@ +Eventbrite icon \ No newline at end of file diff --git a/resources/svg/eventstore.svg b/resources/svg/eventstore.svg new file mode 100644 index 0000000..1ff1b32 --- /dev/null +++ b/resources/svg/eventstore.svg @@ -0,0 +1 @@ +Event Store icon \ No newline at end of file diff --git a/resources/svg/evernote.svg b/resources/svg/evernote.svg new file mode 100644 index 0000000..7abff7d --- /dev/null +++ b/resources/svg/evernote.svg @@ -0,0 +1 @@ +Evernote icon \ No newline at end of file diff --git a/resources/svg/everplaces.svg b/resources/svg/everplaces.svg new file mode 100644 index 0000000..293bf39 --- /dev/null +++ b/resources/svg/everplaces.svg @@ -0,0 +1 @@ +Everplaces icon \ No newline at end of file diff --git a/resources/svg/evry.svg b/resources/svg/evry.svg new file mode 100644 index 0000000..d34e6d1 --- /dev/null +++ b/resources/svg/evry.svg @@ -0,0 +1 @@ +EVRY icon \ No newline at end of file diff --git a/resources/svg/exercism.svg b/resources/svg/exercism.svg new file mode 100644 index 0000000..db0cba9 --- /dev/null +++ b/resources/svg/exercism.svg @@ -0,0 +1 @@ +Exercism icon \ No newline at end of file diff --git a/resources/svg/expertsexchange.svg b/resources/svg/expertsexchange.svg new file mode 100644 index 0000000..5e91bed --- /dev/null +++ b/resources/svg/expertsexchange.svg @@ -0,0 +1 @@ +Experts Exchange icon \ No newline at end of file diff --git a/resources/svg/expo.svg b/resources/svg/expo.svg new file mode 100644 index 0000000..33fd136 --- /dev/null +++ b/resources/svg/expo.svg @@ -0,0 +1 @@ +Expo icon \ No newline at end of file diff --git a/resources/svg/express.svg b/resources/svg/express.svg new file mode 100644 index 0000000..25bebe0 --- /dev/null +++ b/resources/svg/express.svg @@ -0,0 +1 @@ +Express icon \ No newline at end of file diff --git a/resources/svg/eyeem.svg b/resources/svg/eyeem.svg new file mode 100644 index 0000000..d167309 --- /dev/null +++ b/resources/svg/eyeem.svg @@ -0,0 +1 @@ +EyeEm icon \ No newline at end of file diff --git a/resources/svg/f-droid.svg b/resources/svg/f-droid.svg new file mode 100644 index 0000000..e2d8d67 --- /dev/null +++ b/resources/svg/f-droid.svg @@ -0,0 +1 @@ +F-Droid icon \ No newline at end of file diff --git a/resources/svg/f-secure.svg b/resources/svg/f-secure.svg new file mode 100644 index 0000000..ea3fc4f --- /dev/null +++ b/resources/svg/f-secure.svg @@ -0,0 +1 @@ +F-Secure icon \ No newline at end of file diff --git a/resources/svg/facebook.svg b/resources/svg/facebook.svg new file mode 100644 index 0000000..b620a0a --- /dev/null +++ b/resources/svg/facebook.svg @@ -0,0 +1 @@ +Facebook icon \ No newline at end of file diff --git a/resources/svg/facebookgaming.svg b/resources/svg/facebookgaming.svg new file mode 100644 index 0000000..78de7cb --- /dev/null +++ b/resources/svg/facebookgaming.svg @@ -0,0 +1 @@ +Facebook Gaming icon \ No newline at end of file diff --git a/resources/svg/facebooklive.svg b/resources/svg/facebooklive.svg new file mode 100644 index 0000000..9477984 --- /dev/null +++ b/resources/svg/facebooklive.svg @@ -0,0 +1 @@ +Facebook Live icon \ No newline at end of file diff --git a/resources/svg/faceit.svg b/resources/svg/faceit.svg new file mode 100644 index 0000000..3a64b86 --- /dev/null +++ b/resources/svg/faceit.svg @@ -0,0 +1 @@ +FACEIT icon \ No newline at end of file diff --git a/resources/svg/facepunch.svg b/resources/svg/facepunch.svg new file mode 100644 index 0000000..d1b50bc --- /dev/null +++ b/resources/svg/facepunch.svg @@ -0,0 +1 @@ +Facepunch icon \ No newline at end of file diff --git a/resources/svg/falcon.svg b/resources/svg/falcon.svg new file mode 100644 index 0000000..40a88f0 --- /dev/null +++ b/resources/svg/falcon.svg @@ -0,0 +1 @@ +Falcon icon \ No newline at end of file diff --git a/resources/svg/fandango.svg b/resources/svg/fandango.svg new file mode 100644 index 0000000..97cb6e2 --- /dev/null +++ b/resources/svg/fandango.svg @@ -0,0 +1 @@ +Fandango icon \ No newline at end of file diff --git a/resources/svg/fandom.svg b/resources/svg/fandom.svg new file mode 100644 index 0000000..d1e4352 --- /dev/null +++ b/resources/svg/fandom.svg @@ -0,0 +1 @@ +Fandom icon \ No newline at end of file diff --git a/resources/svg/farfetch.svg b/resources/svg/farfetch.svg new file mode 100644 index 0000000..5026b78 --- /dev/null +++ b/resources/svg/farfetch.svg @@ -0,0 +1 @@ +Farfetch icon \ No newline at end of file diff --git a/resources/svg/fastapi.svg b/resources/svg/fastapi.svg new file mode 100644 index 0000000..0f9b9fe --- /dev/null +++ b/resources/svg/fastapi.svg @@ -0,0 +1 @@ +FastAPI icon diff --git a/resources/svg/fastify.svg b/resources/svg/fastify.svg new file mode 100644 index 0000000..dd7e15e --- /dev/null +++ b/resources/svg/fastify.svg @@ -0,0 +1 @@ +Fastify icon \ No newline at end of file diff --git a/resources/svg/fastlane.svg b/resources/svg/fastlane.svg new file mode 100644 index 0000000..04ce676 --- /dev/null +++ b/resources/svg/fastlane.svg @@ -0,0 +1 @@ +Fastlane icon \ No newline at end of file diff --git a/resources/svg/fastly.svg b/resources/svg/fastly.svg new file mode 100644 index 0000000..6cb38d8 --- /dev/null +++ b/resources/svg/fastly.svg @@ -0,0 +1 @@ +Fastly icon diff --git a/resources/svg/fathom.svg b/resources/svg/fathom.svg new file mode 100644 index 0000000..b9554fa --- /dev/null +++ b/resources/svg/fathom.svg @@ -0,0 +1 @@ +Fathom icon \ No newline at end of file diff --git a/resources/svg/favro.svg b/resources/svg/favro.svg new file mode 100644 index 0000000..cbe2c00 --- /dev/null +++ b/resources/svg/favro.svg @@ -0,0 +1 @@ +Favro icon \ No newline at end of file diff --git a/resources/svg/feathub.svg b/resources/svg/feathub.svg new file mode 100644 index 0000000..a3057ab --- /dev/null +++ b/resources/svg/feathub.svg @@ -0,0 +1 @@ +FeatHub icon \ No newline at end of file diff --git a/resources/svg/fedex.svg b/resources/svg/fedex.svg new file mode 100644 index 0000000..fb6172c --- /dev/null +++ b/resources/svg/fedex.svg @@ -0,0 +1 @@ +FedEx icon \ No newline at end of file diff --git a/resources/svg/fedora.svg b/resources/svg/fedora.svg new file mode 100644 index 0000000..5eada75 --- /dev/null +++ b/resources/svg/fedora.svg @@ -0,0 +1 @@ +Fedora icon \ No newline at end of file diff --git a/resources/svg/fedramp.svg b/resources/svg/fedramp.svg new file mode 100644 index 0000000..aa27a45 --- /dev/null +++ b/resources/svg/fedramp.svg @@ -0,0 +1 @@ +FedRAMP icon \ No newline at end of file diff --git a/resources/svg/feedly.svg b/resources/svg/feedly.svg new file mode 100644 index 0000000..55a9e42 --- /dev/null +++ b/resources/svg/feedly.svg @@ -0,0 +1 @@ +Feedly icon \ No newline at end of file diff --git a/resources/svg/ferrari.svg b/resources/svg/ferrari.svg new file mode 100644 index 0000000..a2813b0 --- /dev/null +++ b/resources/svg/ferrari.svg @@ -0,0 +1 @@ +Ferrari icon \ No newline at end of file diff --git a/resources/svg/ferrarin-dot-v-dot.svg b/resources/svg/ferrarin-dot-v-dot.svg new file mode 100644 index 0000000..bb20157 --- /dev/null +++ b/resources/svg/ferrarin-dot-v-dot.svg @@ -0,0 +1 @@ +Ferrari N.V. icon \ No newline at end of file diff --git a/resources/svg/fiat.svg b/resources/svg/fiat.svg new file mode 100644 index 0000000..869f856 --- /dev/null +++ b/resources/svg/fiat.svg @@ -0,0 +1 @@ +Fiat icon \ No newline at end of file diff --git a/resources/svg/fidoalliance.svg b/resources/svg/fidoalliance.svg new file mode 100644 index 0000000..82a0f26 --- /dev/null +++ b/resources/svg/fidoalliance.svg @@ -0,0 +1 @@ +Fido Alliance icon \ No newline at end of file diff --git a/resources/svg/fifa.svg b/resources/svg/fifa.svg new file mode 100644 index 0000000..d65336c --- /dev/null +++ b/resources/svg/fifa.svg @@ -0,0 +1 @@ +FIFA icon \ No newline at end of file diff --git a/resources/svg/figma.svg b/resources/svg/figma.svg new file mode 100644 index 0000000..79e170d --- /dev/null +++ b/resources/svg/figma.svg @@ -0,0 +1 @@ +Figma icon \ No newline at end of file diff --git a/resources/svg/figshare.svg b/resources/svg/figshare.svg new file mode 100644 index 0000000..e16800e --- /dev/null +++ b/resources/svg/figshare.svg @@ -0,0 +1 @@ +figshare icon diff --git a/resources/svg/fila.svg b/resources/svg/fila.svg new file mode 100644 index 0000000..8d60049 --- /dev/null +++ b/resources/svg/fila.svg @@ -0,0 +1 @@ +Fila icon \ No newline at end of file diff --git a/resources/svg/files.svg b/resources/svg/files.svg new file mode 100644 index 0000000..1ffe9f4 --- /dev/null +++ b/resources/svg/files.svg @@ -0,0 +1 @@ +Files icon \ No newline at end of file diff --git a/resources/svg/filezilla.svg b/resources/svg/filezilla.svg new file mode 100644 index 0000000..51e468b --- /dev/null +++ b/resources/svg/filezilla.svg @@ -0,0 +1 @@ +FileZilla icon \ No newline at end of file diff --git a/resources/svg/fing.svg b/resources/svg/fing.svg new file mode 100644 index 0000000..fe3e3ed --- /dev/null +++ b/resources/svg/fing.svg @@ -0,0 +1 @@ +Fing icon \ No newline at end of file diff --git a/resources/svg/firebase.svg b/resources/svg/firebase.svg new file mode 100644 index 0000000..dd45a34 --- /dev/null +++ b/resources/svg/firebase.svg @@ -0,0 +1 @@ +Firebase icon diff --git a/resources/svg/firefox.svg b/resources/svg/firefox.svg new file mode 100644 index 0000000..181b7c5 --- /dev/null +++ b/resources/svg/firefox.svg @@ -0,0 +1 @@ +Firefox icon \ No newline at end of file diff --git a/resources/svg/firefoxbrowser.svg b/resources/svg/firefoxbrowser.svg new file mode 100644 index 0000000..0fb3796 --- /dev/null +++ b/resources/svg/firefoxbrowser.svg @@ -0,0 +1 @@ +Firefox Browser icon \ No newline at end of file diff --git a/resources/svg/first.svg b/resources/svg/first.svg new file mode 100644 index 0000000..b411aa9 --- /dev/null +++ b/resources/svg/first.svg @@ -0,0 +1 @@ +FIRST icon \ No newline at end of file diff --git a/resources/svg/fitbit.svg b/resources/svg/fitbit.svg new file mode 100644 index 0000000..5ef5e5e --- /dev/null +++ b/resources/svg/fitbit.svg @@ -0,0 +1 @@ +Fitbit icon \ No newline at end of file diff --git a/resources/svg/fite.svg b/resources/svg/fite.svg new file mode 100644 index 0000000..d1e334a --- /dev/null +++ b/resources/svg/fite.svg @@ -0,0 +1 @@ +FITE icon diff --git a/resources/svg/fiverr.svg b/resources/svg/fiverr.svg new file mode 100644 index 0000000..62939c9 --- /dev/null +++ b/resources/svg/fiverr.svg @@ -0,0 +1 @@ +Fiverr icon \ No newline at end of file diff --git a/resources/svg/flask.svg b/resources/svg/flask.svg new file mode 100644 index 0000000..5128bcb --- /dev/null +++ b/resources/svg/flask.svg @@ -0,0 +1 @@ +Flask icon \ No newline at end of file diff --git a/resources/svg/flathub.svg b/resources/svg/flathub.svg new file mode 100644 index 0000000..819226b --- /dev/null +++ b/resources/svg/flathub.svg @@ -0,0 +1 @@ +Flathub icon diff --git a/resources/svg/flattr.svg b/resources/svg/flattr.svg new file mode 100644 index 0000000..07216fa --- /dev/null +++ b/resources/svg/flattr.svg @@ -0,0 +1 @@ +Flattr icon \ No newline at end of file diff --git a/resources/svg/flickr.svg b/resources/svg/flickr.svg new file mode 100644 index 0000000..5d8f738 --- /dev/null +++ b/resources/svg/flickr.svg @@ -0,0 +1 @@ +Flickr icon \ No newline at end of file diff --git a/resources/svg/flipboard.svg b/resources/svg/flipboard.svg new file mode 100644 index 0000000..b2c3351 --- /dev/null +++ b/resources/svg/flipboard.svg @@ -0,0 +1 @@ +Flipboard icon \ No newline at end of file diff --git a/resources/svg/flipkart.svg b/resources/svg/flipkart.svg new file mode 100644 index 0000000..40bc3f3 --- /dev/null +++ b/resources/svg/flipkart.svg @@ -0,0 +1 @@ +Flipkart icon \ No newline at end of file diff --git a/resources/svg/floatplane.svg b/resources/svg/floatplane.svg new file mode 100644 index 0000000..1b50ece --- /dev/null +++ b/resources/svg/floatplane.svg @@ -0,0 +1 @@ +Floatplane icon \ No newline at end of file diff --git a/resources/svg/flood.svg b/resources/svg/flood.svg new file mode 100644 index 0000000..7d53bab --- /dev/null +++ b/resources/svg/flood.svg @@ -0,0 +1 @@ +Flood icon diff --git a/resources/svg/fluentd.svg b/resources/svg/fluentd.svg new file mode 100644 index 0000000..cb29efb --- /dev/null +++ b/resources/svg/fluentd.svg @@ -0,0 +1 @@ +Fluentd icon \ No newline at end of file diff --git a/resources/svg/flutter.svg b/resources/svg/flutter.svg new file mode 100644 index 0000000..c37e5a5 --- /dev/null +++ b/resources/svg/flutter.svg @@ -0,0 +1 @@ +Flutter icon \ No newline at end of file diff --git a/resources/svg/fnac.svg b/resources/svg/fnac.svg new file mode 100644 index 0000000..1abb9b3 --- /dev/null +++ b/resources/svg/fnac.svg @@ -0,0 +1 @@ +Fnac icon \ No newline at end of file diff --git a/resources/svg/folium.svg b/resources/svg/folium.svg new file mode 100644 index 0000000..8af5224 --- /dev/null +++ b/resources/svg/folium.svg @@ -0,0 +1 @@ +Folium icon \ No newline at end of file diff --git a/resources/svg/fontawesome.svg b/resources/svg/fontawesome.svg new file mode 100644 index 0000000..fdc42a4 --- /dev/null +++ b/resources/svg/fontawesome.svg @@ -0,0 +1 @@ +Font Awesome icon diff --git a/resources/svg/foodpanda.svg b/resources/svg/foodpanda.svg new file mode 100644 index 0000000..090ddf1 --- /dev/null +++ b/resources/svg/foodpanda.svg @@ -0,0 +1 @@ +foodpanda icon \ No newline at end of file diff --git a/resources/svg/ford.svg b/resources/svg/ford.svg new file mode 100644 index 0000000..d44232c --- /dev/null +++ b/resources/svg/ford.svg @@ -0,0 +1 @@ +Ford icon diff --git a/resources/svg/formstack.svg b/resources/svg/formstack.svg new file mode 100644 index 0000000..672411e --- /dev/null +++ b/resources/svg/formstack.svg @@ -0,0 +1 @@ +Formstack icon \ No newline at end of file diff --git a/resources/svg/fortinet.svg b/resources/svg/fortinet.svg new file mode 100644 index 0000000..11eb9a2 --- /dev/null +++ b/resources/svg/fortinet.svg @@ -0,0 +1 @@ +Fortinet icon diff --git a/resources/svg/fortran.svg b/resources/svg/fortran.svg new file mode 100644 index 0000000..b611707 --- /dev/null +++ b/resources/svg/fortran.svg @@ -0,0 +1 @@ +Fortran icon \ No newline at end of file diff --git a/resources/svg/fossa.svg b/resources/svg/fossa.svg new file mode 100644 index 0000000..9156360 --- /dev/null +++ b/resources/svg/fossa.svg @@ -0,0 +1 @@ +Fossa icon \ No newline at end of file diff --git a/resources/svg/fossilscm.svg b/resources/svg/fossilscm.svg new file mode 100644 index 0000000..4f42680 --- /dev/null +++ b/resources/svg/fossilscm.svg @@ -0,0 +1 @@ +Fossil SCM icon \ No newline at end of file diff --git a/resources/svg/foursquare.svg b/resources/svg/foursquare.svg new file mode 100644 index 0000000..b96f51b --- /dev/null +++ b/resources/svg/foursquare.svg @@ -0,0 +1 @@ +Foursquare icon \ No newline at end of file diff --git a/resources/svg/foxtel.svg b/resources/svg/foxtel.svg new file mode 100644 index 0000000..30d9dd5 --- /dev/null +++ b/resources/svg/foxtel.svg @@ -0,0 +1 @@ +Foxtel icon \ No newline at end of file diff --git a/resources/svg/fozzy.svg b/resources/svg/fozzy.svg new file mode 100644 index 0000000..a76e7ea --- /dev/null +++ b/resources/svg/fozzy.svg @@ -0,0 +1 @@ +Fozzy icon \ No newline at end of file diff --git a/resources/svg/framer.svg b/resources/svg/framer.svg new file mode 100644 index 0000000..6997298 --- /dev/null +++ b/resources/svg/framer.svg @@ -0,0 +1 @@ +Framer icon \ No newline at end of file diff --git a/resources/svg/fraunhofer-gesellschaft.svg b/resources/svg/fraunhofer-gesellschaft.svg new file mode 100644 index 0000000..2e6a489 --- /dev/null +++ b/resources/svg/fraunhofer-gesellschaft.svg @@ -0,0 +1 @@ +Fraunhofer-Gesellschaft icon \ No newline at end of file diff --git a/resources/svg/freebsd.svg b/resources/svg/freebsd.svg new file mode 100644 index 0000000..e0a2c97 --- /dev/null +++ b/resources/svg/freebsd.svg @@ -0,0 +1 @@ +FreeBSD icon \ No newline at end of file diff --git a/resources/svg/freecodecamp.svg b/resources/svg/freecodecamp.svg new file mode 100644 index 0000000..45a5f27 --- /dev/null +++ b/resources/svg/freecodecamp.svg @@ -0,0 +1 @@ +freeCodeCamp icon \ No newline at end of file diff --git a/resources/svg/freedesktop-dot-org.svg b/resources/svg/freedesktop-dot-org.svg new file mode 100644 index 0000000..436c22d --- /dev/null +++ b/resources/svg/freedesktop-dot-org.svg @@ -0,0 +1 @@ +freedesktop.org icon \ No newline at end of file diff --git a/resources/svg/freelancer.svg b/resources/svg/freelancer.svg new file mode 100644 index 0000000..c5463ac --- /dev/null +++ b/resources/svg/freelancer.svg @@ -0,0 +1 @@ +Freelancer icon diff --git a/resources/svg/freenas.svg b/resources/svg/freenas.svg new file mode 100644 index 0000000..62420d1 --- /dev/null +++ b/resources/svg/freenas.svg @@ -0,0 +1 @@ +FreeNAS icon \ No newline at end of file diff --git a/resources/svg/fujifilm.svg b/resources/svg/fujifilm.svg new file mode 100644 index 0000000..e705d90 --- /dev/null +++ b/resources/svg/fujifilm.svg @@ -0,0 +1 @@ +Fujifilm icon \ No newline at end of file diff --git a/resources/svg/fujitsu.svg b/resources/svg/fujitsu.svg new file mode 100644 index 0000000..f2263e4 --- /dev/null +++ b/resources/svg/fujitsu.svg @@ -0,0 +1 @@ +Fujitsu icon diff --git a/resources/svg/furaffinity.svg b/resources/svg/furaffinity.svg new file mode 100644 index 0000000..b8eaf08 --- /dev/null +++ b/resources/svg/furaffinity.svg @@ -0,0 +1 @@ +Fur Affinity icon \ No newline at end of file diff --git a/resources/svg/furrynetwork.svg b/resources/svg/furrynetwork.svg new file mode 100644 index 0000000..02f8ba5 --- /dev/null +++ b/resources/svg/furrynetwork.svg @@ -0,0 +1 @@ +Furry Network icon \ No newline at end of file diff --git a/resources/svg/futurelearn.svg b/resources/svg/futurelearn.svg new file mode 100644 index 0000000..9b5042b --- /dev/null +++ b/resources/svg/futurelearn.svg @@ -0,0 +1 @@ +FutureLearn icon \ No newline at end of file diff --git a/resources/svg/g2a.svg b/resources/svg/g2a.svg new file mode 100644 index 0000000..859407a --- /dev/null +++ b/resources/svg/g2a.svg @@ -0,0 +1 @@ +G2A icon \ No newline at end of file diff --git a/resources/svg/gamejolt.svg b/resources/svg/gamejolt.svg new file mode 100644 index 0000000..aefb645 --- /dev/null +++ b/resources/svg/gamejolt.svg @@ -0,0 +1 @@ +Game Jolt icon \ No newline at end of file diff --git a/resources/svg/garmin.svg b/resources/svg/garmin.svg new file mode 100644 index 0000000..4166645 --- /dev/null +++ b/resources/svg/garmin.svg @@ -0,0 +1 @@ +Garmin icon \ No newline at end of file diff --git a/resources/svg/gatling.svg b/resources/svg/gatling.svg new file mode 100644 index 0000000..6b212d5 --- /dev/null +++ b/resources/svg/gatling.svg @@ -0,0 +1 @@ +Gatling icon \ No newline at end of file diff --git a/resources/svg/gatsby.svg b/resources/svg/gatsby.svg new file mode 100644 index 0000000..ada4c9f --- /dev/null +++ b/resources/svg/gatsby.svg @@ -0,0 +1 @@ +Gatsby icon \ No newline at end of file diff --git a/resources/svg/gauges.svg b/resources/svg/gauges.svg new file mode 100644 index 0000000..c895afc --- /dev/null +++ b/resources/svg/gauges.svg @@ -0,0 +1 @@ +Gauges icon \ No newline at end of file diff --git a/resources/svg/geeksforgeeks.svg b/resources/svg/geeksforgeeks.svg new file mode 100644 index 0000000..1a6a5fb --- /dev/null +++ b/resources/svg/geeksforgeeks.svg @@ -0,0 +1 @@ +GeeksforGeeks icon \ No newline at end of file diff --git a/resources/svg/generalelectric.svg b/resources/svg/generalelectric.svg new file mode 100644 index 0000000..4febbd5 --- /dev/null +++ b/resources/svg/generalelectric.svg @@ -0,0 +1 @@ +General Electric icon \ No newline at end of file diff --git a/resources/svg/generalmotors.svg b/resources/svg/generalmotors.svg new file mode 100644 index 0000000..e4578ab --- /dev/null +++ b/resources/svg/generalmotors.svg @@ -0,0 +1 @@ +General Motors icon \ No newline at end of file diff --git a/resources/svg/genius.svg b/resources/svg/genius.svg new file mode 100644 index 0000000..4d8ccc4 --- /dev/null +++ b/resources/svg/genius.svg @@ -0,0 +1 @@ +Genius icon \ No newline at end of file diff --git a/resources/svg/gentoo.svg b/resources/svg/gentoo.svg new file mode 100644 index 0000000..26d9bcf --- /dev/null +++ b/resources/svg/gentoo.svg @@ -0,0 +1 @@ +Gentoo icon \ No newline at end of file diff --git a/resources/svg/geocaching.svg b/resources/svg/geocaching.svg new file mode 100644 index 0000000..fc0a267 --- /dev/null +++ b/resources/svg/geocaching.svg @@ -0,0 +1 @@ +Geocaching icon \ No newline at end of file diff --git a/resources/svg/gerrit.svg b/resources/svg/gerrit.svg new file mode 100644 index 0000000..8a5be8b --- /dev/null +++ b/resources/svg/gerrit.svg @@ -0,0 +1 @@ +Gerrit icon \ No newline at end of file diff --git a/resources/svg/ghost.svg b/resources/svg/ghost.svg new file mode 100644 index 0000000..f656513 --- /dev/null +++ b/resources/svg/ghost.svg @@ -0,0 +1 @@ +Ghost icon \ No newline at end of file diff --git a/resources/svg/ghostery.svg b/resources/svg/ghostery.svg new file mode 100644 index 0000000..d74780b --- /dev/null +++ b/resources/svg/ghostery.svg @@ -0,0 +1 @@ +Ghostery icon \ No newline at end of file diff --git a/resources/svg/gimp.svg b/resources/svg/gimp.svg new file mode 100644 index 0000000..b717957 --- /dev/null +++ b/resources/svg/gimp.svg @@ -0,0 +1 @@ +GIMP icon \ No newline at end of file diff --git a/resources/svg/giphy.svg b/resources/svg/giphy.svg new file mode 100644 index 0000000..37d6cf2 --- /dev/null +++ b/resources/svg/giphy.svg @@ -0,0 +1 @@ +GIPHY icon \ No newline at end of file diff --git a/resources/svg/git.svg b/resources/svg/git.svg new file mode 100644 index 0000000..4cc1769 --- /dev/null +++ b/resources/svg/git.svg @@ -0,0 +1 @@ +Git icon \ No newline at end of file diff --git a/resources/svg/gitbook.svg b/resources/svg/gitbook.svg new file mode 100644 index 0000000..bb55995 --- /dev/null +++ b/resources/svg/gitbook.svg @@ -0,0 +1 @@ +GitBook icon \ No newline at end of file diff --git a/resources/svg/gitea.svg b/resources/svg/gitea.svg new file mode 100644 index 0000000..825af49 --- /dev/null +++ b/resources/svg/gitea.svg @@ -0,0 +1 @@ +Gitea icon \ No newline at end of file diff --git a/resources/svg/gitee.svg b/resources/svg/gitee.svg new file mode 100644 index 0000000..2ce9b3e --- /dev/null +++ b/resources/svg/gitee.svg @@ -0,0 +1 @@ +Gitee icon \ No newline at end of file diff --git a/resources/svg/gitextensions.svg b/resources/svg/gitextensions.svg new file mode 100644 index 0000000..59b2f0c --- /dev/null +++ b/resources/svg/gitextensions.svg @@ -0,0 +1 @@ +Git Extensions icon \ No newline at end of file diff --git a/resources/svg/github.svg b/resources/svg/github.svg new file mode 100644 index 0000000..e3c469f --- /dev/null +++ b/resources/svg/github.svg @@ -0,0 +1 @@ +GitHub icon \ No newline at end of file diff --git a/resources/svg/githubactions.svg b/resources/svg/githubactions.svg new file mode 100644 index 0000000..c936630 --- /dev/null +++ b/resources/svg/githubactions.svg @@ -0,0 +1 @@ +GitHub Actions icon \ No newline at end of file diff --git a/resources/svg/githubsponsors.svg b/resources/svg/githubsponsors.svg new file mode 100644 index 0000000..fda4ded --- /dev/null +++ b/resources/svg/githubsponsors.svg @@ -0,0 +1 @@ +GitHub Sponsors icon \ No newline at end of file diff --git a/resources/svg/gitkraken.svg b/resources/svg/gitkraken.svg new file mode 100644 index 0000000..9286ba6 --- /dev/null +++ b/resources/svg/gitkraken.svg @@ -0,0 +1 @@ +GitKraken icon \ No newline at end of file diff --git a/resources/svg/gitlab.svg b/resources/svg/gitlab.svg new file mode 100644 index 0000000..44064db --- /dev/null +++ b/resources/svg/gitlab.svg @@ -0,0 +1 @@ +GitLab icon \ No newline at end of file diff --git a/resources/svg/gitlfs.svg b/resources/svg/gitlfs.svg new file mode 100644 index 0000000..b6ad486 --- /dev/null +++ b/resources/svg/gitlfs.svg @@ -0,0 +1 @@ +Git LFS icon diff --git a/resources/svg/gitpod.svg b/resources/svg/gitpod.svg new file mode 100644 index 0000000..84052ec --- /dev/null +++ b/resources/svg/gitpod.svg @@ -0,0 +1 @@ +Gitpod icon \ No newline at end of file diff --git a/resources/svg/gitter.svg b/resources/svg/gitter.svg new file mode 100644 index 0000000..38a12c8 --- /dev/null +++ b/resources/svg/gitter.svg @@ -0,0 +1 @@ +Gitter icon \ No newline at end of file diff --git a/resources/svg/glassdoor.svg b/resources/svg/glassdoor.svg new file mode 100644 index 0000000..650342e --- /dev/null +++ b/resources/svg/glassdoor.svg @@ -0,0 +1 @@ +Glassdoor icon \ No newline at end of file diff --git a/resources/svg/glitch.svg b/resources/svg/glitch.svg new file mode 100644 index 0000000..a81afa6 --- /dev/null +++ b/resources/svg/glitch.svg @@ -0,0 +1 @@ +Glitch icon \ No newline at end of file diff --git a/resources/svg/gmail.svg b/resources/svg/gmail.svg new file mode 100644 index 0000000..10b87a3 --- /dev/null +++ b/resources/svg/gmail.svg @@ -0,0 +1 @@ +Gmail icon \ No newline at end of file diff --git a/resources/svg/gnome.svg b/resources/svg/gnome.svg new file mode 100644 index 0000000..90fb395 --- /dev/null +++ b/resources/svg/gnome.svg @@ -0,0 +1 @@ +GNOME icon \ No newline at end of file diff --git a/resources/svg/gnu.svg b/resources/svg/gnu.svg new file mode 100644 index 0000000..d78b764 --- /dev/null +++ b/resources/svg/gnu.svg @@ -0,0 +1 @@ +GNU icon \ No newline at end of file diff --git a/resources/svg/gnubash.svg b/resources/svg/gnubash.svg new file mode 100644 index 0000000..5cc9d2a --- /dev/null +++ b/resources/svg/gnubash.svg @@ -0,0 +1 @@ +GNU Bash icon \ No newline at end of file diff --git a/resources/svg/gnuemacs.svg b/resources/svg/gnuemacs.svg new file mode 100644 index 0000000..125c2ff --- /dev/null +++ b/resources/svg/gnuemacs.svg @@ -0,0 +1 @@ +GNU Emacs icon \ No newline at end of file diff --git a/resources/svg/gnuicecat.svg b/resources/svg/gnuicecat.svg new file mode 100644 index 0000000..e129f6e --- /dev/null +++ b/resources/svg/gnuicecat.svg @@ -0,0 +1 @@ +GNU IceCat icon \ No newline at end of file diff --git a/resources/svg/gnuprivacyguard.svg b/resources/svg/gnuprivacyguard.svg new file mode 100644 index 0000000..9f618db --- /dev/null +++ b/resources/svg/gnuprivacyguard.svg @@ -0,0 +1 @@ +GNU Privacy Guard icon \ No newline at end of file diff --git a/resources/svg/gnusocial.svg b/resources/svg/gnusocial.svg new file mode 100644 index 0000000..f149599 --- /dev/null +++ b/resources/svg/gnusocial.svg @@ -0,0 +1 @@ +GNU social icon \ No newline at end of file diff --git a/resources/svg/go.svg b/resources/svg/go.svg new file mode 100644 index 0000000..4b4ac4b --- /dev/null +++ b/resources/svg/go.svg @@ -0,0 +1 @@ +Go icon \ No newline at end of file diff --git a/resources/svg/godotengine.svg b/resources/svg/godotengine.svg new file mode 100644 index 0000000..b127b29 --- /dev/null +++ b/resources/svg/godotengine.svg @@ -0,0 +1 @@ +Godot Engine icon \ No newline at end of file diff --git a/resources/svg/gofundme.svg b/resources/svg/gofundme.svg new file mode 100644 index 0000000..708c363 --- /dev/null +++ b/resources/svg/gofundme.svg @@ -0,0 +1 @@ +GoFundMe icon \ No newline at end of file diff --git a/resources/svg/gog-dot-com.svg b/resources/svg/gog-dot-com.svg new file mode 100644 index 0000000..626a4bc --- /dev/null +++ b/resources/svg/gog-dot-com.svg @@ -0,0 +1 @@ +GOG.com icon \ No newline at end of file diff --git a/resources/svg/goldenline.svg b/resources/svg/goldenline.svg new file mode 100644 index 0000000..6bf596e --- /dev/null +++ b/resources/svg/goldenline.svg @@ -0,0 +1 @@ +GoldenLine icon \ No newline at end of file diff --git a/resources/svg/goodreads.svg b/resources/svg/goodreads.svg new file mode 100644 index 0000000..be8a2a1 --- /dev/null +++ b/resources/svg/goodreads.svg @@ -0,0 +1 @@ +Goodreads icon \ No newline at end of file diff --git a/resources/svg/google.svg b/resources/svg/google.svg new file mode 100644 index 0000000..33955ac --- /dev/null +++ b/resources/svg/google.svg @@ -0,0 +1 @@ +Google icon \ No newline at end of file diff --git a/resources/svg/googleads.svg b/resources/svg/googleads.svg new file mode 100644 index 0000000..14e204f --- /dev/null +++ b/resources/svg/googleads.svg @@ -0,0 +1 @@ +Google Ads icon \ No newline at end of file diff --git a/resources/svg/googleadsense.svg b/resources/svg/googleadsense.svg new file mode 100644 index 0000000..3ffb981 --- /dev/null +++ b/resources/svg/googleadsense.svg @@ -0,0 +1 @@ +Google AdSense icon \ No newline at end of file diff --git a/resources/svg/googleanalytics.svg b/resources/svg/googleanalytics.svg new file mode 100644 index 0000000..75b29e3 --- /dev/null +++ b/resources/svg/googleanalytics.svg @@ -0,0 +1 @@ +Google Analytics icon \ No newline at end of file diff --git a/resources/svg/googleassistant.svg b/resources/svg/googleassistant.svg new file mode 100644 index 0000000..fc361e1 --- /dev/null +++ b/resources/svg/googleassistant.svg @@ -0,0 +1 @@ +Google Assistant icon \ No newline at end of file diff --git a/resources/svg/googlecalendar.svg b/resources/svg/googlecalendar.svg new file mode 100644 index 0000000..f06b8cc --- /dev/null +++ b/resources/svg/googlecalendar.svg @@ -0,0 +1 @@ +Google Calendar icon \ No newline at end of file diff --git a/resources/svg/googlecardboard.svg b/resources/svg/googlecardboard.svg new file mode 100644 index 0000000..6188ed6 --- /dev/null +++ b/resources/svg/googlecardboard.svg @@ -0,0 +1 @@ +Google Cardboard icon \ No newline at end of file diff --git a/resources/svg/googlecast.svg b/resources/svg/googlecast.svg new file mode 100644 index 0000000..b40b8d1 --- /dev/null +++ b/resources/svg/googlecast.svg @@ -0,0 +1 @@ +Google Cast icon diff --git a/resources/svg/googlechat.svg b/resources/svg/googlechat.svg new file mode 100644 index 0000000..d571b6a --- /dev/null +++ b/resources/svg/googlechat.svg @@ -0,0 +1 @@ +Google Chat icon \ No newline at end of file diff --git a/resources/svg/googlechrome.svg b/resources/svg/googlechrome.svg new file mode 100644 index 0000000..1651182 --- /dev/null +++ b/resources/svg/googlechrome.svg @@ -0,0 +1 @@ +Google Chrome icon \ No newline at end of file diff --git a/resources/svg/googleclassroom.svg b/resources/svg/googleclassroom.svg new file mode 100644 index 0000000..9b0b932 --- /dev/null +++ b/resources/svg/googleclassroom.svg @@ -0,0 +1 @@ +Google Classroom icon diff --git a/resources/svg/googlecloud.svg b/resources/svg/googlecloud.svg new file mode 100644 index 0000000..544342a --- /dev/null +++ b/resources/svg/googlecloud.svg @@ -0,0 +1 @@ +Google Cloud icon \ No newline at end of file diff --git a/resources/svg/googlecolab.svg b/resources/svg/googlecolab.svg new file mode 100644 index 0000000..0cd8b7f --- /dev/null +++ b/resources/svg/googlecolab.svg @@ -0,0 +1 @@ +Google Colab icon \ No newline at end of file diff --git a/resources/svg/googledomains.svg b/resources/svg/googledomains.svg new file mode 100644 index 0000000..1ccbbc7 --- /dev/null +++ b/resources/svg/googledomains.svg @@ -0,0 +1 @@ +Google Domains icon \ No newline at end of file diff --git a/resources/svg/googledrive.svg b/resources/svg/googledrive.svg new file mode 100644 index 0000000..7edeb6d --- /dev/null +++ b/resources/svg/googledrive.svg @@ -0,0 +1 @@ +Google Drive icon \ No newline at end of file diff --git a/resources/svg/googleearth.svg b/resources/svg/googleearth.svg new file mode 100644 index 0000000..d46fd3c --- /dev/null +++ b/resources/svg/googleearth.svg @@ -0,0 +1 @@ +Google Earth icon diff --git a/resources/svg/googlefit.svg b/resources/svg/googlefit.svg new file mode 100644 index 0000000..815c79d --- /dev/null +++ b/resources/svg/googlefit.svg @@ -0,0 +1 @@ +Google Fit icon \ No newline at end of file diff --git a/resources/svg/googlehangouts.svg b/resources/svg/googlehangouts.svg new file mode 100644 index 0000000..831decc --- /dev/null +++ b/resources/svg/googlehangouts.svg @@ -0,0 +1 @@ +Google Hangouts icon \ No newline at end of file diff --git a/resources/svg/googlekeep.svg b/resources/svg/googlekeep.svg new file mode 100644 index 0000000..6a34681 --- /dev/null +++ b/resources/svg/googlekeep.svg @@ -0,0 +1 @@ +Google Keep icon \ No newline at end of file diff --git a/resources/svg/googlelens.svg b/resources/svg/googlelens.svg new file mode 100644 index 0000000..fd5ef86 --- /dev/null +++ b/resources/svg/googlelens.svg @@ -0,0 +1 @@ +Google Lens icon diff --git a/resources/svg/googlemaps.svg b/resources/svg/googlemaps.svg new file mode 100644 index 0000000..af0d391 --- /dev/null +++ b/resources/svg/googlemaps.svg @@ -0,0 +1 @@ +Google Maps icon \ No newline at end of file diff --git a/resources/svg/googlemeet.svg b/resources/svg/googlemeet.svg new file mode 100644 index 0000000..7325fe4 --- /dev/null +++ b/resources/svg/googlemeet.svg @@ -0,0 +1 @@ +Google Meet icon \ No newline at end of file diff --git a/resources/svg/googlemessages.svg b/resources/svg/googlemessages.svg new file mode 100644 index 0000000..c111007 --- /dev/null +++ b/resources/svg/googlemessages.svg @@ -0,0 +1 @@ +Google Messages icon diff --git a/resources/svg/googlemybusiness.svg b/resources/svg/googlemybusiness.svg new file mode 100644 index 0000000..2e69b82 --- /dev/null +++ b/resources/svg/googlemybusiness.svg @@ -0,0 +1 @@ +Google My Business icon \ No newline at end of file diff --git a/resources/svg/googlenearby.svg b/resources/svg/googlenearby.svg new file mode 100644 index 0000000..02c7fcb --- /dev/null +++ b/resources/svg/googlenearby.svg @@ -0,0 +1 @@ +Google Nearby icon \ No newline at end of file diff --git a/resources/svg/googlenews.svg b/resources/svg/googlenews.svg new file mode 100644 index 0000000..d688be9 --- /dev/null +++ b/resources/svg/googlenews.svg @@ -0,0 +1 @@ +Google News icon \ No newline at end of file diff --git a/resources/svg/googleoptimize.svg b/resources/svg/googleoptimize.svg new file mode 100644 index 0000000..e531f59 --- /dev/null +++ b/resources/svg/googleoptimize.svg @@ -0,0 +1 @@ +Google Optimize icon \ No newline at end of file diff --git a/resources/svg/googlepay.svg b/resources/svg/googlepay.svg new file mode 100644 index 0000000..d25fdae --- /dev/null +++ b/resources/svg/googlepay.svg @@ -0,0 +1 @@ +Google Pay icon \ No newline at end of file diff --git a/resources/svg/googlephotos.svg b/resources/svg/googlephotos.svg new file mode 100644 index 0000000..f09aeb4 --- /dev/null +++ b/resources/svg/googlephotos.svg @@ -0,0 +1 @@ +Google Photos icon \ No newline at end of file diff --git a/resources/svg/googleplay.svg b/resources/svg/googleplay.svg new file mode 100644 index 0000000..87f499c --- /dev/null +++ b/resources/svg/googleplay.svg @@ -0,0 +1 @@ +Google Play icon \ No newline at end of file diff --git a/resources/svg/googlepodcasts.svg b/resources/svg/googlepodcasts.svg new file mode 100644 index 0000000..ffa60d5 --- /dev/null +++ b/resources/svg/googlepodcasts.svg @@ -0,0 +1 @@ +Google Podcasts icon \ No newline at end of file diff --git a/resources/svg/googlescholar.svg b/resources/svg/googlescholar.svg new file mode 100644 index 0000000..bb54d88 --- /dev/null +++ b/resources/svg/googlescholar.svg @@ -0,0 +1 @@ +Google Scholar icon \ No newline at end of file diff --git a/resources/svg/googlesearchconsole.svg b/resources/svg/googlesearchconsole.svg new file mode 100644 index 0000000..b6e291a --- /dev/null +++ b/resources/svg/googlesearchconsole.svg @@ -0,0 +1 @@ +Google Search Console icon \ No newline at end of file diff --git a/resources/svg/googlesheets.svg b/resources/svg/googlesheets.svg new file mode 100644 index 0000000..07f4b40 --- /dev/null +++ b/resources/svg/googlesheets.svg @@ -0,0 +1 @@ +Google Sheets icon \ No newline at end of file diff --git a/resources/svg/googlestreetview.svg b/resources/svg/googlestreetview.svg new file mode 100644 index 0000000..ef5ab07 --- /dev/null +++ b/resources/svg/googlestreetview.svg @@ -0,0 +1 @@ +Google Street View icon \ No newline at end of file diff --git a/resources/svg/googletagmanager.svg b/resources/svg/googletagmanager.svg new file mode 100644 index 0000000..e749ead --- /dev/null +++ b/resources/svg/googletagmanager.svg @@ -0,0 +1 @@ +Google Tag Manager icon \ No newline at end of file diff --git a/resources/svg/googletranslate.svg b/resources/svg/googletranslate.svg new file mode 100644 index 0000000..08058d5 --- /dev/null +++ b/resources/svg/googletranslate.svg @@ -0,0 +1 @@ +Google Translate icon \ No newline at end of file diff --git a/resources/svg/gotomeeting.svg b/resources/svg/gotomeeting.svg new file mode 100644 index 0000000..27c101c --- /dev/null +++ b/resources/svg/gotomeeting.svg @@ -0,0 +1 @@ +GoToMeeting icon \ No newline at end of file diff --git a/resources/svg/gov-dot-uk.svg b/resources/svg/gov-dot-uk.svg new file mode 100644 index 0000000..30a4962 --- /dev/null +++ b/resources/svg/gov-dot-uk.svg @@ -0,0 +1 @@ +GOV.UK icon \ No newline at end of file diff --git a/resources/svg/gradle.svg b/resources/svg/gradle.svg new file mode 100644 index 0000000..15eeba9 --- /dev/null +++ b/resources/svg/gradle.svg @@ -0,0 +1 @@ +Gradle icon \ No newline at end of file diff --git a/resources/svg/grafana.svg b/resources/svg/grafana.svg new file mode 100644 index 0000000..7ef8231 --- /dev/null +++ b/resources/svg/grafana.svg @@ -0,0 +1 @@ +Grafana icon \ No newline at end of file diff --git a/resources/svg/grammarly.svg b/resources/svg/grammarly.svg new file mode 100644 index 0000000..9336016 --- /dev/null +++ b/resources/svg/grammarly.svg @@ -0,0 +1 @@ +Grammarly icon \ No newline at end of file diff --git a/resources/svg/graphcool.svg b/resources/svg/graphcool.svg new file mode 100644 index 0000000..2787d59 --- /dev/null +++ b/resources/svg/graphcool.svg @@ -0,0 +1 @@ +Graphcool icon \ No newline at end of file diff --git a/resources/svg/graphql.svg b/resources/svg/graphql.svg new file mode 100644 index 0000000..5fc66a1 --- /dev/null +++ b/resources/svg/graphql.svg @@ -0,0 +1 @@ +GraphQL icon \ No newline at end of file diff --git a/resources/svg/grav.svg b/resources/svg/grav.svg new file mode 100644 index 0000000..49dcbae --- /dev/null +++ b/resources/svg/grav.svg @@ -0,0 +1 @@ +Grav icon \ No newline at end of file diff --git a/resources/svg/gravatar.svg b/resources/svg/gravatar.svg new file mode 100644 index 0000000..7aba5d7 --- /dev/null +++ b/resources/svg/gravatar.svg @@ -0,0 +1 @@ +Gravatar icon \ No newline at end of file diff --git a/resources/svg/graylog.svg b/resources/svg/graylog.svg new file mode 100644 index 0000000..547933d --- /dev/null +++ b/resources/svg/graylog.svg @@ -0,0 +1 @@ +Graylog icon \ No newline at end of file diff --git a/resources/svg/greensock.svg b/resources/svg/greensock.svg new file mode 100644 index 0000000..44b2936 --- /dev/null +++ b/resources/svg/greensock.svg @@ -0,0 +1 @@ +GreenSock icon \ No newline at end of file diff --git a/resources/svg/gridsome.svg b/resources/svg/gridsome.svg new file mode 100644 index 0000000..1a279f6 --- /dev/null +++ b/resources/svg/gridsome.svg @@ -0,0 +1 @@ +Gridsome icon \ No newline at end of file diff --git a/resources/svg/groupon.svg b/resources/svg/groupon.svg new file mode 100644 index 0000000..4d7c4a8 --- /dev/null +++ b/resources/svg/groupon.svg @@ -0,0 +1 @@ +Groupon icon \ No newline at end of file diff --git a/resources/svg/grubhub.svg b/resources/svg/grubhub.svg new file mode 100644 index 0000000..21e1f22 --- /dev/null +++ b/resources/svg/grubhub.svg @@ -0,0 +1 @@ +Grubhub icon \ No newline at end of file diff --git a/resources/svg/grunt.svg b/resources/svg/grunt.svg new file mode 100644 index 0000000..ec284da --- /dev/null +++ b/resources/svg/grunt.svg @@ -0,0 +1 @@ +Grunt icon diff --git a/resources/svg/guangzhoumetro.svg b/resources/svg/guangzhoumetro.svg new file mode 100644 index 0000000..ebf272c --- /dev/null +++ b/resources/svg/guangzhoumetro.svg @@ -0,0 +1 @@ +Guangzhou Metro icon \ No newline at end of file diff --git a/resources/svg/gulp.svg b/resources/svg/gulp.svg new file mode 100644 index 0000000..4f1e909 --- /dev/null +++ b/resources/svg/gulp.svg @@ -0,0 +1 @@ +gulp icon diff --git a/resources/svg/gumroad.svg b/resources/svg/gumroad.svg new file mode 100644 index 0000000..6ddc1e1 --- /dev/null +++ b/resources/svg/gumroad.svg @@ -0,0 +1 @@ +Gumroad icon \ No newline at end of file diff --git a/resources/svg/gumtree.svg b/resources/svg/gumtree.svg new file mode 100644 index 0000000..d25cfe2 --- /dev/null +++ b/resources/svg/gumtree.svg @@ -0,0 +1 @@ +Gumtree icon \ No newline at end of file diff --git a/resources/svg/gutenberg.svg b/resources/svg/gutenberg.svg new file mode 100644 index 0000000..8c2c726 --- /dev/null +++ b/resources/svg/gutenberg.svg @@ -0,0 +1 @@ +Gutenberg icon \ No newline at end of file diff --git a/resources/svg/habr.svg b/resources/svg/habr.svg new file mode 100644 index 0000000..73ea6b5 --- /dev/null +++ b/resources/svg/habr.svg @@ -0,0 +1 @@ +Habr icon \ No newline at end of file diff --git a/resources/svg/hackaday.svg b/resources/svg/hackaday.svg new file mode 100644 index 0000000..6be7b6b --- /dev/null +++ b/resources/svg/hackaday.svg @@ -0,0 +1 @@ +Hackaday icon \ No newline at end of file diff --git a/resources/svg/hackclub.svg b/resources/svg/hackclub.svg new file mode 100644 index 0000000..0b12c3f --- /dev/null +++ b/resources/svg/hackclub.svg @@ -0,0 +1 @@ +Hack Club icon diff --git a/resources/svg/hackerearth.svg b/resources/svg/hackerearth.svg new file mode 100644 index 0000000..92e669e --- /dev/null +++ b/resources/svg/hackerearth.svg @@ -0,0 +1 @@ +HackerEarth icon \ No newline at end of file diff --git a/resources/svg/hackerone.svg b/resources/svg/hackerone.svg new file mode 100644 index 0000000..8ddd500 --- /dev/null +++ b/resources/svg/hackerone.svg @@ -0,0 +1 @@ +HackerOne icon \ No newline at end of file diff --git a/resources/svg/hackerrank.svg b/resources/svg/hackerrank.svg new file mode 100644 index 0000000..28f2314 --- /dev/null +++ b/resources/svg/hackerrank.svg @@ -0,0 +1 @@ +HackerRank icon \ No newline at end of file diff --git a/resources/svg/hackhands.svg b/resources/svg/hackhands.svg new file mode 100644 index 0000000..bae1cc4 --- /dev/null +++ b/resources/svg/hackhands.svg @@ -0,0 +1 @@ +HackHands icon \ No newline at end of file diff --git a/resources/svg/hackster.svg b/resources/svg/hackster.svg new file mode 100644 index 0000000..66ea6bc --- /dev/null +++ b/resources/svg/hackster.svg @@ -0,0 +1 @@ +Hackster icon \ No newline at end of file diff --git a/resources/svg/hackthebox.svg b/resources/svg/hackthebox.svg new file mode 100644 index 0000000..da4539c --- /dev/null +++ b/resources/svg/hackthebox.svg @@ -0,0 +1 @@ +Hack The Box icon \ No newline at end of file diff --git a/resources/svg/handshake.svg b/resources/svg/handshake.svg new file mode 100644 index 0000000..3c255a2 --- /dev/null +++ b/resources/svg/handshake.svg @@ -0,0 +1 @@ +Handshake icon \ No newline at end of file diff --git a/resources/svg/handshake_protocol.svg b/resources/svg/handshake_protocol.svg new file mode 100644 index 0000000..5de56fe --- /dev/null +++ b/resources/svg/handshake_protocol.svg @@ -0,0 +1 @@ +Handshake icon \ No newline at end of file diff --git a/resources/svg/happycow.svg b/resources/svg/happycow.svg new file mode 100644 index 0000000..3add4b0 --- /dev/null +++ b/resources/svg/happycow.svg @@ -0,0 +1 @@ +HappyCow icon \ No newline at end of file diff --git a/resources/svg/harbor.svg b/resources/svg/harbor.svg new file mode 100644 index 0000000..33782fc --- /dev/null +++ b/resources/svg/harbor.svg @@ -0,0 +1 @@ +Harbor icon \ No newline at end of file diff --git a/resources/svg/hashnode.svg b/resources/svg/hashnode.svg new file mode 100644 index 0000000..d7b9971 --- /dev/null +++ b/resources/svg/hashnode.svg @@ -0,0 +1 @@ +Hashnode icon \ No newline at end of file diff --git a/resources/svg/haskell.svg b/resources/svg/haskell.svg new file mode 100644 index 0000000..eb454b0 --- /dev/null +++ b/resources/svg/haskell.svg @@ -0,0 +1 @@ +Haskell icon \ No newline at end of file diff --git a/resources/svg/hatenabookmark.svg b/resources/svg/hatenabookmark.svg new file mode 100644 index 0000000..2726a1b --- /dev/null +++ b/resources/svg/hatenabookmark.svg @@ -0,0 +1 @@ +Hatena Bookmark icon \ No newline at end of file diff --git a/resources/svg/haveibeenpwned.svg b/resources/svg/haveibeenpwned.svg new file mode 100644 index 0000000..87d0628 --- /dev/null +++ b/resources/svg/haveibeenpwned.svg @@ -0,0 +1 @@ +haveibeenpwned icon \ No newline at end of file diff --git a/resources/svg/haxe.svg b/resources/svg/haxe.svg new file mode 100644 index 0000000..03121ab --- /dev/null +++ b/resources/svg/haxe.svg @@ -0,0 +1 @@ +Haxe icon \ No newline at end of file diff --git a/resources/svg/hbo.svg b/resources/svg/hbo.svg new file mode 100644 index 0000000..3ff729d --- /dev/null +++ b/resources/svg/hbo.svg @@ -0,0 +1 @@ +HBO icon \ No newline at end of file diff --git a/resources/svg/hcl.svg b/resources/svg/hcl.svg new file mode 100644 index 0000000..f60d222 --- /dev/null +++ b/resources/svg/hcl.svg @@ -0,0 +1 @@ +HCL icon \ No newline at end of file diff --git a/resources/svg/headspace.svg b/resources/svg/headspace.svg new file mode 100644 index 0000000..ede8218 --- /dev/null +++ b/resources/svg/headspace.svg @@ -0,0 +1 @@ +Headspace icon \ No newline at end of file diff --git a/resources/svg/hellofresh.svg b/resources/svg/hellofresh.svg new file mode 100644 index 0000000..cb20ac6 --- /dev/null +++ b/resources/svg/hellofresh.svg @@ -0,0 +1 @@ +HelloFresh icon \ No newline at end of file diff --git a/resources/svg/hellyhansen.svg b/resources/svg/hellyhansen.svg new file mode 100644 index 0000000..52ee109 --- /dev/null +++ b/resources/svg/hellyhansen.svg @@ -0,0 +1 @@ +Helly Hansen icon \ No newline at end of file diff --git a/resources/svg/helm.svg b/resources/svg/helm.svg new file mode 100644 index 0000000..d71ad18 --- /dev/null +++ b/resources/svg/helm.svg @@ -0,0 +1 @@ +Helm icon \ No newline at end of file diff --git a/resources/svg/helpdesk.svg b/resources/svg/helpdesk.svg new file mode 100644 index 0000000..0e5599c --- /dev/null +++ b/resources/svg/helpdesk.svg @@ -0,0 +1 @@ +HelpDesk icon \ No newline at end of file diff --git a/resources/svg/here.svg b/resources/svg/here.svg new file mode 100644 index 0000000..aaf0369 --- /dev/null +++ b/resources/svg/here.svg @@ -0,0 +1 @@ +HERE icon \ No newline at end of file diff --git a/resources/svg/heroku.svg b/resources/svg/heroku.svg new file mode 100644 index 0000000..d2d6c91 --- /dev/null +++ b/resources/svg/heroku.svg @@ -0,0 +1 @@ +Heroku icon \ No newline at end of file diff --git a/resources/svg/hexo.svg b/resources/svg/hexo.svg new file mode 100644 index 0000000..188d281 --- /dev/null +++ b/resources/svg/hexo.svg @@ -0,0 +1 @@ +Hexo icon \ No newline at end of file diff --git a/resources/svg/hey.svg b/resources/svg/hey.svg new file mode 100644 index 0000000..380db3d --- /dev/null +++ b/resources/svg/hey.svg @@ -0,0 +1 @@ +HEY icon \ No newline at end of file diff --git a/resources/svg/hibernate.svg b/resources/svg/hibernate.svg new file mode 100644 index 0000000..e484b39 --- /dev/null +++ b/resources/svg/hibernate.svg @@ -0,0 +1 @@ +Hibernate icon \ No newline at end of file diff --git a/resources/svg/highly.svg b/resources/svg/highly.svg new file mode 100644 index 0000000..122f499 --- /dev/null +++ b/resources/svg/highly.svg @@ -0,0 +1 @@ +Highly icon \ No newline at end of file diff --git a/resources/svg/hilton.svg b/resources/svg/hilton.svg new file mode 100644 index 0000000..52c345d --- /dev/null +++ b/resources/svg/hilton.svg @@ -0,0 +1 @@ +Hilton icon \ No newline at end of file diff --git a/resources/svg/hipchat.svg b/resources/svg/hipchat.svg new file mode 100644 index 0000000..fad0e50 --- /dev/null +++ b/resources/svg/hipchat.svg @@ -0,0 +1 @@ +HipChat icon \ No newline at end of file diff --git a/resources/svg/hitachi.svg b/resources/svg/hitachi.svg new file mode 100644 index 0000000..5b03e11 --- /dev/null +++ b/resources/svg/hitachi.svg @@ -0,0 +1 @@ +Hitachi icon \ No newline at end of file diff --git a/resources/svg/hive.svg b/resources/svg/hive.svg new file mode 100644 index 0000000..1c095d9 --- /dev/null +++ b/resources/svg/hive.svg @@ -0,0 +1 @@ +Hive icon \ No newline at end of file diff --git a/resources/svg/hive_blockchain.svg b/resources/svg/hive_blockchain.svg new file mode 100644 index 0000000..059eff7 --- /dev/null +++ b/resources/svg/hive_blockchain.svg @@ -0,0 +1 @@ +Hive icon diff --git a/resources/svg/hockeyapp.svg b/resources/svg/hockeyapp.svg new file mode 100644 index 0000000..fbc0db4 --- /dev/null +++ b/resources/svg/hockeyapp.svg @@ -0,0 +1 @@ +HockeyApp icon \ No newline at end of file diff --git a/resources/svg/homeadvisor.svg b/resources/svg/homeadvisor.svg new file mode 100644 index 0000000..1e233cc --- /dev/null +++ b/resources/svg/homeadvisor.svg @@ -0,0 +1 @@ +HomeAdvisor icon \ No newline at end of file diff --git a/resources/svg/homeassistant.svg b/resources/svg/homeassistant.svg new file mode 100644 index 0000000..53436aa --- /dev/null +++ b/resources/svg/homeassistant.svg @@ -0,0 +1 @@ +Home Assistant icon diff --git a/resources/svg/homeassistantcommunitystore.svg b/resources/svg/homeassistantcommunitystore.svg new file mode 100644 index 0000000..fd695d0 --- /dev/null +++ b/resources/svg/homeassistantcommunitystore.svg @@ -0,0 +1 @@ +Home Assistant Community Store icon \ No newline at end of file diff --git a/resources/svg/homebrew.svg b/resources/svg/homebrew.svg new file mode 100644 index 0000000..c82a4b1 --- /dev/null +++ b/resources/svg/homebrew.svg @@ -0,0 +1 @@ +Homebrew icon \ No newline at end of file diff --git a/resources/svg/homebridge.svg b/resources/svg/homebridge.svg new file mode 100644 index 0000000..3c38982 --- /dev/null +++ b/resources/svg/homebridge.svg @@ -0,0 +1 @@ +Homebridge icon \ No newline at end of file diff --git a/resources/svg/homify.svg b/resources/svg/homify.svg new file mode 100644 index 0000000..53b3424 --- /dev/null +++ b/resources/svg/homify.svg @@ -0,0 +1 @@ +homify icon \ No newline at end of file diff --git a/resources/svg/honda.svg b/resources/svg/honda.svg new file mode 100644 index 0000000..a3ad5ae --- /dev/null +++ b/resources/svg/honda.svg @@ -0,0 +1 @@ +Honda icon \ No newline at end of file diff --git a/resources/svg/hootsuite.svg b/resources/svg/hootsuite.svg new file mode 100644 index 0000000..923987d --- /dev/null +++ b/resources/svg/hootsuite.svg @@ -0,0 +1 @@ +Hootsuite icon \ No newline at end of file diff --git a/resources/svg/hoppscotch.svg b/resources/svg/hoppscotch.svg new file mode 100644 index 0000000..63adae4 --- /dev/null +++ b/resources/svg/hoppscotch.svg @@ -0,0 +1 @@ +Hoppscotch icon \ No newline at end of file diff --git a/resources/svg/hotels-dot-com.svg b/resources/svg/hotels-dot-com.svg new file mode 100644 index 0000000..941d656 --- /dev/null +++ b/resources/svg/hotels-dot-com.svg @@ -0,0 +1 @@ +Hotels.com icon \ No newline at end of file diff --git a/resources/svg/hotjar.svg b/resources/svg/hotjar.svg new file mode 100644 index 0000000..759170b --- /dev/null +++ b/resources/svg/hotjar.svg @@ -0,0 +1 @@ +Hotjar icon \ No newline at end of file diff --git a/resources/svg/houdini.svg b/resources/svg/houdini.svg new file mode 100644 index 0000000..d2cdc30 --- /dev/null +++ b/resources/svg/houdini.svg @@ -0,0 +1 @@ +Houdini icon \ No newline at end of file diff --git a/resources/svg/houzz.svg b/resources/svg/houzz.svg new file mode 100644 index 0000000..5bcf2c1 --- /dev/null +++ b/resources/svg/houzz.svg @@ -0,0 +1 @@ +Houzz icon diff --git a/resources/svg/hp.svg b/resources/svg/hp.svg new file mode 100644 index 0000000..ddc3fe8 --- /dev/null +++ b/resources/svg/hp.svg @@ -0,0 +1 @@ +HP icon \ No newline at end of file diff --git a/resources/svg/html5.svg b/resources/svg/html5.svg new file mode 100644 index 0000000..f00c51f --- /dev/null +++ b/resources/svg/html5.svg @@ -0,0 +1 @@ +HTML5 icon \ No newline at end of file diff --git a/resources/svg/htmlacademy.svg b/resources/svg/htmlacademy.svg new file mode 100644 index 0000000..7ca8c2f --- /dev/null +++ b/resources/svg/htmlacademy.svg @@ -0,0 +1 @@ +HTML Academy icon \ No newline at end of file diff --git a/resources/svg/huawei.svg b/resources/svg/huawei.svg new file mode 100644 index 0000000..1091060 --- /dev/null +++ b/resources/svg/huawei.svg @@ -0,0 +1 @@ +Huawei icon \ No newline at end of file diff --git a/resources/svg/hubspot.svg b/resources/svg/hubspot.svg new file mode 100644 index 0000000..60105e0 --- /dev/null +++ b/resources/svg/hubspot.svg @@ -0,0 +1 @@ +HubSpot icon \ No newline at end of file diff --git a/resources/svg/hugo.svg b/resources/svg/hugo.svg new file mode 100644 index 0000000..4d251ad --- /dev/null +++ b/resources/svg/hugo.svg @@ -0,0 +1 @@ +Hugo icon diff --git a/resources/svg/hulu.svg b/resources/svg/hulu.svg new file mode 100644 index 0000000..dacc3b2 --- /dev/null +++ b/resources/svg/hulu.svg @@ -0,0 +1 @@ +Hulu icon \ No newline at end of file diff --git a/resources/svg/humblebundle.svg b/resources/svg/humblebundle.svg new file mode 100644 index 0000000..7719fac --- /dev/null +++ b/resources/svg/humblebundle.svg @@ -0,0 +1 @@ +Humble Bundle icon \ No newline at end of file diff --git a/resources/svg/hungryjacks.svg b/resources/svg/hungryjacks.svg new file mode 100644 index 0000000..47ef514 --- /dev/null +++ b/resources/svg/hungryjacks.svg @@ -0,0 +1 @@ +Hungry Jack's icon \ No newline at end of file diff --git a/resources/svg/hurriyetemlak.svg b/resources/svg/hurriyetemlak.svg new file mode 100644 index 0000000..3a2e053 --- /dev/null +++ b/resources/svg/hurriyetemlak.svg @@ -0,0 +1 @@ +Hurriyetemlak icon \ No newline at end of file diff --git a/resources/svg/husqvarna.svg b/resources/svg/husqvarna.svg new file mode 100644 index 0000000..5bdfa4e --- /dev/null +++ b/resources/svg/husqvarna.svg @@ -0,0 +1 @@ +Husqvarna icon \ No newline at end of file diff --git a/resources/svg/hyper.svg b/resources/svg/hyper.svg new file mode 100644 index 0000000..2b044e6 --- /dev/null +++ b/resources/svg/hyper.svg @@ -0,0 +1 @@ +Hyper icon \ No newline at end of file diff --git a/resources/svg/hyperledger.svg b/resources/svg/hyperledger.svg new file mode 100644 index 0000000..0f13ba7 --- /dev/null +++ b/resources/svg/hyperledger.svg @@ -0,0 +1 @@ +Hyperledger icon \ No newline at end of file diff --git a/resources/svg/hypothesis.svg b/resources/svg/hypothesis.svg new file mode 100644 index 0000000..720fc3d --- /dev/null +++ b/resources/svg/hypothesis.svg @@ -0,0 +1 @@ +Hypothesis icon \ No newline at end of file diff --git a/resources/svg/hyundai.svg b/resources/svg/hyundai.svg new file mode 100644 index 0000000..12d903b --- /dev/null +++ b/resources/svg/hyundai.svg @@ -0,0 +1 @@ +Hyundai icon \ No newline at end of file diff --git a/resources/svg/iata.svg b/resources/svg/iata.svg new file mode 100644 index 0000000..3a6143c --- /dev/null +++ b/resources/svg/iata.svg @@ -0,0 +1 @@ +Iata icon \ No newline at end of file diff --git a/resources/svg/ibeacon.svg b/resources/svg/ibeacon.svg new file mode 100644 index 0000000..ce1aab7 --- /dev/null +++ b/resources/svg/ibeacon.svg @@ -0,0 +1 @@ +iBeacon icon \ No newline at end of file diff --git a/resources/svg/ibm.svg b/resources/svg/ibm.svg new file mode 100644 index 0000000..ad9f8f2 --- /dev/null +++ b/resources/svg/ibm.svg @@ -0,0 +1 @@ +IBM icon diff --git a/resources/svg/ibmwatson.svg b/resources/svg/ibmwatson.svg new file mode 100644 index 0000000..6d8bf50 --- /dev/null +++ b/resources/svg/ibmwatson.svg @@ -0,0 +1 @@ +IBM Watson icon \ No newline at end of file diff --git a/resources/svg/icinga.svg b/resources/svg/icinga.svg new file mode 100644 index 0000000..7330b42 --- /dev/null +++ b/resources/svg/icinga.svg @@ -0,0 +1 @@ +Icinga icon diff --git a/resources/svg/icloud.svg b/resources/svg/icloud.svg new file mode 100644 index 0000000..7543d08 --- /dev/null +++ b/resources/svg/icloud.svg @@ -0,0 +1 @@ +iCloud icon \ No newline at end of file diff --git a/resources/svg/icomoon.svg b/resources/svg/icomoon.svg new file mode 100644 index 0000000..0c4ade5 --- /dev/null +++ b/resources/svg/icomoon.svg @@ -0,0 +1 @@ +IcoMoon icon diff --git a/resources/svg/icon.svg b/resources/svg/icon.svg new file mode 100644 index 0000000..e7005e4 --- /dev/null +++ b/resources/svg/icon.svg @@ -0,0 +1 @@ +ICON icon diff --git a/resources/svg/iconfinder.svg b/resources/svg/iconfinder.svg new file mode 100644 index 0000000..cd2327b --- /dev/null +++ b/resources/svg/iconfinder.svg @@ -0,0 +1 @@ +Iconfinder icon \ No newline at end of file diff --git a/resources/svg/iconify.svg b/resources/svg/iconify.svg new file mode 100644 index 0000000..ecf751d --- /dev/null +++ b/resources/svg/iconify.svg @@ -0,0 +1 @@ +Iconify icon \ No newline at end of file diff --git a/resources/svg/iconjar.svg b/resources/svg/iconjar.svg new file mode 100644 index 0000000..4e7fd78 --- /dev/null +++ b/resources/svg/iconjar.svg @@ -0,0 +1 @@ +IconJar icon diff --git a/resources/svg/icq.svg b/resources/svg/icq.svg new file mode 100644 index 0000000..85d0f1f --- /dev/null +++ b/resources/svg/icq.svg @@ -0,0 +1 @@ +ICQ icon \ No newline at end of file diff --git a/resources/svg/ideal.svg b/resources/svg/ideal.svg new file mode 100644 index 0000000..94d1bb2 --- /dev/null +++ b/resources/svg/ideal.svg @@ -0,0 +1 @@ +iDEAL icon \ No newline at end of file diff --git a/resources/svg/ieee.svg b/resources/svg/ieee.svg new file mode 100644 index 0000000..ef3cf7d --- /dev/null +++ b/resources/svg/ieee.svg @@ -0,0 +1 @@ +IEEE icon \ No newline at end of file diff --git a/resources/svg/ifixit.svg b/resources/svg/ifixit.svg new file mode 100644 index 0000000..c866951 --- /dev/null +++ b/resources/svg/ifixit.svg @@ -0,0 +1 @@ +iFixit icon \ No newline at end of file diff --git a/resources/svg/ifood.svg b/resources/svg/ifood.svg new file mode 100644 index 0000000..78aa809 --- /dev/null +++ b/resources/svg/ifood.svg @@ -0,0 +1 @@ +iFood icon diff --git a/resources/svg/ifttt.svg b/resources/svg/ifttt.svg new file mode 100644 index 0000000..30ad197 --- /dev/null +++ b/resources/svg/ifttt.svg @@ -0,0 +1 @@ +IFTTT icon \ No newline at end of file diff --git a/resources/svg/iheartradio.svg b/resources/svg/iheartradio.svg new file mode 100644 index 0000000..1912dec --- /dev/null +++ b/resources/svg/iheartradio.svg @@ -0,0 +1 @@ +iHeartRadio icon diff --git a/resources/svg/ikea.svg b/resources/svg/ikea.svg new file mode 100644 index 0000000..4a06b1d --- /dev/null +++ b/resources/svg/ikea.svg @@ -0,0 +1 @@ +IKEA icon \ No newline at end of file diff --git a/resources/svg/imdb.svg b/resources/svg/imdb.svg new file mode 100644 index 0000000..e5fec13 --- /dev/null +++ b/resources/svg/imdb.svg @@ -0,0 +1 @@ +IMDb icon \ No newline at end of file diff --git a/resources/svg/imgur.svg b/resources/svg/imgur.svg new file mode 100644 index 0000000..012cc15 --- /dev/null +++ b/resources/svg/imgur.svg @@ -0,0 +1 @@ +Imgur icon \ No newline at end of file diff --git a/resources/svg/indeed.svg b/resources/svg/indeed.svg new file mode 100644 index 0000000..7149c69 --- /dev/null +++ b/resources/svg/indeed.svg @@ -0,0 +1 @@ +Indeed icon \ No newline at end of file diff --git a/resources/svg/infiniti.svg b/resources/svg/infiniti.svg new file mode 100644 index 0000000..2059961 --- /dev/null +++ b/resources/svg/infiniti.svg @@ -0,0 +1 @@ +Infiniti icon \ No newline at end of file diff --git a/resources/svg/influxdb.svg b/resources/svg/influxdb.svg new file mode 100644 index 0000000..a676931 --- /dev/null +++ b/resources/svg/influxdb.svg @@ -0,0 +1 @@ +InfluxDB icon \ No newline at end of file diff --git a/resources/svg/informatica.svg b/resources/svg/informatica.svg new file mode 100644 index 0000000..db0f3be --- /dev/null +++ b/resources/svg/informatica.svg @@ -0,0 +1 @@ +Informatica icon \ No newline at end of file diff --git a/resources/svg/infosys.svg b/resources/svg/infosys.svg new file mode 100644 index 0000000..54e3ebd --- /dev/null +++ b/resources/svg/infosys.svg @@ -0,0 +1 @@ +Infosys icon diff --git a/resources/svg/ingress.svg b/resources/svg/ingress.svg new file mode 100644 index 0000000..de792ba --- /dev/null +++ b/resources/svg/ingress.svg @@ -0,0 +1 @@ +Ingress icon \ No newline at end of file diff --git a/resources/svg/inkscape.svg b/resources/svg/inkscape.svg new file mode 100644 index 0000000..f7cad0c --- /dev/null +++ b/resources/svg/inkscape.svg @@ -0,0 +1 @@ +Inkscape icon \ No newline at end of file diff --git a/resources/svg/insomnia.svg b/resources/svg/insomnia.svg new file mode 100644 index 0000000..c563796 --- /dev/null +++ b/resources/svg/insomnia.svg @@ -0,0 +1 @@ +Insomnia icon \ No newline at end of file diff --git a/resources/svg/instacart.svg b/resources/svg/instacart.svg new file mode 100644 index 0000000..df4ba5f --- /dev/null +++ b/resources/svg/instacart.svg @@ -0,0 +1 @@ +Instacart icon \ No newline at end of file diff --git a/resources/svg/instagram.svg b/resources/svg/instagram.svg new file mode 100644 index 0000000..d32a2f8 --- /dev/null +++ b/resources/svg/instagram.svg @@ -0,0 +1 @@ +Instagram icon \ No newline at end of file diff --git a/resources/svg/instapaper.svg b/resources/svg/instapaper.svg new file mode 100644 index 0000000..1a15006 --- /dev/null +++ b/resources/svg/instapaper.svg @@ -0,0 +1 @@ +Instapaper icon \ No newline at end of file diff --git a/resources/svg/instructables.svg b/resources/svg/instructables.svg new file mode 100644 index 0000000..1965af3 --- /dev/null +++ b/resources/svg/instructables.svg @@ -0,0 +1 @@ +Instructables icon \ No newline at end of file diff --git a/resources/svg/integromat.svg b/resources/svg/integromat.svg new file mode 100644 index 0000000..becb264 --- /dev/null +++ b/resources/svg/integromat.svg @@ -0,0 +1 @@ +Integromat icon \ No newline at end of file diff --git a/resources/svg/intel.svg b/resources/svg/intel.svg new file mode 100644 index 0000000..5f141e3 --- /dev/null +++ b/resources/svg/intel.svg @@ -0,0 +1 @@ +Intel icon \ No newline at end of file diff --git a/resources/svg/intellijidea.svg b/resources/svg/intellijidea.svg new file mode 100644 index 0000000..0bdf1f4 --- /dev/null +++ b/resources/svg/intellijidea.svg @@ -0,0 +1 @@ +IntelliJ IDEA icon \ No newline at end of file diff --git a/resources/svg/intercom.svg b/resources/svg/intercom.svg new file mode 100644 index 0000000..dc252ae --- /dev/null +++ b/resources/svg/intercom.svg @@ -0,0 +1 @@ +Intercom icon \ No newline at end of file diff --git a/resources/svg/internetarchive.svg b/resources/svg/internetarchive.svg new file mode 100644 index 0000000..1b07a10 --- /dev/null +++ b/resources/svg/internetarchive.svg @@ -0,0 +1 @@ +Internet Archive icon \ No newline at end of file diff --git a/resources/svg/internetexplorer.svg b/resources/svg/internetexplorer.svg new file mode 100644 index 0000000..0347218 --- /dev/null +++ b/resources/svg/internetexplorer.svg @@ -0,0 +1 @@ +Internet Explorer icon \ No newline at end of file diff --git a/resources/svg/invision.svg b/resources/svg/invision.svg new file mode 100644 index 0000000..b41ac63 --- /dev/null +++ b/resources/svg/invision.svg @@ -0,0 +1 @@ +InVision icon \ No newline at end of file diff --git a/resources/svg/invoiceninja.svg b/resources/svg/invoiceninja.svg new file mode 100644 index 0000000..4e65220 --- /dev/null +++ b/resources/svg/invoiceninja.svg @@ -0,0 +1 @@ +Invoice Ninja icon \ No newline at end of file diff --git a/resources/svg/iobroker.svg b/resources/svg/iobroker.svg new file mode 100644 index 0000000..6e72092 --- /dev/null +++ b/resources/svg/iobroker.svg @@ -0,0 +1 @@ +ioBroker icon diff --git a/resources/svg/ionic.svg b/resources/svg/ionic.svg new file mode 100644 index 0000000..f28da80 --- /dev/null +++ b/resources/svg/ionic.svg @@ -0,0 +1 @@ +Ionic icon \ No newline at end of file diff --git a/resources/svg/ios.svg b/resources/svg/ios.svg new file mode 100644 index 0000000..92e7e36 --- /dev/null +++ b/resources/svg/ios.svg @@ -0,0 +1 @@ +iOS icon diff --git a/resources/svg/ipfs.svg b/resources/svg/ipfs.svg new file mode 100644 index 0000000..c3b3fac --- /dev/null +++ b/resources/svg/ipfs.svg @@ -0,0 +1 @@ +IPFS icon \ No newline at end of file diff --git a/resources/svg/issuu.svg b/resources/svg/issuu.svg new file mode 100644 index 0000000..e20dec2 --- /dev/null +++ b/resources/svg/issuu.svg @@ -0,0 +1 @@ +Issuu icon \ No newline at end of file diff --git a/resources/svg/itch-dot-io.svg b/resources/svg/itch-dot-io.svg new file mode 100644 index 0000000..dfe1445 --- /dev/null +++ b/resources/svg/itch-dot-io.svg @@ -0,0 +1 @@ +Itch.io icon \ No newline at end of file diff --git a/resources/svg/itunes.svg b/resources/svg/itunes.svg new file mode 100644 index 0000000..b8d87db --- /dev/null +++ b/resources/svg/itunes.svg @@ -0,0 +1 @@ +iTunes icon \ No newline at end of file diff --git a/resources/svg/iveco.svg b/resources/svg/iveco.svg new file mode 100644 index 0000000..743e487 --- /dev/null +++ b/resources/svg/iveco.svg @@ -0,0 +1 @@ +IVECO icon \ No newline at end of file diff --git a/resources/svg/jabber.svg b/resources/svg/jabber.svg new file mode 100644 index 0000000..a55d4d5 --- /dev/null +++ b/resources/svg/jabber.svg @@ -0,0 +1 @@ +Jabber icon \ No newline at end of file diff --git a/resources/svg/jaguar.svg b/resources/svg/jaguar.svg new file mode 100644 index 0000000..0fcdc5a --- /dev/null +++ b/resources/svg/jaguar.svg @@ -0,0 +1 @@ +Jaguar icon \ No newline at end of file diff --git a/resources/svg/jamboard.svg b/resources/svg/jamboard.svg new file mode 100644 index 0000000..81df843 --- /dev/null +++ b/resources/svg/jamboard.svg @@ -0,0 +1 @@ +Jamboard icon \ No newline at end of file diff --git a/resources/svg/jameson.svg b/resources/svg/jameson.svg new file mode 100644 index 0000000..0103e66 --- /dev/null +++ b/resources/svg/jameson.svg @@ -0,0 +1 @@ +Jameson icon \ No newline at end of file diff --git a/resources/svg/jamstack.svg b/resources/svg/jamstack.svg new file mode 100644 index 0000000..3f97214 --- /dev/null +++ b/resources/svg/jamstack.svg @@ -0,0 +1 @@ +Jamstack icon \ No newline at end of file diff --git a/resources/svg/jasmine.svg b/resources/svg/jasmine.svg new file mode 100644 index 0000000..b75211c --- /dev/null +++ b/resources/svg/jasmine.svg @@ -0,0 +1 @@ +Jasmine icon \ No newline at end of file diff --git a/resources/svg/java.svg b/resources/svg/java.svg new file mode 100644 index 0000000..a04fc16 --- /dev/null +++ b/resources/svg/java.svg @@ -0,0 +1 @@ +Java icon \ No newline at end of file diff --git a/resources/svg/javascript.svg b/resources/svg/javascript.svg new file mode 100644 index 0000000..aef92b5 --- /dev/null +++ b/resources/svg/javascript.svg @@ -0,0 +1 @@ +JavaScript icon \ No newline at end of file diff --git a/resources/svg/jbl.svg b/resources/svg/jbl.svg new file mode 100644 index 0000000..021c808 --- /dev/null +++ b/resources/svg/jbl.svg @@ -0,0 +1 @@ +JBL icon \ No newline at end of file diff --git a/resources/svg/jcb.svg b/resources/svg/jcb.svg new file mode 100644 index 0000000..c94dec3 --- /dev/null +++ b/resources/svg/jcb.svg @@ -0,0 +1 @@ +JCB icon diff --git a/resources/svg/jeep.svg b/resources/svg/jeep.svg new file mode 100644 index 0000000..cfa83ca --- /dev/null +++ b/resources/svg/jeep.svg @@ -0,0 +1 @@ +Jeep icon \ No newline at end of file diff --git a/resources/svg/jekyll.svg b/resources/svg/jekyll.svg new file mode 100644 index 0000000..f810f06 --- /dev/null +++ b/resources/svg/jekyll.svg @@ -0,0 +1 @@ +Jekyll icon \ No newline at end of file diff --git a/resources/svg/jellyfin.svg b/resources/svg/jellyfin.svg new file mode 100644 index 0000000..7ae0e24 --- /dev/null +++ b/resources/svg/jellyfin.svg @@ -0,0 +1 @@ +Jellyfin icon \ No newline at end of file diff --git a/resources/svg/jenkins.svg b/resources/svg/jenkins.svg new file mode 100644 index 0000000..162c8fb --- /dev/null +++ b/resources/svg/jenkins.svg @@ -0,0 +1 @@ +Jenkins icon \ No newline at end of file diff --git a/resources/svg/jenkinsx.svg b/resources/svg/jenkinsx.svg new file mode 100644 index 0000000..ea33a1f --- /dev/null +++ b/resources/svg/jenkinsx.svg @@ -0,0 +1 @@ +Jenkins X icon \ No newline at end of file diff --git a/resources/svg/jest.svg b/resources/svg/jest.svg new file mode 100644 index 0000000..54f45f9 --- /dev/null +++ b/resources/svg/jest.svg @@ -0,0 +1 @@ +Jest icon \ No newline at end of file diff --git a/resources/svg/jet.svg b/resources/svg/jet.svg new file mode 100644 index 0000000..bcbce18 --- /dev/null +++ b/resources/svg/jet.svg @@ -0,0 +1 @@ +JET icon \ No newline at end of file diff --git a/resources/svg/jetbrains.svg b/resources/svg/jetbrains.svg new file mode 100644 index 0000000..c63a2b3 --- /dev/null +++ b/resources/svg/jetbrains.svg @@ -0,0 +1 @@ +JetBrains icon \ No newline at end of file diff --git a/resources/svg/jfrog.svg b/resources/svg/jfrog.svg new file mode 100644 index 0000000..4614913 --- /dev/null +++ b/resources/svg/jfrog.svg @@ -0,0 +1 @@ +JFrog icon \ No newline at end of file diff --git a/resources/svg/jfrogbintray.svg b/resources/svg/jfrogbintray.svg new file mode 100644 index 0000000..b8d0108 --- /dev/null +++ b/resources/svg/jfrogbintray.svg @@ -0,0 +1 @@ +JFrog Bintray icon \ No newline at end of file diff --git a/resources/svg/jinja.svg b/resources/svg/jinja.svg new file mode 100644 index 0000000..6370123 --- /dev/null +++ b/resources/svg/jinja.svg @@ -0,0 +1 @@ +Jinja icon \ No newline at end of file diff --git a/resources/svg/jira.svg b/resources/svg/jira.svg new file mode 100644 index 0000000..ee7d19f --- /dev/null +++ b/resources/svg/jira.svg @@ -0,0 +1 @@ +Jira icon \ No newline at end of file diff --git a/resources/svg/jirasoftware.svg b/resources/svg/jirasoftware.svg new file mode 100644 index 0000000..5b27a11 --- /dev/null +++ b/resources/svg/jirasoftware.svg @@ -0,0 +1 @@ +Jira Software icon \ No newline at end of file diff --git a/resources/svg/jitsi.svg b/resources/svg/jitsi.svg new file mode 100644 index 0000000..76532d7 --- /dev/null +++ b/resources/svg/jitsi.svg @@ -0,0 +1 @@ +Jitsi icon \ No newline at end of file diff --git a/resources/svg/johndeere.svg b/resources/svg/johndeere.svg new file mode 100644 index 0000000..cb9ffd2 --- /dev/null +++ b/resources/svg/johndeere.svg @@ -0,0 +1 @@ +John Deere icon \ No newline at end of file diff --git a/resources/svg/joomla.svg b/resources/svg/joomla.svg new file mode 100644 index 0000000..4084137 --- /dev/null +++ b/resources/svg/joomla.svg @@ -0,0 +1 @@ +Joomla icon \ No newline at end of file diff --git a/resources/svg/jpeg.svg b/resources/svg/jpeg.svg new file mode 100644 index 0000000..1b01efe --- /dev/null +++ b/resources/svg/jpeg.svg @@ -0,0 +1 @@ +JPEG icon \ No newline at end of file diff --git a/resources/svg/jquery.svg b/resources/svg/jquery.svg new file mode 100644 index 0000000..23d28dc --- /dev/null +++ b/resources/svg/jquery.svg @@ -0,0 +1 @@ +jQuery icon \ No newline at end of file diff --git a/resources/svg/jrgroup.svg b/resources/svg/jrgroup.svg new file mode 100644 index 0000000..8f74716 --- /dev/null +++ b/resources/svg/jrgroup.svg @@ -0,0 +1 @@ +JR Group icon \ No newline at end of file diff --git a/resources/svg/jsdelivr.svg b/resources/svg/jsdelivr.svg new file mode 100644 index 0000000..e22967d --- /dev/null +++ b/resources/svg/jsdelivr.svg @@ -0,0 +1 @@ +jsDelivr icon \ No newline at end of file diff --git a/resources/svg/jsfiddle.svg b/resources/svg/jsfiddle.svg new file mode 100644 index 0000000..b963e83 --- /dev/null +++ b/resources/svg/jsfiddle.svg @@ -0,0 +1 @@ +JSFiddle icon diff --git a/resources/svg/json.svg b/resources/svg/json.svg new file mode 100644 index 0000000..457bee1 --- /dev/null +++ b/resources/svg/json.svg @@ -0,0 +1 @@ +JSON icon \ No newline at end of file diff --git a/resources/svg/jsonwebtokens.svg b/resources/svg/jsonwebtokens.svg new file mode 100644 index 0000000..509cdfd --- /dev/null +++ b/resources/svg/jsonwebtokens.svg @@ -0,0 +1 @@ +JSON Web Tokens icon \ No newline at end of file diff --git a/resources/svg/jss.svg b/resources/svg/jss.svg new file mode 100644 index 0000000..2d170ae --- /dev/null +++ b/resources/svg/jss.svg @@ -0,0 +1 @@ +JSS icon \ No newline at end of file diff --git a/resources/svg/julia.svg b/resources/svg/julia.svg new file mode 100644 index 0000000..4d2be70 --- /dev/null +++ b/resources/svg/julia.svg @@ -0,0 +1 @@ +Julia icon diff --git a/resources/svg/junipernetworks.svg b/resources/svg/junipernetworks.svg new file mode 100644 index 0000000..2a3d8c9 --- /dev/null +++ b/resources/svg/junipernetworks.svg @@ -0,0 +1 @@ +Juniper Networks icon \ No newline at end of file diff --git a/resources/svg/jupyter.svg b/resources/svg/jupyter.svg new file mode 100644 index 0000000..97c4ea8 --- /dev/null +++ b/resources/svg/jupyter.svg @@ -0,0 +1 @@ +Jupyter icon \ No newline at end of file diff --git a/resources/svg/justeat.svg b/resources/svg/justeat.svg new file mode 100644 index 0000000..b92e3c3 --- /dev/null +++ b/resources/svg/justeat.svg @@ -0,0 +1 @@ +Just Eat icon \ No newline at end of file diff --git a/resources/svg/justgiving.svg b/resources/svg/justgiving.svg new file mode 100644 index 0000000..f16a876 --- /dev/null +++ b/resources/svg/justgiving.svg @@ -0,0 +1 @@ +JustGiving icon \ No newline at end of file diff --git a/resources/svg/kaggle.svg b/resources/svg/kaggle.svg new file mode 100644 index 0000000..0b77a91 --- /dev/null +++ b/resources/svg/kaggle.svg @@ -0,0 +1 @@ +Kaggle icon \ No newline at end of file diff --git a/resources/svg/kahoot.svg b/resources/svg/kahoot.svg new file mode 100644 index 0000000..c1432e1 --- /dev/null +++ b/resources/svg/kahoot.svg @@ -0,0 +1 @@ +Kahoot! icon \ No newline at end of file diff --git a/resources/svg/kaios.svg b/resources/svg/kaios.svg new file mode 100644 index 0000000..82ec67b --- /dev/null +++ b/resources/svg/kaios.svg @@ -0,0 +1 @@ +KaiOS icon \ No newline at end of file diff --git a/resources/svg/kakao.svg b/resources/svg/kakao.svg new file mode 100644 index 0000000..af644ac --- /dev/null +++ b/resources/svg/kakao.svg @@ -0,0 +1 @@ +Kakao icon \ No newline at end of file diff --git a/resources/svg/kakaotalk.svg b/resources/svg/kakaotalk.svg new file mode 100644 index 0000000..e1d624c --- /dev/null +++ b/resources/svg/kakaotalk.svg @@ -0,0 +1 @@ +KakaoTalk icon \ No newline at end of file diff --git a/resources/svg/kalilinux.svg b/resources/svg/kalilinux.svg new file mode 100644 index 0000000..3047f21 --- /dev/null +++ b/resources/svg/kalilinux.svg @@ -0,0 +1 @@ +Kali Linux icon \ No newline at end of file diff --git a/resources/svg/karlsruherverkehrsverbund.svg b/resources/svg/karlsruherverkehrsverbund.svg new file mode 100644 index 0000000..eb09667 --- /dev/null +++ b/resources/svg/karlsruherverkehrsverbund.svg @@ -0,0 +1 @@ +Karlsruher Verkehrsverbund icon \ No newline at end of file diff --git a/resources/svg/kasasmart.svg b/resources/svg/kasasmart.svg new file mode 100644 index 0000000..9db5c45 --- /dev/null +++ b/resources/svg/kasasmart.svg @@ -0,0 +1 @@ +Kasa Smart icon \ No newline at end of file diff --git a/resources/svg/kaspersky.svg b/resources/svg/kaspersky.svg new file mode 100644 index 0000000..378e5c3 --- /dev/null +++ b/resources/svg/kaspersky.svg @@ -0,0 +1 @@ +Kaspersky icon \ No newline at end of file diff --git a/resources/svg/katacoda.svg b/resources/svg/katacoda.svg new file mode 100644 index 0000000..2a98c9a --- /dev/null +++ b/resources/svg/katacoda.svg @@ -0,0 +1 @@ +Katacoda icon diff --git a/resources/svg/katana.svg b/resources/svg/katana.svg new file mode 100644 index 0000000..039561a --- /dev/null +++ b/resources/svg/katana.svg @@ -0,0 +1 @@ +Katana icon \ No newline at end of file diff --git a/resources/svg/kde.svg b/resources/svg/kde.svg new file mode 100644 index 0000000..9f54004 --- /dev/null +++ b/resources/svg/kde.svg @@ -0,0 +1 @@ +KDE icon \ No newline at end of file diff --git a/resources/svg/keepassxc.svg b/resources/svg/keepassxc.svg new file mode 100644 index 0000000..369ca61 --- /dev/null +++ b/resources/svg/keepassxc.svg @@ -0,0 +1 @@ +KeePassXC icon \ No newline at end of file diff --git a/resources/svg/kentico.svg b/resources/svg/kentico.svg new file mode 100644 index 0000000..b785ea5 --- /dev/null +++ b/resources/svg/kentico.svg @@ -0,0 +1 @@ +Kentico icon \ No newline at end of file diff --git a/resources/svg/keras.svg b/resources/svg/keras.svg new file mode 100644 index 0000000..9d55f7e --- /dev/null +++ b/resources/svg/keras.svg @@ -0,0 +1 @@ +Keras icon diff --git a/resources/svg/keybase.svg b/resources/svg/keybase.svg new file mode 100644 index 0000000..8fa5a90 --- /dev/null +++ b/resources/svg/keybase.svg @@ -0,0 +1 @@ +Keybase icon \ No newline at end of file diff --git a/resources/svg/keycdn.svg b/resources/svg/keycdn.svg new file mode 100644 index 0000000..5bc3ad3 --- /dev/null +++ b/resources/svg/keycdn.svg @@ -0,0 +1 @@ +KeyCDN icon \ No newline at end of file diff --git a/resources/svg/khanacademy.svg b/resources/svg/khanacademy.svg new file mode 100644 index 0000000..fc72a6e --- /dev/null +++ b/resources/svg/khanacademy.svg @@ -0,0 +1 @@ +Khan Academy icon \ No newline at end of file diff --git a/resources/svg/khronosgroup.svg b/resources/svg/khronosgroup.svg new file mode 100644 index 0000000..f850ece --- /dev/null +++ b/resources/svg/khronosgroup.svg @@ -0,0 +1 @@ +Khronos Group icon \ No newline at end of file diff --git a/resources/svg/kia.svg b/resources/svg/kia.svg new file mode 100644 index 0000000..a3f3f9d --- /dev/null +++ b/resources/svg/kia.svg @@ -0,0 +1 @@ +Kia icon \ No newline at end of file diff --git a/resources/svg/kibana.svg b/resources/svg/kibana.svg new file mode 100644 index 0000000..f626eb1 --- /dev/null +++ b/resources/svg/kibana.svg @@ -0,0 +1 @@ +Kibana icon \ No newline at end of file diff --git a/resources/svg/kickstarter.svg b/resources/svg/kickstarter.svg new file mode 100644 index 0000000..e989645 --- /dev/null +++ b/resources/svg/kickstarter.svg @@ -0,0 +1 @@ +Kickstarter icon \ No newline at end of file diff --git a/resources/svg/kik.svg b/resources/svg/kik.svg new file mode 100644 index 0000000..a886943 --- /dev/null +++ b/resources/svg/kik.svg @@ -0,0 +1 @@ +Kik icon \ No newline at end of file diff --git a/resources/svg/kirby.svg b/resources/svg/kirby.svg new file mode 100644 index 0000000..74f092a --- /dev/null +++ b/resources/svg/kirby.svg @@ -0,0 +1 @@ +Kirby icon \ No newline at end of file diff --git a/resources/svg/kitsu.svg b/resources/svg/kitsu.svg new file mode 100644 index 0000000..6f4fde7 --- /dev/null +++ b/resources/svg/kitsu.svg @@ -0,0 +1 @@ +Kitsu icon \ No newline at end of file diff --git a/resources/svg/klm.svg b/resources/svg/klm.svg new file mode 100644 index 0000000..22ae45b --- /dev/null +++ b/resources/svg/klm.svg @@ -0,0 +1 @@ +KLM icon \ No newline at end of file diff --git a/resources/svg/klook.svg b/resources/svg/klook.svg new file mode 100644 index 0000000..d2c22ae --- /dev/null +++ b/resources/svg/klook.svg @@ -0,0 +1 @@ +Klook icon \ No newline at end of file diff --git a/resources/svg/klout.svg b/resources/svg/klout.svg new file mode 100644 index 0000000..797fc89 --- /dev/null +++ b/resources/svg/klout.svg @@ -0,0 +1 @@ +Klout icon \ No newline at end of file diff --git a/resources/svg/knowledgebase.svg b/resources/svg/knowledgebase.svg new file mode 100644 index 0000000..97d35d2 --- /dev/null +++ b/resources/svg/knowledgebase.svg @@ -0,0 +1 @@ +KnowledgeBase icon \ No newline at end of file diff --git a/resources/svg/known.svg b/resources/svg/known.svg new file mode 100644 index 0000000..78a6d9d --- /dev/null +++ b/resources/svg/known.svg @@ -0,0 +1 @@ +Known icon \ No newline at end of file diff --git a/resources/svg/ko-fi.svg b/resources/svg/ko-fi.svg new file mode 100644 index 0000000..841b9f3 --- /dev/null +++ b/resources/svg/ko-fi.svg @@ -0,0 +1 @@ +Ko-fi icon \ No newline at end of file diff --git a/resources/svg/kodi.svg b/resources/svg/kodi.svg new file mode 100644 index 0000000..9537098 --- /dev/null +++ b/resources/svg/kodi.svg @@ -0,0 +1 @@ +Kodi icon \ No newline at end of file diff --git a/resources/svg/koding.svg b/resources/svg/koding.svg new file mode 100644 index 0000000..7b3b196 --- /dev/null +++ b/resources/svg/koding.svg @@ -0,0 +1 @@ +Koding icon \ No newline at end of file diff --git a/resources/svg/kofax.svg b/resources/svg/kofax.svg new file mode 100644 index 0000000..b74b046 --- /dev/null +++ b/resources/svg/kofax.svg @@ -0,0 +1 @@ +Kofax icon \ No newline at end of file diff --git a/resources/svg/komoot.svg b/resources/svg/komoot.svg new file mode 100644 index 0000000..6b4996a --- /dev/null +++ b/resources/svg/komoot.svg @@ -0,0 +1 @@ +Komoot icon \ No newline at end of file diff --git a/resources/svg/kongregate.svg b/resources/svg/kongregate.svg new file mode 100644 index 0000000..962ac17 --- /dev/null +++ b/resources/svg/kongregate.svg @@ -0,0 +1 @@ +Kongregate icon \ No newline at end of file diff --git a/resources/svg/kotlin.svg b/resources/svg/kotlin.svg new file mode 100644 index 0000000..1c0369f --- /dev/null +++ b/resources/svg/kotlin.svg @@ -0,0 +1 @@ +Kotlin icon \ No newline at end of file diff --git a/resources/svg/krita.svg b/resources/svg/krita.svg new file mode 100644 index 0000000..a4f22d3 --- /dev/null +++ b/resources/svg/krita.svg @@ -0,0 +1 @@ +Krita icon \ No newline at end of file diff --git a/resources/svg/ktm.svg b/resources/svg/ktm.svg new file mode 100644 index 0000000..9729fce --- /dev/null +++ b/resources/svg/ktm.svg @@ -0,0 +1 @@ +KTM icon diff --git a/resources/svg/kubernetes.svg b/resources/svg/kubernetes.svg new file mode 100644 index 0000000..faf8bb8 --- /dev/null +++ b/resources/svg/kubernetes.svg @@ -0,0 +1 @@ +Kubernetes icon \ No newline at end of file diff --git a/resources/svg/kubuntu.svg b/resources/svg/kubuntu.svg new file mode 100644 index 0000000..f37fee6 --- /dev/null +++ b/resources/svg/kubuntu.svg @@ -0,0 +1 @@ +Kubuntu icon diff --git a/resources/svg/kyocera.svg b/resources/svg/kyocera.svg new file mode 100644 index 0000000..adbf1a8 --- /dev/null +++ b/resources/svg/kyocera.svg @@ -0,0 +1 @@ +Kyocera icon \ No newline at end of file diff --git a/resources/svg/labview.svg b/resources/svg/labview.svg new file mode 100644 index 0000000..87e33c9 --- /dev/null +++ b/resources/svg/labview.svg @@ -0,0 +1 @@ +LabVIEW icon diff --git a/resources/svg/lada.svg b/resources/svg/lada.svg new file mode 100644 index 0000000..825d835 --- /dev/null +++ b/resources/svg/lada.svg @@ -0,0 +1 @@ +Lada icon \ No newline at end of file diff --git a/resources/svg/lamborghini.svg b/resources/svg/lamborghini.svg new file mode 100644 index 0000000..257a91d --- /dev/null +++ b/resources/svg/lamborghini.svg @@ -0,0 +1 @@ +Lamborghini icon \ No newline at end of file diff --git a/resources/svg/landrover.svg b/resources/svg/landrover.svg new file mode 100644 index 0000000..4a6c777 --- /dev/null +++ b/resources/svg/landrover.svg @@ -0,0 +1 @@ +Land Rover icon \ No newline at end of file diff --git a/resources/svg/laragon.svg b/resources/svg/laragon.svg new file mode 100644 index 0000000..4c63c59 --- /dev/null +++ b/resources/svg/laragon.svg @@ -0,0 +1 @@ +Laragon icon \ No newline at end of file diff --git a/resources/svg/laravel.svg b/resources/svg/laravel.svg new file mode 100644 index 0000000..768d772 --- /dev/null +++ b/resources/svg/laravel.svg @@ -0,0 +1 @@ +Laravel icon \ No newline at end of file diff --git a/resources/svg/laravelhorizon.svg b/resources/svg/laravelhorizon.svg new file mode 100644 index 0000000..cb2a827 --- /dev/null +++ b/resources/svg/laravelhorizon.svg @@ -0,0 +1 @@ +Laravel Horizon icon \ No newline at end of file diff --git a/resources/svg/laravelnova.svg b/resources/svg/laravelnova.svg new file mode 100644 index 0000000..e22da96 --- /dev/null +++ b/resources/svg/laravelnova.svg @@ -0,0 +1 @@ +Laravel Nova icon \ No newline at end of file diff --git a/resources/svg/last-dot-fm.svg b/resources/svg/last-dot-fm.svg new file mode 100644 index 0000000..e5dd1f0 --- /dev/null +++ b/resources/svg/last-dot-fm.svg @@ -0,0 +1 @@ +Last.fm icon \ No newline at end of file diff --git a/resources/svg/lastpass.svg b/resources/svg/lastpass.svg new file mode 100644 index 0000000..be0344c --- /dev/null +++ b/resources/svg/lastpass.svg @@ -0,0 +1 @@ +LastPass icon \ No newline at end of file diff --git a/resources/svg/latex.svg b/resources/svg/latex.svg new file mode 100644 index 0000000..ad0111a --- /dev/null +++ b/resources/svg/latex.svg @@ -0,0 +1 @@ +LaTeX icon \ No newline at end of file diff --git a/resources/svg/launchpad.svg b/resources/svg/launchpad.svg new file mode 100644 index 0000000..a052b1f --- /dev/null +++ b/resources/svg/launchpad.svg @@ -0,0 +1 @@ +Launchpad icon \ No newline at end of file diff --git a/resources/svg/lbry.svg b/resources/svg/lbry.svg new file mode 100644 index 0000000..994a541 --- /dev/null +++ b/resources/svg/lbry.svg @@ -0,0 +1 @@ +LBRY icon \ No newline at end of file diff --git a/resources/svg/leaflet.svg b/resources/svg/leaflet.svg new file mode 100644 index 0000000..f9b5121 --- /dev/null +++ b/resources/svg/leaflet.svg @@ -0,0 +1 @@ +Leaflet icon \ No newline at end of file diff --git a/resources/svg/leanpub.svg b/resources/svg/leanpub.svg new file mode 100644 index 0000000..45879bd --- /dev/null +++ b/resources/svg/leanpub.svg @@ -0,0 +1 @@ +Leanpub icon diff --git a/resources/svg/leetcode.svg b/resources/svg/leetcode.svg new file mode 100644 index 0000000..04c0a68 --- /dev/null +++ b/resources/svg/leetcode.svg @@ -0,0 +1 @@ +LeetCode icon \ No newline at end of file diff --git a/resources/svg/lenovo.svg b/resources/svg/lenovo.svg new file mode 100644 index 0000000..f97150a --- /dev/null +++ b/resources/svg/lenovo.svg @@ -0,0 +1 @@ +Lenovo icon \ No newline at end of file diff --git a/resources/svg/less.svg b/resources/svg/less.svg new file mode 100644 index 0000000..8dd7ac7 --- /dev/null +++ b/resources/svg/less.svg @@ -0,0 +1 @@ +Less icon \ No newline at end of file diff --git a/resources/svg/letsencrypt.svg b/resources/svg/letsencrypt.svg new file mode 100644 index 0000000..aea36a4 --- /dev/null +++ b/resources/svg/letsencrypt.svg @@ -0,0 +1 @@ +Let's Encrypt icon \ No newline at end of file diff --git a/resources/svg/letterboxd.svg b/resources/svg/letterboxd.svg new file mode 100644 index 0000000..e81c301 --- /dev/null +++ b/resources/svg/letterboxd.svg @@ -0,0 +1 @@ +Letterboxd icon \ No newline at end of file diff --git a/resources/svg/lg.svg b/resources/svg/lg.svg new file mode 100644 index 0000000..793d7a0 --- /dev/null +++ b/resources/svg/lg.svg @@ -0,0 +1 @@ +LG icon \ No newline at end of file diff --git a/resources/svg/lgtm.svg b/resources/svg/lgtm.svg new file mode 100644 index 0000000..2d39d28 --- /dev/null +++ b/resources/svg/lgtm.svg @@ -0,0 +1 @@ +LGTM icon \ No newline at end of file diff --git a/resources/svg/liberapay.svg b/resources/svg/liberapay.svg new file mode 100644 index 0000000..4d7ff12 --- /dev/null +++ b/resources/svg/liberapay.svg @@ -0,0 +1 @@ +Liberapay icon \ No newline at end of file diff --git a/resources/svg/libraries-dot-io.svg b/resources/svg/libraries-dot-io.svg new file mode 100644 index 0000000..62fdbba --- /dev/null +++ b/resources/svg/libraries-dot-io.svg @@ -0,0 +1 @@ +Libraries.io icon \ No newline at end of file diff --git a/resources/svg/librarything.svg b/resources/svg/librarything.svg new file mode 100644 index 0000000..f87cd79 --- /dev/null +++ b/resources/svg/librarything.svg @@ -0,0 +1 @@ +LibraryThing icon \ No newline at end of file diff --git a/resources/svg/libreoffice.svg b/resources/svg/libreoffice.svg new file mode 100644 index 0000000..e09ef09 --- /dev/null +++ b/resources/svg/libreoffice.svg @@ -0,0 +1 @@ +LibreOffice icon \ No newline at end of file diff --git a/resources/svg/libuv.svg b/resources/svg/libuv.svg new file mode 100644 index 0000000..ed31b0c --- /dev/null +++ b/resources/svg/libuv.svg @@ -0,0 +1 @@ +libuv icon diff --git a/resources/svg/lichess.svg b/resources/svg/lichess.svg new file mode 100644 index 0000000..877c4ee --- /dev/null +++ b/resources/svg/lichess.svg @@ -0,0 +1 @@ +Lichess icon \ No newline at end of file diff --git a/resources/svg/lighthouse.svg b/resources/svg/lighthouse.svg new file mode 100644 index 0000000..3ed10c2 --- /dev/null +++ b/resources/svg/lighthouse.svg @@ -0,0 +1 @@ +Lighthouse icon \ No newline at end of file diff --git a/resources/svg/line.svg b/resources/svg/line.svg new file mode 100644 index 0000000..65f116a --- /dev/null +++ b/resources/svg/line.svg @@ -0,0 +1 @@ +LINE icon \ No newline at end of file diff --git a/resources/svg/lineageos.svg b/resources/svg/lineageos.svg new file mode 100644 index 0000000..36b9638 --- /dev/null +++ b/resources/svg/lineageos.svg @@ -0,0 +1 @@ +LineageOS icon \ No newline at end of file diff --git a/resources/svg/linewebtoon.svg b/resources/svg/linewebtoon.svg new file mode 100644 index 0000000..e7d674f --- /dev/null +++ b/resources/svg/linewebtoon.svg @@ -0,0 +1 @@ +LINE WEBTOON icon \ No newline at end of file diff --git a/resources/svg/linkedin.svg b/resources/svg/linkedin.svg new file mode 100644 index 0000000..ad07193 --- /dev/null +++ b/resources/svg/linkedin.svg @@ -0,0 +1 @@ +LinkedIn icon \ No newline at end of file diff --git a/resources/svg/linktree.svg b/resources/svg/linktree.svg new file mode 100644 index 0000000..f21468c --- /dev/null +++ b/resources/svg/linktree.svg @@ -0,0 +1 @@ +Linktree icon \ No newline at end of file diff --git a/resources/svg/linode.svg b/resources/svg/linode.svg new file mode 100644 index 0000000..90674ca --- /dev/null +++ b/resources/svg/linode.svg @@ -0,0 +1 @@ +Linode icon \ No newline at end of file diff --git a/resources/svg/linux.svg b/resources/svg/linux.svg new file mode 100644 index 0000000..4235928 --- /dev/null +++ b/resources/svg/linux.svg @@ -0,0 +1 @@ +Linux icon \ No newline at end of file diff --git a/resources/svg/linuxcontainers.svg b/resources/svg/linuxcontainers.svg new file mode 100644 index 0000000..e594d97 --- /dev/null +++ b/resources/svg/linuxcontainers.svg @@ -0,0 +1 @@ +Linux Containers icon \ No newline at end of file diff --git a/resources/svg/linuxfoundation.svg b/resources/svg/linuxfoundation.svg new file mode 100644 index 0000000..0c0324c --- /dev/null +++ b/resources/svg/linuxfoundation.svg @@ -0,0 +1 @@ +Linux Foundation icon \ No newline at end of file diff --git a/resources/svg/linuxmint.svg b/resources/svg/linuxmint.svg new file mode 100644 index 0000000..523eaa6 --- /dev/null +++ b/resources/svg/linuxmint.svg @@ -0,0 +1 @@ +Linux Mint icon \ No newline at end of file diff --git a/resources/svg/lionair.svg b/resources/svg/lionair.svg new file mode 100644 index 0000000..feafac6 --- /dev/null +++ b/resources/svg/lionair.svg @@ -0,0 +1 @@ +Lion Air icon \ No newline at end of file diff --git a/resources/svg/litecoin.svg b/resources/svg/litecoin.svg new file mode 100644 index 0000000..d1fc8fd --- /dev/null +++ b/resources/svg/litecoin.svg @@ -0,0 +1 @@ +Litecoin icon diff --git a/resources/svg/livechat.svg b/resources/svg/livechat.svg new file mode 100644 index 0000000..8e0feba --- /dev/null +++ b/resources/svg/livechat.svg @@ -0,0 +1 @@ +LiveChat icon \ No newline at end of file diff --git a/resources/svg/livejournal.svg b/resources/svg/livejournal.svg new file mode 100644 index 0000000..b97c7c5 --- /dev/null +++ b/resources/svg/livejournal.svg @@ -0,0 +1 @@ +LiveJournal icon \ No newline at end of file diff --git a/resources/svg/livestream.svg b/resources/svg/livestream.svg new file mode 100644 index 0000000..4524593 --- /dev/null +++ b/resources/svg/livestream.svg @@ -0,0 +1 @@ +Livestream icon \ No newline at end of file diff --git a/resources/svg/llvm.svg b/resources/svg/llvm.svg new file mode 100644 index 0000000..fe3f790 --- /dev/null +++ b/resources/svg/llvm.svg @@ -0,0 +1 @@ +LLVM icon \ No newline at end of file diff --git a/resources/svg/lmms.svg b/resources/svg/lmms.svg new file mode 100644 index 0000000..7eb1fb0 --- /dev/null +++ b/resources/svg/lmms.svg @@ -0,0 +1 @@ +LMMS icon diff --git a/resources/svg/logitech.svg b/resources/svg/logitech.svg new file mode 100644 index 0000000..c87b834 --- /dev/null +++ b/resources/svg/logitech.svg @@ -0,0 +1 @@ +Logitech icon \ No newline at end of file diff --git a/resources/svg/logmein.svg b/resources/svg/logmein.svg new file mode 100644 index 0000000..48f78f0 --- /dev/null +++ b/resources/svg/logmein.svg @@ -0,0 +1 @@ +LogMeIn icon diff --git a/resources/svg/logstash.svg b/resources/svg/logstash.svg new file mode 100644 index 0000000..75910ce --- /dev/null +++ b/resources/svg/logstash.svg @@ -0,0 +1 @@ +Logstash icon \ No newline at end of file diff --git a/resources/svg/looker.svg b/resources/svg/looker.svg new file mode 100644 index 0000000..593be60 --- /dev/null +++ b/resources/svg/looker.svg @@ -0,0 +1 @@ +Looker icon \ No newline at end of file diff --git a/resources/svg/loom.svg b/resources/svg/loom.svg new file mode 100644 index 0000000..35a7d30 --- /dev/null +++ b/resources/svg/loom.svg @@ -0,0 +1 @@ +Loom icon \ No newline at end of file diff --git a/resources/svg/loop.svg b/resources/svg/loop.svg new file mode 100644 index 0000000..903c585 --- /dev/null +++ b/resources/svg/loop.svg @@ -0,0 +1 @@ +Loop icon \ No newline at end of file diff --git a/resources/svg/lospec.svg b/resources/svg/lospec.svg new file mode 100644 index 0000000..bb94f03 --- /dev/null +++ b/resources/svg/lospec.svg @@ -0,0 +1 @@ +Lospec icon \ No newline at end of file diff --git a/resources/svg/lua.svg b/resources/svg/lua.svg new file mode 100644 index 0000000..8d6b85c --- /dev/null +++ b/resources/svg/lua.svg @@ -0,0 +1 @@ +Lua icon \ No newline at end of file diff --git a/resources/svg/lubuntu.svg b/resources/svg/lubuntu.svg new file mode 100644 index 0000000..8f7e1f1 --- /dev/null +++ b/resources/svg/lubuntu.svg @@ -0,0 +1 @@ +Lubuntu icon \ No newline at end of file diff --git a/resources/svg/lufthansa.svg b/resources/svg/lufthansa.svg new file mode 100644 index 0000000..45d12df --- /dev/null +++ b/resources/svg/lufthansa.svg @@ -0,0 +1 @@ +Lufthansa icon \ No newline at end of file diff --git a/resources/svg/lumen.svg b/resources/svg/lumen.svg new file mode 100644 index 0000000..ba89de3 --- /dev/null +++ b/resources/svg/lumen.svg @@ -0,0 +1 @@ +Lumen icon \ No newline at end of file diff --git a/resources/svg/lydia.svg b/resources/svg/lydia.svg new file mode 100644 index 0000000..3d81396 --- /dev/null +++ b/resources/svg/lydia.svg @@ -0,0 +1 @@ +Lydia icon \ No newline at end of file diff --git a/resources/svg/lyft.svg b/resources/svg/lyft.svg new file mode 100644 index 0000000..869694b --- /dev/null +++ b/resources/svg/lyft.svg @@ -0,0 +1 @@ +Lyft icon \ No newline at end of file diff --git a/resources/svg/maas.svg b/resources/svg/maas.svg new file mode 100644 index 0000000..75903dd --- /dev/null +++ b/resources/svg/maas.svg @@ -0,0 +1 @@ +MAAS icon \ No newline at end of file diff --git a/resources/svg/macos.svg b/resources/svg/macos.svg new file mode 100644 index 0000000..8091a3f --- /dev/null +++ b/resources/svg/macos.svg @@ -0,0 +1 @@ +macOS icon \ No newline at end of file diff --git a/resources/svg/macys.svg b/resources/svg/macys.svg new file mode 100644 index 0000000..297a9bc --- /dev/null +++ b/resources/svg/macys.svg @@ -0,0 +1 @@ +Macy’s icon \ No newline at end of file diff --git a/resources/svg/magento.svg b/resources/svg/magento.svg new file mode 100644 index 0000000..26b0cb3 --- /dev/null +++ b/resources/svg/magento.svg @@ -0,0 +1 @@ +Magento icon \ No newline at end of file diff --git a/resources/svg/magisk.svg b/resources/svg/magisk.svg new file mode 100644 index 0000000..f186f9d --- /dev/null +++ b/resources/svg/magisk.svg @@ -0,0 +1 @@ +Magisk icon \ No newline at end of file diff --git a/resources/svg/mail-dot-ru.svg b/resources/svg/mail-dot-ru.svg new file mode 100644 index 0000000..017b2cd --- /dev/null +++ b/resources/svg/mail-dot-ru.svg @@ -0,0 +1 @@ +Mail.Ru icon \ No newline at end of file diff --git a/resources/svg/mailchimp.svg b/resources/svg/mailchimp.svg new file mode 100644 index 0000000..d0414cb --- /dev/null +++ b/resources/svg/mailchimp.svg @@ -0,0 +1 @@ +MailChimp icon \ No newline at end of file diff --git a/resources/svg/majorleaguehacking.svg b/resources/svg/majorleaguehacking.svg new file mode 100644 index 0000000..760ee95 --- /dev/null +++ b/resources/svg/majorleaguehacking.svg @@ -0,0 +1 @@ +Major League Hacking icon \ No newline at end of file diff --git a/resources/svg/makerbot.svg b/resources/svg/makerbot.svg new file mode 100644 index 0000000..74a1b6a --- /dev/null +++ b/resources/svg/makerbot.svg @@ -0,0 +1 @@ +MakerBot icon \ No newline at end of file diff --git a/resources/svg/man.svg b/resources/svg/man.svg new file mode 100644 index 0000000..ee1888c --- /dev/null +++ b/resources/svg/man.svg @@ -0,0 +1 @@ +MAN icon \ No newline at end of file diff --git a/resources/svg/manageiq.svg b/resources/svg/manageiq.svg new file mode 100644 index 0000000..563b0a6 --- /dev/null +++ b/resources/svg/manageiq.svg @@ -0,0 +1 @@ +ManageIQ icon \ No newline at end of file diff --git a/resources/svg/manjaro.svg b/resources/svg/manjaro.svg new file mode 100644 index 0000000..d1c044f --- /dev/null +++ b/resources/svg/manjaro.svg @@ -0,0 +1 @@ +Manjaro icon \ No newline at end of file diff --git a/resources/svg/mapbox.svg b/resources/svg/mapbox.svg new file mode 100644 index 0000000..33dd0b6 --- /dev/null +++ b/resources/svg/mapbox.svg @@ -0,0 +1 @@ +Mapbox icon \ No newline at end of file diff --git a/resources/svg/mariadb.svg b/resources/svg/mariadb.svg new file mode 100644 index 0000000..466361b --- /dev/null +++ b/resources/svg/mariadb.svg @@ -0,0 +1 @@ +MariaDB icon diff --git a/resources/svg/mariadbfoundation.svg b/resources/svg/mariadbfoundation.svg new file mode 100644 index 0000000..40ef13d --- /dev/null +++ b/resources/svg/mariadbfoundation.svg @@ -0,0 +1 @@ +MariaDB Foundation icon diff --git a/resources/svg/markdown.svg b/resources/svg/markdown.svg new file mode 100644 index 0000000..30ba59c --- /dev/null +++ b/resources/svg/markdown.svg @@ -0,0 +1 @@ +Markdown icon \ No newline at end of file diff --git a/resources/svg/marketo.svg b/resources/svg/marketo.svg new file mode 100644 index 0000000..6fd55d7 --- /dev/null +++ b/resources/svg/marketo.svg @@ -0,0 +1 @@ +Marketo icon \ No newline at end of file diff --git a/resources/svg/marriott.svg b/resources/svg/marriott.svg new file mode 100644 index 0000000..6c3aa8a --- /dev/null +++ b/resources/svg/marriott.svg @@ -0,0 +1 @@ +Marriott icon \ No newline at end of file diff --git a/resources/svg/maserati.svg b/resources/svg/maserati.svg new file mode 100644 index 0000000..3c30287 --- /dev/null +++ b/resources/svg/maserati.svg @@ -0,0 +1 @@ +Maserati icon \ No newline at end of file diff --git a/resources/svg/mastercard.svg b/resources/svg/mastercard.svg new file mode 100644 index 0000000..ab7fdc5 --- /dev/null +++ b/resources/svg/mastercard.svg @@ -0,0 +1 @@ +MasterCard icon \ No newline at end of file diff --git a/resources/svg/mastercomfig.svg b/resources/svg/mastercomfig.svg new file mode 100644 index 0000000..87e3b4a --- /dev/null +++ b/resources/svg/mastercomfig.svg @@ -0,0 +1 @@ +mastercomfig icon \ No newline at end of file diff --git a/resources/svg/mastodon.svg b/resources/svg/mastodon.svg new file mode 100644 index 0000000..a42d1ef --- /dev/null +++ b/resources/svg/mastodon.svg @@ -0,0 +1 @@ +Mastodon icon \ No newline at end of file diff --git a/resources/svg/material-ui.svg b/resources/svg/material-ui.svg new file mode 100644 index 0000000..e2d802c --- /dev/null +++ b/resources/svg/material-ui.svg @@ -0,0 +1 @@ +Material-UI icon diff --git a/resources/svg/materialdesign.svg b/resources/svg/materialdesign.svg new file mode 100644 index 0000000..c3949e4 --- /dev/null +++ b/resources/svg/materialdesign.svg @@ -0,0 +1 @@ +Material Design icon \ No newline at end of file diff --git a/resources/svg/materialdesignicons.svg b/resources/svg/materialdesignicons.svg new file mode 100644 index 0000000..78cbb77 --- /dev/null +++ b/resources/svg/materialdesignicons.svg @@ -0,0 +1 @@ +Material Design Icons icon \ No newline at end of file diff --git a/resources/svg/mathworks.svg b/resources/svg/mathworks.svg new file mode 100644 index 0000000..92f0805 --- /dev/null +++ b/resources/svg/mathworks.svg @@ -0,0 +1 @@ +Mathworks icon \ No newline at end of file diff --git a/resources/svg/matomo.svg b/resources/svg/matomo.svg new file mode 100644 index 0000000..8d3902d --- /dev/null +++ b/resources/svg/matomo.svg @@ -0,0 +1 @@ +Matomo icon \ No newline at end of file diff --git a/resources/svg/matrix.svg b/resources/svg/matrix.svg new file mode 100644 index 0000000..108513c --- /dev/null +++ b/resources/svg/matrix.svg @@ -0,0 +1 @@ +Matrix icon \ No newline at end of file diff --git a/resources/svg/mattermost.svg b/resources/svg/mattermost.svg new file mode 100644 index 0000000..9e22a0f --- /dev/null +++ b/resources/svg/mattermost.svg @@ -0,0 +1 @@ +Mattermost icon \ No newline at end of file diff --git a/resources/svg/matternet.svg b/resources/svg/matternet.svg new file mode 100644 index 0000000..a970ef7 --- /dev/null +++ b/resources/svg/matternet.svg @@ -0,0 +1 @@ +Matternet icon \ No newline at end of file diff --git a/resources/svg/max-planck-gesellschaft.svg b/resources/svg/max-planck-gesellschaft.svg new file mode 100644 index 0000000..f932e4d --- /dev/null +++ b/resources/svg/max-planck-gesellschaft.svg @@ -0,0 +1 @@ +Max-Planck-Gesellschaft icon \ No newline at end of file diff --git a/resources/svg/max.svg b/resources/svg/max.svg new file mode 100644 index 0000000..1067b28 --- /dev/null +++ b/resources/svg/max.svg @@ -0,0 +1 @@ +Max icon \ No newline at end of file diff --git a/resources/svg/maytag.svg b/resources/svg/maytag.svg new file mode 100644 index 0000000..a4cfd7a --- /dev/null +++ b/resources/svg/maytag.svg @@ -0,0 +1 @@ +Maytag icon \ No newline at end of file diff --git a/resources/svg/mazda.svg b/resources/svg/mazda.svg new file mode 100644 index 0000000..a61afdc --- /dev/null +++ b/resources/svg/mazda.svg @@ -0,0 +1 @@ +Mazda icon \ No newline at end of file diff --git a/resources/svg/mcafee.svg b/resources/svg/mcafee.svg new file mode 100644 index 0000000..a9f2f48 --- /dev/null +++ b/resources/svg/mcafee.svg @@ -0,0 +1 @@ +McAfee icon \ No newline at end of file diff --git a/resources/svg/mcdonalds.svg b/resources/svg/mcdonalds.svg new file mode 100644 index 0000000..9562862 --- /dev/null +++ b/resources/svg/mcdonalds.svg @@ -0,0 +1 @@ +McDonald's icon \ No newline at end of file diff --git a/resources/svg/mclaren.svg b/resources/svg/mclaren.svg new file mode 100644 index 0000000..8be5b1b --- /dev/null +++ b/resources/svg/mclaren.svg @@ -0,0 +1 @@ +McLaren icon \ No newline at end of file diff --git a/resources/svg/mdnwebdocs.svg b/resources/svg/mdnwebdocs.svg new file mode 100644 index 0000000..e1c6f87 --- /dev/null +++ b/resources/svg/mdnwebdocs.svg @@ -0,0 +1 @@ +MDN Web Docs icon \ No newline at end of file diff --git a/resources/svg/mediafire.svg b/resources/svg/mediafire.svg new file mode 100644 index 0000000..fd674bd --- /dev/null +++ b/resources/svg/mediafire.svg @@ -0,0 +1 @@ +MediaFire icon \ No newline at end of file diff --git a/resources/svg/mediatemple.svg b/resources/svg/mediatemple.svg new file mode 100644 index 0000000..7f3c153 --- /dev/null +++ b/resources/svg/mediatemple.svg @@ -0,0 +1 @@ +MediaTemple icon \ No newline at end of file diff --git a/resources/svg/medium.svg b/resources/svg/medium.svg new file mode 100644 index 0000000..653ae7d --- /dev/null +++ b/resources/svg/medium.svg @@ -0,0 +1 @@ +Medium icon \ No newline at end of file diff --git a/resources/svg/meetup.svg b/resources/svg/meetup.svg new file mode 100644 index 0000000..516bc88 --- /dev/null +++ b/resources/svg/meetup.svg @@ -0,0 +1 @@ +Meetup icon \ No newline at end of file diff --git a/resources/svg/mega.svg b/resources/svg/mega.svg new file mode 100644 index 0000000..978c48f --- /dev/null +++ b/resources/svg/mega.svg @@ -0,0 +1 @@ +MEGA icon \ No newline at end of file diff --git a/resources/svg/mendeley.svg b/resources/svg/mendeley.svg new file mode 100644 index 0000000..ac146be --- /dev/null +++ b/resources/svg/mendeley.svg @@ -0,0 +1 @@ +Mendeley icon \ No newline at end of file diff --git a/resources/svg/mercedes.svg b/resources/svg/mercedes.svg new file mode 100644 index 0000000..421c2d7 --- /dev/null +++ b/resources/svg/mercedes.svg @@ -0,0 +1 @@ +Mercedes icon \ No newline at end of file diff --git a/resources/svg/mercurial.svg b/resources/svg/mercurial.svg new file mode 100644 index 0000000..2553338 --- /dev/null +++ b/resources/svg/mercurial.svg @@ -0,0 +1 @@ +Mercurial icon \ No newline at end of file diff --git a/resources/svg/messenger.svg b/resources/svg/messenger.svg new file mode 100644 index 0000000..2e5fde3 --- /dev/null +++ b/resources/svg/messenger.svg @@ -0,0 +1 @@ +Messenger icon \ No newline at end of file diff --git a/resources/svg/metafilter.svg b/resources/svg/metafilter.svg new file mode 100644 index 0000000..a3f2e76 --- /dev/null +++ b/resources/svg/metafilter.svg @@ -0,0 +1 @@ +MetaFilter icon \ No newline at end of file diff --git a/resources/svg/meteor.svg b/resources/svg/meteor.svg new file mode 100644 index 0000000..3e11b66 --- /dev/null +++ b/resources/svg/meteor.svg @@ -0,0 +1 @@ +Meteor icon \ No newline at end of file diff --git a/resources/svg/metro.svg b/resources/svg/metro.svg new file mode 100644 index 0000000..9d61f02 --- /dev/null +++ b/resources/svg/metro.svg @@ -0,0 +1 @@ +Metro icon \ No newline at end of file diff --git a/resources/svg/metrodelaciudaddemexico.svg b/resources/svg/metrodelaciudaddemexico.svg new file mode 100644 index 0000000..c3e7a82 --- /dev/null +++ b/resources/svg/metrodelaciudaddemexico.svg @@ -0,0 +1 @@ +Metro de la Ciudad de México icon \ No newline at end of file diff --git a/resources/svg/metrodemadrid.svg b/resources/svg/metrodemadrid.svg new file mode 100644 index 0000000..5e659dd --- /dev/null +++ b/resources/svg/metrodemadrid.svg @@ -0,0 +1 @@ +Metro de Madrid icon \ No newline at end of file diff --git a/resources/svg/metrodeparis.svg b/resources/svg/metrodeparis.svg new file mode 100644 index 0000000..a8d3150 --- /dev/null +++ b/resources/svg/metrodeparis.svg @@ -0,0 +1 @@ +Métro de Paris icon \ No newline at end of file diff --git a/resources/svg/mewe.svg b/resources/svg/mewe.svg new file mode 100644 index 0000000..c21cc02 --- /dev/null +++ b/resources/svg/mewe.svg @@ -0,0 +1 @@ +MeWe icon \ No newline at end of file diff --git a/resources/svg/micro-dot-blog.svg b/resources/svg/micro-dot-blog.svg new file mode 100644 index 0000000..acb44f2 --- /dev/null +++ b/resources/svg/micro-dot-blog.svg @@ -0,0 +1 @@ +Micro.blog icon \ No newline at end of file diff --git a/resources/svg/microbit.svg b/resources/svg/microbit.svg new file mode 100644 index 0000000..7b76588 --- /dev/null +++ b/resources/svg/microbit.svg @@ -0,0 +1 @@ +micro:bit icon \ No newline at end of file diff --git a/resources/svg/microgenetics.svg b/resources/svg/microgenetics.svg new file mode 100644 index 0000000..b449d8c --- /dev/null +++ b/resources/svg/microgenetics.svg @@ -0,0 +1 @@ +Microgenetics icon \ No newline at end of file diff --git a/resources/svg/microsoft.svg b/resources/svg/microsoft.svg new file mode 100644 index 0000000..48977fb --- /dev/null +++ b/resources/svg/microsoft.svg @@ -0,0 +1 @@ +Microsoft icon \ No newline at end of file diff --git a/resources/svg/microsoftacademic.svg b/resources/svg/microsoftacademic.svg new file mode 100644 index 0000000..bc62e65 --- /dev/null +++ b/resources/svg/microsoftacademic.svg @@ -0,0 +1 @@ +Microsoft Academic icon \ No newline at end of file diff --git a/resources/svg/microsoftaccess.svg b/resources/svg/microsoftaccess.svg new file mode 100644 index 0000000..115ca81 --- /dev/null +++ b/resources/svg/microsoftaccess.svg @@ -0,0 +1 @@ +Microsoft Access icon diff --git a/resources/svg/microsoftazure.svg b/resources/svg/microsoftazure.svg new file mode 100644 index 0000000..b827ce0 --- /dev/null +++ b/resources/svg/microsoftazure.svg @@ -0,0 +1 @@ +Microsoft Azure icon \ No newline at end of file diff --git a/resources/svg/microsoftedge.svg b/resources/svg/microsoftedge.svg new file mode 100644 index 0000000..5be12bc --- /dev/null +++ b/resources/svg/microsoftedge.svg @@ -0,0 +1 @@ +Microsoft Edge icon diff --git a/resources/svg/microsoftexcel.svg b/resources/svg/microsoftexcel.svg new file mode 100644 index 0000000..4fde75a --- /dev/null +++ b/resources/svg/microsoftexcel.svg @@ -0,0 +1 @@ +Microsoft Excel icon diff --git a/resources/svg/microsoftexchange.svg b/resources/svg/microsoftexchange.svg new file mode 100644 index 0000000..ebdf87a --- /dev/null +++ b/resources/svg/microsoftexchange.svg @@ -0,0 +1 @@ +Microsoft Exchange icon \ No newline at end of file diff --git a/resources/svg/microsoftoffice.svg b/resources/svg/microsoftoffice.svg new file mode 100644 index 0000000..4bdb39b --- /dev/null +++ b/resources/svg/microsoftoffice.svg @@ -0,0 +1 @@ +Microsoft Office icon \ No newline at end of file diff --git a/resources/svg/microsoftonedrive.svg b/resources/svg/microsoftonedrive.svg new file mode 100644 index 0000000..ea765b0 --- /dev/null +++ b/resources/svg/microsoftonedrive.svg @@ -0,0 +1 @@ +Microsoft OneDrive icon diff --git a/resources/svg/microsoftonenote.svg b/resources/svg/microsoftonenote.svg new file mode 100644 index 0000000..8a861f1 --- /dev/null +++ b/resources/svg/microsoftonenote.svg @@ -0,0 +1 @@ +Microsoft OneNote icon diff --git a/resources/svg/microsoftoutlook.svg b/resources/svg/microsoftoutlook.svg new file mode 100644 index 0000000..44d40f6 --- /dev/null +++ b/resources/svg/microsoftoutlook.svg @@ -0,0 +1 @@ +Microsoft Outlook icon diff --git a/resources/svg/microsoftpowerpoint.svg b/resources/svg/microsoftpowerpoint.svg new file mode 100644 index 0000000..456225a --- /dev/null +++ b/resources/svg/microsoftpowerpoint.svg @@ -0,0 +1 @@ +Microsoft PowerPoint icon diff --git a/resources/svg/microsoftsharepoint.svg b/resources/svg/microsoftsharepoint.svg new file mode 100644 index 0000000..c9bf099 --- /dev/null +++ b/resources/svg/microsoftsharepoint.svg @@ -0,0 +1 @@ +Microsoft SharePoint icon diff --git a/resources/svg/microsoftsqlserver.svg b/resources/svg/microsoftsqlserver.svg new file mode 100644 index 0000000..77f0357 --- /dev/null +++ b/resources/svg/microsoftsqlserver.svg @@ -0,0 +1 @@ +Microsoft SQL Server icon diff --git a/resources/svg/microsoftteams.svg b/resources/svg/microsoftteams.svg new file mode 100644 index 0000000..8d511fa --- /dev/null +++ b/resources/svg/microsoftteams.svg @@ -0,0 +1 @@ +Microsoft Teams icon diff --git a/resources/svg/microsoftvisio.svg b/resources/svg/microsoftvisio.svg new file mode 100644 index 0000000..3d6f160 --- /dev/null +++ b/resources/svg/microsoftvisio.svg @@ -0,0 +1 @@ +Microsoft Visio icon \ No newline at end of file diff --git a/resources/svg/microsoftword.svg b/resources/svg/microsoftword.svg new file mode 100644 index 0000000..78d2a52 --- /dev/null +++ b/resources/svg/microsoftword.svg @@ -0,0 +1 @@ +Microsoft Word icon diff --git a/resources/svg/microstrategy.svg b/resources/svg/microstrategy.svg new file mode 100644 index 0000000..6c0e866 --- /dev/null +++ b/resources/svg/microstrategy.svg @@ -0,0 +1 @@ +MicroStrategy icon \ No newline at end of file diff --git a/resources/svg/midi.svg b/resources/svg/midi.svg new file mode 100644 index 0000000..0db5054 --- /dev/null +++ b/resources/svg/midi.svg @@ -0,0 +1 @@ +MIDI icon diff --git a/resources/svg/minds.svg b/resources/svg/minds.svg new file mode 100644 index 0000000..113ff22 --- /dev/null +++ b/resources/svg/minds.svg @@ -0,0 +1 @@ +Minds icon \ No newline at end of file diff --git a/resources/svg/minecraft.svg b/resources/svg/minecraft.svg new file mode 100644 index 0000000..054dfbf --- /dev/null +++ b/resources/svg/minecraft.svg @@ -0,0 +1 @@ +Minecraft icon \ No newline at end of file diff --git a/resources/svg/minetest.svg b/resources/svg/minetest.svg new file mode 100644 index 0000000..db691b0 --- /dev/null +++ b/resources/svg/minetest.svg @@ -0,0 +1 @@ +Minetest icon \ No newline at end of file diff --git a/resources/svg/mini.svg b/resources/svg/mini.svg new file mode 100644 index 0000000..005bc4f --- /dev/null +++ b/resources/svg/mini.svg @@ -0,0 +1 @@ +Mini icon \ No newline at end of file diff --git a/resources/svg/minutemailer.svg b/resources/svg/minutemailer.svg new file mode 100644 index 0000000..8852a69 --- /dev/null +++ b/resources/svg/minutemailer.svg @@ -0,0 +1 @@ +Minutemailer icon \ No newline at end of file diff --git a/resources/svg/miro.svg b/resources/svg/miro.svg new file mode 100644 index 0000000..d16268d --- /dev/null +++ b/resources/svg/miro.svg @@ -0,0 +1 @@ +Miro icon \ No newline at end of file diff --git a/resources/svg/mitsubishi.svg b/resources/svg/mitsubishi.svg new file mode 100644 index 0000000..18a0bc3 --- /dev/null +++ b/resources/svg/mitsubishi.svg @@ -0,0 +1 @@ +Mitsubishi icon \ No newline at end of file diff --git a/resources/svg/mix.svg b/resources/svg/mix.svg new file mode 100644 index 0000000..e734fee --- /dev/null +++ b/resources/svg/mix.svg @@ -0,0 +1 @@ +Mix icon \ No newline at end of file diff --git a/resources/svg/mixcloud.svg b/resources/svg/mixcloud.svg new file mode 100644 index 0000000..fc91d49 --- /dev/null +++ b/resources/svg/mixcloud.svg @@ -0,0 +1 @@ +Mixcloud icon \ No newline at end of file diff --git a/resources/svg/mobx-state-tree.svg b/resources/svg/mobx-state-tree.svg new file mode 100644 index 0000000..98a85f4 --- /dev/null +++ b/resources/svg/mobx-state-tree.svg @@ -0,0 +1 @@ +MobX-State-Tree icon \ No newline at end of file diff --git a/resources/svg/mobx.svg b/resources/svg/mobx.svg new file mode 100644 index 0000000..6fa5939 --- /dev/null +++ b/resources/svg/mobx.svg @@ -0,0 +1 @@ +MobX icon \ No newline at end of file diff --git a/resources/svg/mocha.svg b/resources/svg/mocha.svg new file mode 100644 index 0000000..0d8729b --- /dev/null +++ b/resources/svg/mocha.svg @@ -0,0 +1 @@ +Mocha icon \ No newline at end of file diff --git a/resources/svg/modx.svg b/resources/svg/modx.svg new file mode 100644 index 0000000..4bce6e3 --- /dev/null +++ b/resources/svg/modx.svg @@ -0,0 +1 @@ +MODX icon \ No newline at end of file diff --git a/resources/svg/mojangstudios.svg b/resources/svg/mojangstudios.svg new file mode 100644 index 0000000..7b38ffe --- /dev/null +++ b/resources/svg/mojangstudios.svg @@ -0,0 +1 @@ +Mojang Studios icon \ No newline at end of file diff --git a/resources/svg/moleculer.svg b/resources/svg/moleculer.svg new file mode 100644 index 0000000..6e10376 --- /dev/null +++ b/resources/svg/moleculer.svg @@ -0,0 +1 @@ +Moleculer icon \ No newline at end of file diff --git a/resources/svg/momenteo.svg b/resources/svg/momenteo.svg new file mode 100644 index 0000000..4d4f9d3 --- /dev/null +++ b/resources/svg/momenteo.svg @@ -0,0 +1 @@ +Momenteo icon \ No newline at end of file diff --git a/resources/svg/monero.svg b/resources/svg/monero.svg new file mode 100644 index 0000000..b11836a --- /dev/null +++ b/resources/svg/monero.svg @@ -0,0 +1 @@ +Monero icon \ No newline at end of file diff --git a/resources/svg/mongodb.svg b/resources/svg/mongodb.svg new file mode 100644 index 0000000..39e7441 --- /dev/null +++ b/resources/svg/mongodb.svg @@ -0,0 +1 @@ +MongoDB icon \ No newline at end of file diff --git a/resources/svg/monkeytie.svg b/resources/svg/monkeytie.svg new file mode 100644 index 0000000..5f006d6 --- /dev/null +++ b/resources/svg/monkeytie.svg @@ -0,0 +1 @@ +monkey tie icon \ No newline at end of file diff --git a/resources/svg/monogram.svg b/resources/svg/monogram.svg new file mode 100644 index 0000000..c9e7e03 --- /dev/null +++ b/resources/svg/monogram.svg @@ -0,0 +1 @@ +Monogram icon \ No newline at end of file diff --git a/resources/svg/monster.svg b/resources/svg/monster.svg new file mode 100644 index 0000000..6210d49 --- /dev/null +++ b/resources/svg/monster.svg @@ -0,0 +1 @@ +Monster icon diff --git a/resources/svg/monzo.svg b/resources/svg/monzo.svg new file mode 100644 index 0000000..751a2f6 --- /dev/null +++ b/resources/svg/monzo.svg @@ -0,0 +1 @@ +Monzo icon \ No newline at end of file diff --git a/resources/svg/moo.svg b/resources/svg/moo.svg new file mode 100644 index 0000000..976c930 --- /dev/null +++ b/resources/svg/moo.svg @@ -0,0 +1 @@ +Moo icon \ No newline at end of file diff --git a/resources/svg/moscowmetro.svg b/resources/svg/moscowmetro.svg new file mode 100644 index 0000000..05c9be4 --- /dev/null +++ b/resources/svg/moscowmetro.svg @@ -0,0 +1 @@ +Moscow Metro icon \ No newline at end of file diff --git a/resources/svg/motorola.svg b/resources/svg/motorola.svg new file mode 100644 index 0000000..2664ac1 --- /dev/null +++ b/resources/svg/motorola.svg @@ -0,0 +1 @@ +Motorola icon \ No newline at end of file diff --git a/resources/svg/mozilla.svg b/resources/svg/mozilla.svg new file mode 100644 index 0000000..d0453fa --- /dev/null +++ b/resources/svg/mozilla.svg @@ -0,0 +1 @@ +Mozilla icon \ No newline at end of file diff --git a/resources/svg/mta.svg b/resources/svg/mta.svg new file mode 100644 index 0000000..818cbae --- /dev/null +++ b/resources/svg/mta.svg @@ -0,0 +1 @@ +MTA icon diff --git a/resources/svg/mtr.svg b/resources/svg/mtr.svg new file mode 100644 index 0000000..7c16646 --- /dev/null +++ b/resources/svg/mtr.svg @@ -0,0 +1 @@ +MTR icon \ No newline at end of file diff --git a/resources/svg/musescore.svg b/resources/svg/musescore.svg new file mode 100644 index 0000000..8806a75 --- /dev/null +++ b/resources/svg/musescore.svg @@ -0,0 +1 @@ +MuseScore icon \ No newline at end of file diff --git a/resources/svg/musicbrainz.svg b/resources/svg/musicbrainz.svg new file mode 100644 index 0000000..bb0f39f --- /dev/null +++ b/resources/svg/musicbrainz.svg @@ -0,0 +1 @@ +MusicBrainz icon \ No newline at end of file diff --git a/resources/svg/mxlinux.svg b/resources/svg/mxlinux.svg new file mode 100644 index 0000000..3a1468c --- /dev/null +++ b/resources/svg/mxlinux.svg @@ -0,0 +1 @@ +MX Linux icon \ No newline at end of file diff --git a/resources/svg/myanimelist.svg b/resources/svg/myanimelist.svg new file mode 100644 index 0000000..2bce63f --- /dev/null +++ b/resources/svg/myanimelist.svg @@ -0,0 +1 @@ +MyAnimeList icon \ No newline at end of file diff --git a/resources/svg/myob.svg b/resources/svg/myob.svg new file mode 100644 index 0000000..6123916 --- /dev/null +++ b/resources/svg/myob.svg @@ -0,0 +1 @@ +MYOB icon \ No newline at end of file diff --git a/resources/svg/myspace.svg b/resources/svg/myspace.svg new file mode 100644 index 0000000..1421412 --- /dev/null +++ b/resources/svg/myspace.svg @@ -0,0 +1 @@ +Myspace icon \ No newline at end of file diff --git a/resources/svg/mysql.svg b/resources/svg/mysql.svg new file mode 100644 index 0000000..d07f81e --- /dev/null +++ b/resources/svg/mysql.svg @@ -0,0 +1 @@ +MySQL icon \ No newline at end of file diff --git a/resources/svg/n26.svg b/resources/svg/n26.svg new file mode 100644 index 0000000..8958a60 --- /dev/null +++ b/resources/svg/n26.svg @@ -0,0 +1 @@ +N26 icon \ No newline at end of file diff --git a/resources/svg/namebase.svg b/resources/svg/namebase.svg new file mode 100644 index 0000000..5ceb8a1 --- /dev/null +++ b/resources/svg/namebase.svg @@ -0,0 +1 @@ +Namebase icon \ No newline at end of file diff --git a/resources/svg/namecheap.svg b/resources/svg/namecheap.svg new file mode 100644 index 0000000..bf9df63 --- /dev/null +++ b/resources/svg/namecheap.svg @@ -0,0 +1 @@ +Namecheap icon \ No newline at end of file diff --git a/resources/svg/nano.svg b/resources/svg/nano.svg new file mode 100644 index 0000000..f782cf2 --- /dev/null +++ b/resources/svg/nano.svg @@ -0,0 +1 @@ +Nano icon \ No newline at end of file diff --git a/resources/svg/nasa.svg b/resources/svg/nasa.svg new file mode 100644 index 0000000..69a0692 --- /dev/null +++ b/resources/svg/nasa.svg @@ -0,0 +1 @@ +NASA icon \ No newline at end of file diff --git a/resources/svg/nationalgrid.svg b/resources/svg/nationalgrid.svg new file mode 100644 index 0000000..67d5231 --- /dev/null +++ b/resources/svg/nationalgrid.svg @@ -0,0 +1 @@ +National Grid icon \ No newline at end of file diff --git a/resources/svg/nativescript.svg b/resources/svg/nativescript.svg new file mode 100644 index 0000000..37fdb08 --- /dev/null +++ b/resources/svg/nativescript.svg @@ -0,0 +1 @@ +NativeScript icon \ No newline at end of file diff --git a/resources/svg/naver.svg b/resources/svg/naver.svg new file mode 100644 index 0000000..3ae572e --- /dev/null +++ b/resources/svg/naver.svg @@ -0,0 +1 @@ +Naver icon \ No newline at end of file diff --git a/resources/svg/nba.svg b/resources/svg/nba.svg new file mode 100644 index 0000000..3fa0bc3 --- /dev/null +++ b/resources/svg/nba.svg @@ -0,0 +1 @@ +NBA icon \ No newline at end of file diff --git a/resources/svg/nbb.svg b/resources/svg/nbb.svg new file mode 100644 index 0000000..82cb2b6 --- /dev/null +++ b/resources/svg/nbb.svg @@ -0,0 +1 @@ +NBB icon \ No newline at end of file diff --git a/resources/svg/ndr.svg b/resources/svg/ndr.svg new file mode 100644 index 0000000..8c297f7 --- /dev/null +++ b/resources/svg/ndr.svg @@ -0,0 +1 @@ +NDR icon diff --git a/resources/svg/nec.svg b/resources/svg/nec.svg new file mode 100644 index 0000000..142fe69 --- /dev/null +++ b/resources/svg/nec.svg @@ -0,0 +1 @@ +NEC icon \ No newline at end of file diff --git a/resources/svg/neo4j.svg b/resources/svg/neo4j.svg new file mode 100644 index 0000000..7eb456b --- /dev/null +++ b/resources/svg/neo4j.svg @@ -0,0 +1 @@ +Neo4j icon \ No newline at end of file diff --git a/resources/svg/neovim.svg b/resources/svg/neovim.svg new file mode 100644 index 0000000..8d8b8fc --- /dev/null +++ b/resources/svg/neovim.svg @@ -0,0 +1 @@ +Neovim icon \ No newline at end of file diff --git a/resources/svg/nestjs.svg b/resources/svg/nestjs.svg new file mode 100644 index 0000000..75ae04a --- /dev/null +++ b/resources/svg/nestjs.svg @@ -0,0 +1 @@ +NestJS icon \ No newline at end of file diff --git a/resources/svg/netapp.svg b/resources/svg/netapp.svg new file mode 100644 index 0000000..dd7a248 --- /dev/null +++ b/resources/svg/netapp.svg @@ -0,0 +1 @@ +NetApp icon diff --git a/resources/svg/netflix.svg b/resources/svg/netflix.svg new file mode 100644 index 0000000..f8d1476 --- /dev/null +++ b/resources/svg/netflix.svg @@ -0,0 +1 @@ +Netflix icon \ No newline at end of file diff --git a/resources/svg/netlify.svg b/resources/svg/netlify.svg new file mode 100644 index 0000000..a06e7cf --- /dev/null +++ b/resources/svg/netlify.svg @@ -0,0 +1 @@ +Netlify icon \ No newline at end of file diff --git a/resources/svg/newjapanpro-wrestling.svg b/resources/svg/newjapanpro-wrestling.svg new file mode 100644 index 0000000..8f2667c --- /dev/null +++ b/resources/svg/newjapanpro-wrestling.svg @@ -0,0 +1 @@ +New Japan Pro-Wrestling icon \ No newline at end of file diff --git a/resources/svg/newrelic.svg b/resources/svg/newrelic.svg new file mode 100644 index 0000000..16606cd --- /dev/null +++ b/resources/svg/newrelic.svg @@ -0,0 +1 @@ +New Relic icon \ No newline at end of file diff --git a/resources/svg/newyorktimes.svg b/resources/svg/newyorktimes.svg new file mode 100644 index 0000000..04d67c8 --- /dev/null +++ b/resources/svg/newyorktimes.svg @@ -0,0 +1 @@ +New York Times icon \ No newline at end of file diff --git a/resources/svg/next-dot-js.svg b/resources/svg/next-dot-js.svg new file mode 100644 index 0000000..9cb583e --- /dev/null +++ b/resources/svg/next-dot-js.svg @@ -0,0 +1 @@ +Next.js icon \ No newline at end of file diff --git a/resources/svg/nextcloud.svg b/resources/svg/nextcloud.svg new file mode 100644 index 0000000..938ab5f --- /dev/null +++ b/resources/svg/nextcloud.svg @@ -0,0 +1 @@ +Nextcloud icon \ No newline at end of file diff --git a/resources/svg/nextdoor.svg b/resources/svg/nextdoor.svg new file mode 100644 index 0000000..0342939 --- /dev/null +++ b/resources/svg/nextdoor.svg @@ -0,0 +1 @@ +Nextdoor icon \ No newline at end of file diff --git a/resources/svg/nfc.svg b/resources/svg/nfc.svg new file mode 100644 index 0000000..78d039d --- /dev/null +++ b/resources/svg/nfc.svg @@ -0,0 +1 @@ +NFC icon \ No newline at end of file diff --git a/resources/svg/nginx.svg b/resources/svg/nginx.svg new file mode 100644 index 0000000..33e3faa --- /dev/null +++ b/resources/svg/nginx.svg @@ -0,0 +1 @@ +NGINX icon \ No newline at end of file diff --git a/resources/svg/ngrok.svg b/resources/svg/ngrok.svg new file mode 100644 index 0000000..92a821b --- /dev/null +++ b/resources/svg/ngrok.svg @@ -0,0 +1 @@ +ngrok icon \ No newline at end of file diff --git a/resources/svg/niconico.svg b/resources/svg/niconico.svg new file mode 100644 index 0000000..0ed538c --- /dev/null +++ b/resources/svg/niconico.svg @@ -0,0 +1 @@ +niconico icon diff --git a/resources/svg/nim.svg b/resources/svg/nim.svg new file mode 100644 index 0000000..707c436 --- /dev/null +++ b/resources/svg/nim.svg @@ -0,0 +1 @@ +Nim icon \ No newline at end of file diff --git a/resources/svg/nintendo.svg b/resources/svg/nintendo.svg new file mode 100644 index 0000000..246161e --- /dev/null +++ b/resources/svg/nintendo.svg @@ -0,0 +1 @@ +Nintendo icon \ No newline at end of file diff --git a/resources/svg/nintendo3ds.svg b/resources/svg/nintendo3ds.svg new file mode 100644 index 0000000..38238ce --- /dev/null +++ b/resources/svg/nintendo3ds.svg @@ -0,0 +1 @@ +Nintendo 3DS icon \ No newline at end of file diff --git a/resources/svg/nintendogamecube.svg b/resources/svg/nintendogamecube.svg new file mode 100644 index 0000000..ccc7127 --- /dev/null +++ b/resources/svg/nintendogamecube.svg @@ -0,0 +1 @@ +Nintendo GameCube icon \ No newline at end of file diff --git a/resources/svg/nintendonetwork.svg b/resources/svg/nintendonetwork.svg new file mode 100644 index 0000000..f6d93f8 --- /dev/null +++ b/resources/svg/nintendonetwork.svg @@ -0,0 +1 @@ +Nintendo Network icon \ No newline at end of file diff --git a/resources/svg/nintendoswitch.svg b/resources/svg/nintendoswitch.svg new file mode 100644 index 0000000..4231867 --- /dev/null +++ b/resources/svg/nintendoswitch.svg @@ -0,0 +1 @@ +Nintendo Switch icon \ No newline at end of file diff --git a/resources/svg/nissan.svg b/resources/svg/nissan.svg new file mode 100644 index 0000000..ac78b74 --- /dev/null +++ b/resources/svg/nissan.svg @@ -0,0 +1 @@ +Nissan icon \ No newline at end of file diff --git a/resources/svg/nixos.svg b/resources/svg/nixos.svg new file mode 100644 index 0000000..36dc078 --- /dev/null +++ b/resources/svg/nixos.svg @@ -0,0 +1 @@ +NixOS icon diff --git a/resources/svg/node-dot-js.svg b/resources/svg/node-dot-js.svg new file mode 100644 index 0000000..f279aff --- /dev/null +++ b/resources/svg/node-dot-js.svg @@ -0,0 +1 @@ +Node.js icon \ No newline at end of file diff --git a/resources/svg/node-red.svg b/resources/svg/node-red.svg new file mode 100644 index 0000000..92e8480 --- /dev/null +++ b/resources/svg/node-red.svg @@ -0,0 +1 @@ +Node-RED icon \ No newline at end of file diff --git a/resources/svg/nodemon.svg b/resources/svg/nodemon.svg new file mode 100644 index 0000000..768aeb4 --- /dev/null +++ b/resources/svg/nodemon.svg @@ -0,0 +1 @@ +Nodemon icon \ No newline at end of file diff --git a/resources/svg/nokia.svg b/resources/svg/nokia.svg new file mode 100644 index 0000000..39d453b --- /dev/null +++ b/resources/svg/nokia.svg @@ -0,0 +1 @@ +Nokia icon \ No newline at end of file diff --git a/resources/svg/norwegian.svg b/resources/svg/norwegian.svg new file mode 100644 index 0000000..36ca34e --- /dev/null +++ b/resources/svg/norwegian.svg @@ -0,0 +1 @@ +Norwegian icon \ No newline at end of file diff --git a/resources/svg/notepadplusplus.svg b/resources/svg/notepadplusplus.svg new file mode 100644 index 0000000..d32aa2f --- /dev/null +++ b/resources/svg/notepadplusplus.svg @@ -0,0 +1 @@ +Notepad++ icon \ No newline at end of file diff --git a/resources/svg/notion.svg b/resources/svg/notion.svg new file mode 100644 index 0000000..f166c5e --- /dev/null +++ b/resources/svg/notion.svg @@ -0,0 +1 @@ +Notion icon \ No newline at end of file diff --git a/resources/svg/notist.svg b/resources/svg/notist.svg new file mode 100644 index 0000000..50b0b4a --- /dev/null +++ b/resources/svg/notist.svg @@ -0,0 +1 @@ +Notist icon \ No newline at end of file diff --git a/resources/svg/nounproject.svg b/resources/svg/nounproject.svg new file mode 100644 index 0000000..5eb101e --- /dev/null +++ b/resources/svg/nounproject.svg @@ -0,0 +1 @@ +Noun Project icon \ No newline at end of file diff --git a/resources/svg/npm.svg b/resources/svg/npm.svg new file mode 100644 index 0000000..6105d61 --- /dev/null +++ b/resources/svg/npm.svg @@ -0,0 +1 @@ +npm icon \ No newline at end of file diff --git a/resources/svg/nrwl.svg b/resources/svg/nrwl.svg new file mode 100644 index 0000000..37d7164 --- /dev/null +++ b/resources/svg/nrwl.svg @@ -0,0 +1 @@ +Nrwl icon \ No newline at end of file diff --git a/resources/svg/nubank.svg b/resources/svg/nubank.svg new file mode 100644 index 0000000..fa1f511 --- /dev/null +++ b/resources/svg/nubank.svg @@ -0,0 +1 @@ +Nubank icon \ No newline at end of file diff --git a/resources/svg/nucleo.svg b/resources/svg/nucleo.svg new file mode 100644 index 0000000..ae5d3e7 --- /dev/null +++ b/resources/svg/nucleo.svg @@ -0,0 +1 @@ +Nucleo icon \ No newline at end of file diff --git a/resources/svg/nuget.svg b/resources/svg/nuget.svg new file mode 100644 index 0000000..e7afb88 --- /dev/null +++ b/resources/svg/nuget.svg @@ -0,0 +1 @@ +NuGet icon \ No newline at end of file diff --git a/resources/svg/nuke.svg b/resources/svg/nuke.svg new file mode 100644 index 0000000..7ef9304 --- /dev/null +++ b/resources/svg/nuke.svg @@ -0,0 +1 @@ +Nuke icon \ No newline at end of file diff --git a/resources/svg/numba.svg b/resources/svg/numba.svg new file mode 100644 index 0000000..b4be1c5 --- /dev/null +++ b/resources/svg/numba.svg @@ -0,0 +1 @@ +Numba icon \ No newline at end of file diff --git a/resources/svg/numpy.svg b/resources/svg/numpy.svg new file mode 100644 index 0000000..1d8d83c --- /dev/null +++ b/resources/svg/numpy.svg @@ -0,0 +1 @@ +NumPy icon \ No newline at end of file diff --git a/resources/svg/nutanix.svg b/resources/svg/nutanix.svg new file mode 100644 index 0000000..5a2bdf5 --- /dev/null +++ b/resources/svg/nutanix.svg @@ -0,0 +1 @@ +Nutanix icon \ No newline at end of file diff --git a/resources/svg/nuxt-dot-js.svg b/resources/svg/nuxt-dot-js.svg new file mode 100644 index 0000000..909f1cd --- /dev/null +++ b/resources/svg/nuxt-dot-js.svg @@ -0,0 +1 @@ +Nuxt.js icon \ No newline at end of file diff --git a/resources/svg/nvidia.svg b/resources/svg/nvidia.svg new file mode 100644 index 0000000..fc1f332 --- /dev/null +++ b/resources/svg/nvidia.svg @@ -0,0 +1 @@ +NVIDIA icon \ No newline at end of file diff --git a/resources/svg/nx.svg b/resources/svg/nx.svg new file mode 100644 index 0000000..942bdab --- /dev/null +++ b/resources/svg/nx.svg @@ -0,0 +1 @@ +Nx icon \ No newline at end of file diff --git a/resources/svg/observable.svg b/resources/svg/observable.svg new file mode 100644 index 0000000..cd3165e --- /dev/null +++ b/resources/svg/observable.svg @@ -0,0 +1 @@ +Observable icon \ No newline at end of file diff --git a/resources/svg/obsstudio.svg b/resources/svg/obsstudio.svg new file mode 100644 index 0000000..5f53c1f --- /dev/null +++ b/resources/svg/obsstudio.svg @@ -0,0 +1 @@ +OBS Studio icon \ No newline at end of file diff --git a/resources/svg/ocaml.svg b/resources/svg/ocaml.svg new file mode 100644 index 0000000..9bfde33 --- /dev/null +++ b/resources/svg/ocaml.svg @@ -0,0 +1 @@ +OCaml icon \ No newline at end of file diff --git a/resources/svg/octave.svg b/resources/svg/octave.svg new file mode 100644 index 0000000..a5d5de9 --- /dev/null +++ b/resources/svg/octave.svg @@ -0,0 +1 @@ +Octave icon \ No newline at end of file diff --git a/resources/svg/octopusdeploy.svg b/resources/svg/octopusdeploy.svg new file mode 100644 index 0000000..f56556c --- /dev/null +++ b/resources/svg/octopusdeploy.svg @@ -0,0 +1 @@ +Octopus Deploy icon \ No newline at end of file diff --git a/resources/svg/oculus.svg b/resources/svg/oculus.svg new file mode 100644 index 0000000..8b6f727 --- /dev/null +++ b/resources/svg/oculus.svg @@ -0,0 +1 @@ +Oculus icon \ No newline at end of file diff --git a/resources/svg/odnoklassniki.svg b/resources/svg/odnoklassniki.svg new file mode 100644 index 0000000..be0811b --- /dev/null +++ b/resources/svg/odnoklassniki.svg @@ -0,0 +1 @@ +Odnoklassniki icon \ No newline at end of file diff --git a/resources/svg/okcupid.svg b/resources/svg/okcupid.svg new file mode 100644 index 0000000..04f5269 --- /dev/null +++ b/resources/svg/okcupid.svg @@ -0,0 +1 @@ +okcupid icon \ No newline at end of file diff --git a/resources/svg/okta.svg b/resources/svg/okta.svg new file mode 100644 index 0000000..064b733 --- /dev/null +++ b/resources/svg/okta.svg @@ -0,0 +1 @@ +Okta icon \ No newline at end of file diff --git a/resources/svg/oneplus.svg b/resources/svg/oneplus.svg new file mode 100644 index 0000000..32b4809 --- /dev/null +++ b/resources/svg/oneplus.svg @@ -0,0 +1 @@ +OnePlus icon diff --git a/resources/svg/onlyfans.svg b/resources/svg/onlyfans.svg new file mode 100644 index 0000000..6cd47eb --- /dev/null +++ b/resources/svg/onlyfans.svg @@ -0,0 +1 @@ +OnlyFans icon \ No newline at end of file diff --git a/resources/svg/onstar.svg b/resources/svg/onstar.svg new file mode 100644 index 0000000..310cc1c --- /dev/null +++ b/resources/svg/onstar.svg @@ -0,0 +1 @@ +OnStar icon \ No newline at end of file diff --git a/resources/svg/opel.svg b/resources/svg/opel.svg new file mode 100644 index 0000000..728df75 --- /dev/null +++ b/resources/svg/opel.svg @@ -0,0 +1 @@ +Opel icon \ No newline at end of file diff --git a/resources/svg/openaccess.svg b/resources/svg/openaccess.svg new file mode 100644 index 0000000..327bf22 --- /dev/null +++ b/resources/svg/openaccess.svg @@ -0,0 +1 @@ +Open Access icon \ No newline at end of file diff --git a/resources/svg/openai.svg b/resources/svg/openai.svg new file mode 100644 index 0000000..e614227 --- /dev/null +++ b/resources/svg/openai.svg @@ -0,0 +1 @@ +OpenAI icon \ No newline at end of file diff --git a/resources/svg/openaigym.svg b/resources/svg/openaigym.svg new file mode 100644 index 0000000..8f12d74 --- /dev/null +++ b/resources/svg/openaigym.svg @@ -0,0 +1 @@ +OpenAI Gym icon \ No newline at end of file diff --git a/resources/svg/openapiinitiative.svg b/resources/svg/openapiinitiative.svg new file mode 100644 index 0000000..2bfd58c --- /dev/null +++ b/resources/svg/openapiinitiative.svg @@ -0,0 +1 @@ +OpenAPI Initiative icon \ No newline at end of file diff --git a/resources/svg/openbadges.svg b/resources/svg/openbadges.svg new file mode 100644 index 0000000..35be4b6 --- /dev/null +++ b/resources/svg/openbadges.svg @@ -0,0 +1 @@ +Open Badges icon \ No newline at end of file diff --git a/resources/svg/openbsd.svg b/resources/svg/openbsd.svg new file mode 100644 index 0000000..0da0c44 --- /dev/null +++ b/resources/svg/openbsd.svg @@ -0,0 +1 @@ +OpenBSD icon diff --git a/resources/svg/openbugbounty.svg b/resources/svg/openbugbounty.svg new file mode 100644 index 0000000..a54f3d8 --- /dev/null +++ b/resources/svg/openbugbounty.svg @@ -0,0 +1 @@ +Open Bug Bounty icon \ No newline at end of file diff --git a/resources/svg/opencollective.svg b/resources/svg/opencollective.svg new file mode 100644 index 0000000..32582f2 --- /dev/null +++ b/resources/svg/opencollective.svg @@ -0,0 +1 @@ +Open Collective icon \ No newline at end of file diff --git a/resources/svg/opencontainersinitiative.svg b/resources/svg/opencontainersinitiative.svg new file mode 100644 index 0000000..239954c --- /dev/null +++ b/resources/svg/opencontainersinitiative.svg @@ -0,0 +1 @@ +Open Containers Initiative icon diff --git a/resources/svg/opencv.svg b/resources/svg/opencv.svg new file mode 100644 index 0000000..ea45a4f --- /dev/null +++ b/resources/svg/opencv.svg @@ -0,0 +1 @@ +OpenCV icon \ No newline at end of file diff --git a/resources/svg/openfaas.svg b/resources/svg/openfaas.svg new file mode 100644 index 0000000..df23237 --- /dev/null +++ b/resources/svg/openfaas.svg @@ -0,0 +1 @@ +OpenFaaS icon \ No newline at end of file diff --git a/resources/svg/opengl.svg b/resources/svg/opengl.svg new file mode 100644 index 0000000..7410c63 --- /dev/null +++ b/resources/svg/opengl.svg @@ -0,0 +1 @@ +OpenGL icon \ No newline at end of file diff --git a/resources/svg/openid.svg b/resources/svg/openid.svg new file mode 100644 index 0000000..0747c36 --- /dev/null +++ b/resources/svg/openid.svg @@ -0,0 +1 @@ +OpenID icon \ No newline at end of file diff --git a/resources/svg/openlayers.svg b/resources/svg/openlayers.svg new file mode 100644 index 0000000..6c3bce1 --- /dev/null +++ b/resources/svg/openlayers.svg @@ -0,0 +1 @@ +Openlayers icon \ No newline at end of file diff --git a/resources/svg/opennebula.svg b/resources/svg/opennebula.svg new file mode 100644 index 0000000..39aaa7c --- /dev/null +++ b/resources/svg/opennebula.svg @@ -0,0 +1 @@ +Open Nebula icon \ No newline at end of file diff --git a/resources/svg/opensourceinitiative.svg b/resources/svg/opensourceinitiative.svg new file mode 100644 index 0000000..66960e6 --- /dev/null +++ b/resources/svg/opensourceinitiative.svg @@ -0,0 +1 @@ +Open Source Initiative icon \ No newline at end of file diff --git a/resources/svg/openssl.svg b/resources/svg/openssl.svg new file mode 100644 index 0000000..930e602 --- /dev/null +++ b/resources/svg/openssl.svg @@ -0,0 +1 @@ +OpenSSL icon \ No newline at end of file diff --git a/resources/svg/openstack.svg b/resources/svg/openstack.svg new file mode 100644 index 0000000..bc2e756 --- /dev/null +++ b/resources/svg/openstack.svg @@ -0,0 +1 @@ +OpenStack icon \ No newline at end of file diff --git a/resources/svg/openstreetmap.svg b/resources/svg/openstreetmap.svg new file mode 100644 index 0000000..87e521f --- /dev/null +++ b/resources/svg/openstreetmap.svg @@ -0,0 +1 @@ +OpenStreetMap icon \ No newline at end of file diff --git a/resources/svg/opensuse.svg b/resources/svg/opensuse.svg new file mode 100644 index 0000000..fec28c2 --- /dev/null +++ b/resources/svg/opensuse.svg @@ -0,0 +1 @@ +openSUSE icon \ No newline at end of file diff --git a/resources/svg/openvpn.svg b/resources/svg/openvpn.svg new file mode 100644 index 0000000..5646884 --- /dev/null +++ b/resources/svg/openvpn.svg @@ -0,0 +1 @@ +OpenVPN icon \ No newline at end of file diff --git a/resources/svg/opera.svg b/resources/svg/opera.svg new file mode 100644 index 0000000..c0c9da1 --- /dev/null +++ b/resources/svg/opera.svg @@ -0,0 +1 @@ +Opera icon \ No newline at end of file diff --git a/resources/svg/opnsense.svg b/resources/svg/opnsense.svg new file mode 100644 index 0000000..f703439 --- /dev/null +++ b/resources/svg/opnsense.svg @@ -0,0 +1 @@ +OPNSense icon \ No newline at end of file diff --git a/resources/svg/opsgenie.svg b/resources/svg/opsgenie.svg new file mode 100644 index 0000000..77511cf --- /dev/null +++ b/resources/svg/opsgenie.svg @@ -0,0 +1 @@ +Opsgenie icon \ No newline at end of file diff --git a/resources/svg/opslevel.svg b/resources/svg/opslevel.svg new file mode 100644 index 0000000..2ef9b4a --- /dev/null +++ b/resources/svg/opslevel.svg @@ -0,0 +1 @@ +OpsLevel icon diff --git a/resources/svg/oracle.svg b/resources/svg/oracle.svg new file mode 100644 index 0000000..acb298e --- /dev/null +++ b/resources/svg/oracle.svg @@ -0,0 +1 @@ +Oracle icon \ No newline at end of file diff --git a/resources/svg/orcid.svg b/resources/svg/orcid.svg new file mode 100644 index 0000000..ddc942d --- /dev/null +++ b/resources/svg/orcid.svg @@ -0,0 +1 @@ +ORCID icon \ No newline at end of file diff --git a/resources/svg/org.svg b/resources/svg/org.svg new file mode 100644 index 0000000..7029b74 --- /dev/null +++ b/resources/svg/org.svg @@ -0,0 +1 @@ +Org icon diff --git a/resources/svg/origin.svg b/resources/svg/origin.svg new file mode 100644 index 0000000..d9f3dde --- /dev/null +++ b/resources/svg/origin.svg @@ -0,0 +1 @@ +Origin icon \ No newline at end of file diff --git a/resources/svg/osano.svg b/resources/svg/osano.svg new file mode 100644 index 0000000..721b2f5 --- /dev/null +++ b/resources/svg/osano.svg @@ -0,0 +1 @@ +Osano icon \ No newline at end of file diff --git a/resources/svg/oshkosh.svg b/resources/svg/oshkosh.svg new file mode 100644 index 0000000..06c2bf0 --- /dev/null +++ b/resources/svg/oshkosh.svg @@ -0,0 +1 @@ +Oshkosh icon \ No newline at end of file diff --git a/resources/svg/osmc.svg b/resources/svg/osmc.svg new file mode 100644 index 0000000..795925b --- /dev/null +++ b/resources/svg/osmc.svg @@ -0,0 +1 @@ +OSMC icon \ No newline at end of file diff --git a/resources/svg/overcast.svg b/resources/svg/overcast.svg new file mode 100644 index 0000000..a713705 --- /dev/null +++ b/resources/svg/overcast.svg @@ -0,0 +1 @@ +Overcast icon \ No newline at end of file diff --git a/resources/svg/overleaf.svg b/resources/svg/overleaf.svg new file mode 100644 index 0000000..4ed88e7 --- /dev/null +++ b/resources/svg/overleaf.svg @@ -0,0 +1 @@ +Overleaf icon \ No newline at end of file diff --git a/resources/svg/ovh.svg b/resources/svg/ovh.svg new file mode 100644 index 0000000..7e67ee5 --- /dev/null +++ b/resources/svg/ovh.svg @@ -0,0 +1 @@ +OVH icon \ No newline at end of file diff --git a/resources/svg/owasp.svg b/resources/svg/owasp.svg new file mode 100644 index 0000000..4499f30 --- /dev/null +++ b/resources/svg/owasp.svg @@ -0,0 +1 @@ +OWASP icon \ No newline at end of file diff --git a/resources/svg/oxygen.svg b/resources/svg/oxygen.svg new file mode 100644 index 0000000..c18b6c7 --- /dev/null +++ b/resources/svg/oxygen.svg @@ -0,0 +1 @@ +Oxygen icon \ No newline at end of file diff --git a/resources/svg/oyo.svg b/resources/svg/oyo.svg new file mode 100644 index 0000000..fa0191c --- /dev/null +++ b/resources/svg/oyo.svg @@ -0,0 +1 @@ +OYO icon \ No newline at end of file diff --git a/resources/svg/p5-dot-js.svg b/resources/svg/p5-dot-js.svg new file mode 100644 index 0000000..fbadf70 --- /dev/null +++ b/resources/svg/p5-dot-js.svg @@ -0,0 +1 @@ +p5.js icon \ No newline at end of file diff --git a/resources/svg/packagist.svg b/resources/svg/packagist.svg new file mode 100644 index 0000000..a80a65f --- /dev/null +++ b/resources/svg/packagist.svg @@ -0,0 +1 @@ +Packagist icon \ No newline at end of file diff --git a/resources/svg/pagekit.svg b/resources/svg/pagekit.svg new file mode 100644 index 0000000..2852f20 --- /dev/null +++ b/resources/svg/pagekit.svg @@ -0,0 +1 @@ +Pagekit icon \ No newline at end of file diff --git a/resources/svg/pagerduty.svg b/resources/svg/pagerduty.svg new file mode 100644 index 0000000..2d7fec0 --- /dev/null +++ b/resources/svg/pagerduty.svg @@ -0,0 +1 @@ +PagerDuty icon \ No newline at end of file diff --git a/resources/svg/pagespeedinsights.svg b/resources/svg/pagespeedinsights.svg new file mode 100644 index 0000000..bdb792b --- /dev/null +++ b/resources/svg/pagespeedinsights.svg @@ -0,0 +1 @@ +PageSpeed Insights icon \ No newline at end of file diff --git a/resources/svg/pagseguro.svg b/resources/svg/pagseguro.svg new file mode 100644 index 0000000..b2d0ddf --- /dev/null +++ b/resources/svg/pagseguro.svg @@ -0,0 +1 @@ +PagSeguro icon \ No newline at end of file diff --git a/resources/svg/palantir.svg b/resources/svg/palantir.svg new file mode 100644 index 0000000..04e53cf --- /dev/null +++ b/resources/svg/palantir.svg @@ -0,0 +1 @@ +Palantir icon \ No newline at end of file diff --git a/resources/svg/paloaltosoftware.svg b/resources/svg/paloaltosoftware.svg new file mode 100644 index 0000000..52eba65 --- /dev/null +++ b/resources/svg/paloaltosoftware.svg @@ -0,0 +1 @@ +Palo Alto Software icon \ No newline at end of file diff --git a/resources/svg/pandas.svg b/resources/svg/pandas.svg new file mode 100644 index 0000000..88995b8 --- /dev/null +++ b/resources/svg/pandas.svg @@ -0,0 +1 @@ +pandas icon \ No newline at end of file diff --git a/resources/svg/pandora.svg b/resources/svg/pandora.svg new file mode 100644 index 0000000..dce8928 --- /dev/null +++ b/resources/svg/pandora.svg @@ -0,0 +1 @@ +Pandora icon diff --git a/resources/svg/pantheon.svg b/resources/svg/pantheon.svg new file mode 100644 index 0000000..de3ccb1 --- /dev/null +++ b/resources/svg/pantheon.svg @@ -0,0 +1 @@ +Pantheon icon \ No newline at end of file diff --git a/resources/svg/paritysubstrate.svg b/resources/svg/paritysubstrate.svg new file mode 100644 index 0000000..33dbf44 --- /dev/null +++ b/resources/svg/paritysubstrate.svg @@ -0,0 +1 @@ +Parity Substrate icon diff --git a/resources/svg/parse-dot-ly.svg b/resources/svg/parse-dot-ly.svg new file mode 100644 index 0000000..a0f7c7b --- /dev/null +++ b/resources/svg/parse-dot-ly.svg @@ -0,0 +1 @@ +Parse.ly icon \ No newline at end of file diff --git a/resources/svg/pastebin.svg b/resources/svg/pastebin.svg new file mode 100644 index 0000000..5abac0a --- /dev/null +++ b/resources/svg/pastebin.svg @@ -0,0 +1 @@ +Pastebin icon \ No newline at end of file diff --git a/resources/svg/patreon.svg b/resources/svg/patreon.svg new file mode 100644 index 0000000..457c745 --- /dev/null +++ b/resources/svg/patreon.svg @@ -0,0 +1 @@ +Patreon icon \ No newline at end of file diff --git a/resources/svg/payoneer.svg b/resources/svg/payoneer.svg new file mode 100644 index 0000000..1ac50fb --- /dev/null +++ b/resources/svg/payoneer.svg @@ -0,0 +1 @@ +Payoneer icon diff --git a/resources/svg/paypal.svg b/resources/svg/paypal.svg new file mode 100644 index 0000000..83d1122 --- /dev/null +++ b/resources/svg/paypal.svg @@ -0,0 +1 @@ +PayPal icon \ No newline at end of file diff --git a/resources/svg/paytm.svg b/resources/svg/paytm.svg new file mode 100644 index 0000000..2ae36f5 --- /dev/null +++ b/resources/svg/paytm.svg @@ -0,0 +1 @@ +Paytm icon \ No newline at end of file diff --git a/resources/svg/pcgamingwiki.svg b/resources/svg/pcgamingwiki.svg new file mode 100644 index 0000000..7551a3f --- /dev/null +++ b/resources/svg/pcgamingwiki.svg @@ -0,0 +1 @@ +PCGamingWiki icon \ No newline at end of file diff --git a/resources/svg/peertube.svg b/resources/svg/peertube.svg new file mode 100644 index 0000000..f15c68d --- /dev/null +++ b/resources/svg/peertube.svg @@ -0,0 +1 @@ +PeerTube icon \ No newline at end of file diff --git a/resources/svg/pegasusairlines.svg b/resources/svg/pegasusairlines.svg new file mode 100644 index 0000000..4a7c05e --- /dev/null +++ b/resources/svg/pegasusairlines.svg @@ -0,0 +1 @@ +Pegasus Airlines icon \ No newline at end of file diff --git a/resources/svg/pelican.svg b/resources/svg/pelican.svg new file mode 100644 index 0000000..24c8068 --- /dev/null +++ b/resources/svg/pelican.svg @@ -0,0 +1 @@ +Pelican icon \ No newline at end of file diff --git a/resources/svg/peloton.svg b/resources/svg/peloton.svg new file mode 100644 index 0000000..1e5f5f8 --- /dev/null +++ b/resources/svg/peloton.svg @@ -0,0 +1 @@ +Peloton icon diff --git a/resources/svg/pepsi.svg b/resources/svg/pepsi.svg new file mode 100644 index 0000000..9400c02 --- /dev/null +++ b/resources/svg/pepsi.svg @@ -0,0 +1 @@ +Pepsi icon \ No newline at end of file diff --git a/resources/svg/periscope.svg b/resources/svg/periscope.svg new file mode 100644 index 0000000..77b755a --- /dev/null +++ b/resources/svg/periscope.svg @@ -0,0 +1 @@ +Periscope icon \ No newline at end of file diff --git a/resources/svg/perl.svg b/resources/svg/perl.svg new file mode 100644 index 0000000..934adb2 --- /dev/null +++ b/resources/svg/perl.svg @@ -0,0 +1 @@ +Perl icon \ No newline at end of file diff --git a/resources/svg/peugeot.svg b/resources/svg/peugeot.svg new file mode 100644 index 0000000..072e81a --- /dev/null +++ b/resources/svg/peugeot.svg @@ -0,0 +1 @@ +Peugeot icon \ No newline at end of file diff --git a/resources/svg/pexels.svg b/resources/svg/pexels.svg new file mode 100644 index 0000000..9b564d4 --- /dev/null +++ b/resources/svg/pexels.svg @@ -0,0 +1 @@ +Pexels icon diff --git a/resources/svg/pfsense.svg b/resources/svg/pfsense.svg new file mode 100644 index 0000000..4113429 --- /dev/null +++ b/resources/svg/pfsense.svg @@ -0,0 +1 @@ +pfSense icon \ No newline at end of file diff --git a/resources/svg/phabricator.svg b/resources/svg/phabricator.svg new file mode 100644 index 0000000..ab86e3b --- /dev/null +++ b/resources/svg/phabricator.svg @@ -0,0 +1 @@ +Phabricator icon \ No newline at end of file diff --git a/resources/svg/philipshue.svg b/resources/svg/philipshue.svg new file mode 100644 index 0000000..e1dec86 --- /dev/null +++ b/resources/svg/philipshue.svg @@ -0,0 +1 @@ +Philips Hue icon \ No newline at end of file diff --git a/resources/svg/phonepe.svg b/resources/svg/phonepe.svg new file mode 100644 index 0000000..4bb3820 --- /dev/null +++ b/resources/svg/phonepe.svg @@ -0,0 +1 @@ +PhonePe icon \ No newline at end of file diff --git a/resources/svg/photobucket.svg b/resources/svg/photobucket.svg new file mode 100644 index 0000000..5ffdcaf --- /dev/null +++ b/resources/svg/photobucket.svg @@ -0,0 +1 @@ +Photobucket icon \ No newline at end of file diff --git a/resources/svg/photocrowd.svg b/resources/svg/photocrowd.svg new file mode 100644 index 0000000..3a2be87 --- /dev/null +++ b/resources/svg/photocrowd.svg @@ -0,0 +1 @@ +Photocrowd icon \ No newline at end of file diff --git a/resources/svg/php.svg b/resources/svg/php.svg new file mode 100644 index 0000000..19c69d8 --- /dev/null +++ b/resources/svg/php.svg @@ -0,0 +1 @@ +PHP icon \ No newline at end of file diff --git a/resources/svg/phpstorm.svg b/resources/svg/phpstorm.svg new file mode 100644 index 0000000..8c320ac --- /dev/null +++ b/resources/svg/phpstorm.svg @@ -0,0 +1 @@ +PhpStorm icon \ No newline at end of file diff --git a/resources/svg/pi-hole.svg b/resources/svg/pi-hole.svg new file mode 100644 index 0000000..c3ed5b7 --- /dev/null +++ b/resources/svg/pi-hole.svg @@ -0,0 +1 @@ +Pi-hole icon \ No newline at end of file diff --git a/resources/svg/picarto-dot-tv.svg b/resources/svg/picarto-dot-tv.svg new file mode 100644 index 0000000..cbda694 --- /dev/null +++ b/resources/svg/picarto-dot-tv.svg @@ -0,0 +1 @@ +Picarto.TV icon \ No newline at end of file diff --git a/resources/svg/picnic.svg b/resources/svg/picnic.svg new file mode 100644 index 0000000..b3e851c --- /dev/null +++ b/resources/svg/picnic.svg @@ -0,0 +1 @@ +Picnic icon \ No newline at end of file diff --git a/resources/svg/picpay.svg b/resources/svg/picpay.svg new file mode 100644 index 0000000..9c5564f --- /dev/null +++ b/resources/svg/picpay.svg @@ -0,0 +1 @@ +PicPay icon \ No newline at end of file diff --git a/resources/svg/pimcore.svg b/resources/svg/pimcore.svg new file mode 100644 index 0000000..ebb16e2 --- /dev/null +++ b/resources/svg/pimcore.svg @@ -0,0 +1 @@ +Pimcore icon \ No newline at end of file diff --git a/resources/svg/pinboard.svg b/resources/svg/pinboard.svg new file mode 100644 index 0000000..d0984b4 --- /dev/null +++ b/resources/svg/pinboard.svg @@ -0,0 +1 @@ +Pinboard icon \ No newline at end of file diff --git a/resources/svg/pingdom.svg b/resources/svg/pingdom.svg new file mode 100644 index 0000000..349a364 --- /dev/null +++ b/resources/svg/pingdom.svg @@ -0,0 +1 @@ +Pingdom icon \ No newline at end of file diff --git a/resources/svg/pingup.svg b/resources/svg/pingup.svg new file mode 100644 index 0000000..2b6acec --- /dev/null +++ b/resources/svg/pingup.svg @@ -0,0 +1 @@ +Pingup icon \ No newline at end of file diff --git a/resources/svg/pinterest.svg b/resources/svg/pinterest.svg new file mode 100644 index 0000000..ff90554 --- /dev/null +++ b/resources/svg/pinterest.svg @@ -0,0 +1 @@ +Pinterest icon \ No newline at end of file diff --git a/resources/svg/pioneerdj.svg b/resources/svg/pioneerdj.svg new file mode 100644 index 0000000..cb11f89 --- /dev/null +++ b/resources/svg/pioneerdj.svg @@ -0,0 +1 @@ +Pioneer DJ icon \ No newline at end of file diff --git a/resources/svg/pivotaltracker.svg b/resources/svg/pivotaltracker.svg new file mode 100644 index 0000000..8bb9a56 --- /dev/null +++ b/resources/svg/pivotaltracker.svg @@ -0,0 +1 @@ +Pivotal Tracker icon \ No newline at end of file diff --git a/resources/svg/piwigo.svg b/resources/svg/piwigo.svg new file mode 100644 index 0000000..d9eeb8b --- /dev/null +++ b/resources/svg/piwigo.svg @@ -0,0 +1 @@ +Piwigo icon \ No newline at end of file diff --git a/resources/svg/pixabay.svg b/resources/svg/pixabay.svg new file mode 100644 index 0000000..7a3e3c2 --- /dev/null +++ b/resources/svg/pixabay.svg @@ -0,0 +1 @@ +Pixabay icon diff --git a/resources/svg/pixiv.svg b/resources/svg/pixiv.svg new file mode 100644 index 0000000..0857d96 --- /dev/null +++ b/resources/svg/pixiv.svg @@ -0,0 +1 @@ +pixiv icon \ No newline at end of file diff --git a/resources/svg/pjsip.svg b/resources/svg/pjsip.svg new file mode 100644 index 0000000..fc7b02a --- /dev/null +++ b/resources/svg/pjsip.svg @@ -0,0 +1 @@ +PJSIP icon \ No newline at end of file diff --git a/resources/svg/planet.svg b/resources/svg/planet.svg new file mode 100644 index 0000000..8807c48 --- /dev/null +++ b/resources/svg/planet.svg @@ -0,0 +1 @@ +Planet icon \ No newline at end of file diff --git a/resources/svg/plangrid.svg b/resources/svg/plangrid.svg new file mode 100644 index 0000000..5596e9f --- /dev/null +++ b/resources/svg/plangrid.svg @@ -0,0 +1 @@ +PlanGrid icon \ No newline at end of file diff --git a/resources/svg/platzi.svg b/resources/svg/platzi.svg new file mode 100644 index 0000000..a345d5a --- /dev/null +++ b/resources/svg/platzi.svg @@ -0,0 +1 @@ +Platzi icon \ No newline at end of file diff --git a/resources/svg/playcanvas.svg b/resources/svg/playcanvas.svg new file mode 100644 index 0000000..e3a7edf --- /dev/null +++ b/resources/svg/playcanvas.svg @@ -0,0 +1 @@ +PlayCanvas icon diff --git a/resources/svg/player-dot-me.svg b/resources/svg/player-dot-me.svg new file mode 100644 index 0000000..73ed932 --- /dev/null +++ b/resources/svg/player-dot-me.svg @@ -0,0 +1 @@ +Player.me icon \ No newline at end of file diff --git a/resources/svg/playerfm.svg b/resources/svg/playerfm.svg new file mode 100644 index 0000000..5c36753 --- /dev/null +++ b/resources/svg/playerfm.svg @@ -0,0 +1 @@ +Player FM icon \ No newline at end of file diff --git a/resources/svg/playstation.svg b/resources/svg/playstation.svg new file mode 100644 index 0000000..26760ff --- /dev/null +++ b/resources/svg/playstation.svg @@ -0,0 +1 @@ +PlayStation icon \ No newline at end of file diff --git a/resources/svg/playstation2.svg b/resources/svg/playstation2.svg new file mode 100644 index 0000000..34222fb --- /dev/null +++ b/resources/svg/playstation2.svg @@ -0,0 +1 @@ +PlayStation 2 icon \ No newline at end of file diff --git a/resources/svg/playstation3.svg b/resources/svg/playstation3.svg new file mode 100644 index 0000000..a1ca2f8 --- /dev/null +++ b/resources/svg/playstation3.svg @@ -0,0 +1 @@ +PlayStation 3 icon \ No newline at end of file diff --git a/resources/svg/playstation4.svg b/resources/svg/playstation4.svg new file mode 100644 index 0000000..b171f66 --- /dev/null +++ b/resources/svg/playstation4.svg @@ -0,0 +1 @@ +PlayStation 4 icon \ No newline at end of file diff --git a/resources/svg/playstation5.svg b/resources/svg/playstation5.svg new file mode 100644 index 0000000..c8a3a1c --- /dev/null +++ b/resources/svg/playstation5.svg @@ -0,0 +1 @@ +PlayStation 5 icon \ No newline at end of file diff --git a/resources/svg/playstationvita.svg b/resources/svg/playstationvita.svg new file mode 100644 index 0000000..18867b5 --- /dev/null +++ b/resources/svg/playstationvita.svg @@ -0,0 +1 @@ +PlayStation Vita icon \ No newline at end of file diff --git a/resources/svg/pleroma.svg b/resources/svg/pleroma.svg new file mode 100644 index 0000000..cdd7818 --- /dev/null +++ b/resources/svg/pleroma.svg @@ -0,0 +1 @@ +Pleroma icon \ No newline at end of file diff --git a/resources/svg/plesk.svg b/resources/svg/plesk.svg new file mode 100644 index 0000000..7ac781a --- /dev/null +++ b/resources/svg/plesk.svg @@ -0,0 +1 @@ +Plesk icon \ No newline at end of file diff --git a/resources/svg/plex.svg b/resources/svg/plex.svg new file mode 100644 index 0000000..009705a --- /dev/null +++ b/resources/svg/plex.svg @@ -0,0 +1 @@ +Plex icon \ No newline at end of file diff --git a/resources/svg/plotly.svg b/resources/svg/plotly.svg new file mode 100644 index 0000000..a98b902 --- /dev/null +++ b/resources/svg/plotly.svg @@ -0,0 +1 @@ +Plotly icon \ No newline at end of file diff --git a/resources/svg/pluralsight.svg b/resources/svg/pluralsight.svg new file mode 100644 index 0000000..dffbd2b --- /dev/null +++ b/resources/svg/pluralsight.svg @@ -0,0 +1 @@ +Pluralsight icon \ No newline at end of file diff --git a/resources/svg/plurk.svg b/resources/svg/plurk.svg new file mode 100644 index 0000000..2bf985a --- /dev/null +++ b/resources/svg/plurk.svg @@ -0,0 +1 @@ +Plurk icon \ No newline at end of file diff --git a/resources/svg/pluscodes.svg b/resources/svg/pluscodes.svg new file mode 100644 index 0000000..f4949f4 --- /dev/null +++ b/resources/svg/pluscodes.svg @@ -0,0 +1 @@ +Plus Codes icon \ No newline at end of file diff --git a/resources/svg/pm2.svg b/resources/svg/pm2.svg new file mode 100644 index 0000000..3fc7117 --- /dev/null +++ b/resources/svg/pm2.svg @@ -0,0 +1 @@ +PM2 icon \ No newline at end of file diff --git a/resources/svg/pocket.svg b/resources/svg/pocket.svg new file mode 100644 index 0000000..9b20a8b --- /dev/null +++ b/resources/svg/pocket.svg @@ -0,0 +1 @@ +Pocket icon \ No newline at end of file diff --git a/resources/svg/pocketcasts.svg b/resources/svg/pocketcasts.svg new file mode 100644 index 0000000..cc28eff --- /dev/null +++ b/resources/svg/pocketcasts.svg @@ -0,0 +1 @@ +Pocket Casts icon \ No newline at end of file diff --git a/resources/svg/podcastaddict.svg b/resources/svg/podcastaddict.svg new file mode 100644 index 0000000..47f2f16 --- /dev/null +++ b/resources/svg/podcastaddict.svg @@ -0,0 +1 @@ +Podcast Addict icon \ No newline at end of file diff --git a/resources/svg/podman.svg b/resources/svg/podman.svg new file mode 100644 index 0000000..7200d61 --- /dev/null +++ b/resources/svg/podman.svg @@ -0,0 +1 @@ +Podman icon \ No newline at end of file diff --git a/resources/svg/pointy.svg b/resources/svg/pointy.svg new file mode 100644 index 0000000..9f584b6 --- /dev/null +++ b/resources/svg/pointy.svg @@ -0,0 +1 @@ +Pointy icon \ No newline at end of file diff --git a/resources/svg/pokemon.svg b/resources/svg/pokemon.svg new file mode 100644 index 0000000..2ffb7bc --- /dev/null +++ b/resources/svg/pokemon.svg @@ -0,0 +1 @@ +Pokémon icon \ No newline at end of file diff --git a/resources/svg/poly.svg b/resources/svg/poly.svg new file mode 100644 index 0000000..ef367ae --- /dev/null +++ b/resources/svg/poly.svg @@ -0,0 +1 @@ +Poly icon \ No newline at end of file diff --git a/resources/svg/polymerproject.svg b/resources/svg/polymerproject.svg new file mode 100644 index 0000000..de1eef6 --- /dev/null +++ b/resources/svg/polymerproject.svg @@ -0,0 +1 @@ +Polymer Project icon diff --git a/resources/svg/pop_os.svg b/resources/svg/pop_os.svg new file mode 100644 index 0000000..e373337 --- /dev/null +++ b/resources/svg/pop_os.svg @@ -0,0 +1 @@ +Pop!_OS icon \ No newline at end of file diff --git a/resources/svg/porsche.svg b/resources/svg/porsche.svg new file mode 100644 index 0000000..132307b --- /dev/null +++ b/resources/svg/porsche.svg @@ -0,0 +1 @@ +Porsche icon diff --git a/resources/svg/postcss.svg b/resources/svg/postcss.svg new file mode 100644 index 0000000..c8f0fea --- /dev/null +++ b/resources/svg/postcss.svg @@ -0,0 +1 @@ +PostCSS icon \ No newline at end of file diff --git a/resources/svg/postgresql.svg b/resources/svg/postgresql.svg new file mode 100644 index 0000000..6a6a2da --- /dev/null +++ b/resources/svg/postgresql.svg @@ -0,0 +1 @@ +PostgreSQL icon \ No newline at end of file diff --git a/resources/svg/postman.svg b/resources/svg/postman.svg new file mode 100644 index 0000000..309a5f7 --- /dev/null +++ b/resources/svg/postman.svg @@ -0,0 +1 @@ +Postman icon \ No newline at end of file diff --git a/resources/svg/postmates.svg b/resources/svg/postmates.svg new file mode 100644 index 0000000..7325f5a --- /dev/null +++ b/resources/svg/postmates.svg @@ -0,0 +1 @@ +Postmates icon \ No newline at end of file diff --git a/resources/svg/powerbi.svg b/resources/svg/powerbi.svg new file mode 100644 index 0000000..46b87e7 --- /dev/null +++ b/resources/svg/powerbi.svg @@ -0,0 +1 @@ +Power BI icon \ No newline at end of file diff --git a/resources/svg/powers.svg b/resources/svg/powers.svg new file mode 100644 index 0000000..e307853 --- /dev/null +++ b/resources/svg/powers.svg @@ -0,0 +1 @@ +POWERS icon \ No newline at end of file diff --git a/resources/svg/powershell.svg b/resources/svg/powershell.svg new file mode 100644 index 0000000..5a4d5fa --- /dev/null +++ b/resources/svg/powershell.svg @@ -0,0 +1 @@ +PowerShell icon \ No newline at end of file diff --git a/resources/svg/pr-dot-co.svg b/resources/svg/pr-dot-co.svg new file mode 100644 index 0000000..6ff4b8a --- /dev/null +++ b/resources/svg/pr-dot-co.svg @@ -0,0 +1 @@ +pr.co icon \ No newline at end of file diff --git a/resources/svg/pre-commit.svg b/resources/svg/pre-commit.svg new file mode 100644 index 0000000..80ff200 --- /dev/null +++ b/resources/svg/pre-commit.svg @@ -0,0 +1 @@ +pre-commit icon \ No newline at end of file diff --git a/resources/svg/premierleague.svg b/resources/svg/premierleague.svg new file mode 100644 index 0000000..e95bee3 --- /dev/null +++ b/resources/svg/premierleague.svg @@ -0,0 +1 @@ +Premier League icon \ No newline at end of file diff --git a/resources/svg/prestashop.svg b/resources/svg/prestashop.svg new file mode 100644 index 0000000..979014e --- /dev/null +++ b/resources/svg/prestashop.svg @@ -0,0 +1 @@ +PrestaShop icon \ No newline at end of file diff --git a/resources/svg/presto.svg b/resources/svg/presto.svg new file mode 100644 index 0000000..40ceadf --- /dev/null +++ b/resources/svg/presto.svg @@ -0,0 +1 @@ +Presto icon \ No newline at end of file diff --git a/resources/svg/prettier.svg b/resources/svg/prettier.svg new file mode 100644 index 0000000..a0e037b --- /dev/null +++ b/resources/svg/prettier.svg @@ -0,0 +1 @@ +Prettier icon \ No newline at end of file diff --git a/resources/svg/prezi.svg b/resources/svg/prezi.svg new file mode 100644 index 0000000..5a202cc --- /dev/null +++ b/resources/svg/prezi.svg @@ -0,0 +1 @@ +Prezi icon \ No newline at end of file diff --git a/resources/svg/prime.svg b/resources/svg/prime.svg new file mode 100644 index 0000000..7f34b7a --- /dev/null +++ b/resources/svg/prime.svg @@ -0,0 +1 @@ +Prime icon \ No newline at end of file diff --git a/resources/svg/primevideo.svg b/resources/svg/primevideo.svg new file mode 100644 index 0000000..6f121bc --- /dev/null +++ b/resources/svg/primevideo.svg @@ -0,0 +1 @@ +Prime Video icon \ No newline at end of file diff --git a/resources/svg/prisma.svg b/resources/svg/prisma.svg new file mode 100644 index 0000000..141b0f6 --- /dev/null +++ b/resources/svg/prisma.svg @@ -0,0 +1 @@ +Prisma icon \ No newline at end of file diff --git a/resources/svg/prismic.svg b/resources/svg/prismic.svg new file mode 100644 index 0000000..e577ecb --- /dev/null +++ b/resources/svg/prismic.svg @@ -0,0 +1 @@ +Prismic icon \ No newline at end of file diff --git a/resources/svg/privateinternetaccess.svg b/resources/svg/privateinternetaccess.svg new file mode 100644 index 0000000..9a111b1 --- /dev/null +++ b/resources/svg/privateinternetaccess.svg @@ -0,0 +1 @@ +Private Internet Access icon \ No newline at end of file diff --git a/resources/svg/probot.svg b/resources/svg/probot.svg new file mode 100644 index 0000000..07c0c97 --- /dev/null +++ b/resources/svg/probot.svg @@ -0,0 +1 @@ +Probot icon \ No newline at end of file diff --git a/resources/svg/processwire.svg b/resources/svg/processwire.svg new file mode 100644 index 0000000..fcc2165 --- /dev/null +++ b/resources/svg/processwire.svg @@ -0,0 +1 @@ +ProcessWire icon \ No newline at end of file diff --git a/resources/svg/producthunt.svg b/resources/svg/producthunt.svg new file mode 100644 index 0000000..5ede917 --- /dev/null +++ b/resources/svg/producthunt.svg @@ -0,0 +1 @@ +Product Hunt icon \ No newline at end of file diff --git a/resources/svg/progate.svg b/resources/svg/progate.svg new file mode 100644 index 0000000..f7e3704 --- /dev/null +++ b/resources/svg/progate.svg @@ -0,0 +1 @@ +Progate icon diff --git a/resources/svg/progress.svg b/resources/svg/progress.svg new file mode 100644 index 0000000..47d8b93 --- /dev/null +++ b/resources/svg/progress.svg @@ -0,0 +1 @@ +Progress icon \ No newline at end of file diff --git a/resources/svg/prometheus.svg b/resources/svg/prometheus.svg new file mode 100644 index 0000000..f1f6d53 --- /dev/null +++ b/resources/svg/prometheus.svg @@ -0,0 +1 @@ +Prometheus icon \ No newline at end of file diff --git a/resources/svg/prosieben.svg b/resources/svg/prosieben.svg new file mode 100644 index 0000000..c7b92cb --- /dev/null +++ b/resources/svg/prosieben.svg @@ -0,0 +1 @@ +ProSieben icon \ No newline at end of file diff --git a/resources/svg/proto-dot-io.svg b/resources/svg/proto-dot-io.svg new file mode 100644 index 0000000..bd3c61f --- /dev/null +++ b/resources/svg/proto-dot-io.svg @@ -0,0 +1 @@ +Proto.io icon \ No newline at end of file diff --git a/resources/svg/protocols-dot-io.svg b/resources/svg/protocols-dot-io.svg new file mode 100644 index 0000000..fdefe84 --- /dev/null +++ b/resources/svg/protocols-dot-io.svg @@ -0,0 +1 @@ +protocols.io icon \ No newline at end of file diff --git a/resources/svg/protondb.svg b/resources/svg/protondb.svg new file mode 100644 index 0000000..1f801e2 --- /dev/null +++ b/resources/svg/protondb.svg @@ -0,0 +1 @@ +ProtonDB icon \ No newline at end of file diff --git a/resources/svg/protonmail.svg b/resources/svg/protonmail.svg new file mode 100644 index 0000000..3de3f9e --- /dev/null +++ b/resources/svg/protonmail.svg @@ -0,0 +1 @@ +ProtonMail icon \ No newline at end of file diff --git a/resources/svg/protonvpn.svg b/resources/svg/protonvpn.svg new file mode 100644 index 0000000..8ce5d6e --- /dev/null +++ b/resources/svg/protonvpn.svg @@ -0,0 +1 @@ +ProtonVPN icon \ No newline at end of file diff --git a/resources/svg/protools.svg b/resources/svg/protools.svg new file mode 100644 index 0000000..59237bf --- /dev/null +++ b/resources/svg/protools.svg @@ -0,0 +1 @@ +Pro Tools icon \ No newline at end of file diff --git a/resources/svg/proxmox.svg b/resources/svg/proxmox.svg new file mode 100644 index 0000000..3a2b0c8 --- /dev/null +++ b/resources/svg/proxmox.svg @@ -0,0 +1 @@ +Proxmox icon \ No newline at end of file diff --git a/resources/svg/publons.svg b/resources/svg/publons.svg new file mode 100644 index 0000000..69f334d --- /dev/null +++ b/resources/svg/publons.svg @@ -0,0 +1 @@ +Publons icon \ No newline at end of file diff --git a/resources/svg/pubmed.svg b/resources/svg/pubmed.svg new file mode 100644 index 0000000..5d43f36 --- /dev/null +++ b/resources/svg/pubmed.svg @@ -0,0 +1 @@ +PubMed icon diff --git a/resources/svg/pug.svg b/resources/svg/pug.svg new file mode 100644 index 0000000..87f469f --- /dev/null +++ b/resources/svg/pug.svg @@ -0,0 +1 @@ +Pug icon \ No newline at end of file diff --git a/resources/svg/puppet.svg b/resources/svg/puppet.svg new file mode 100644 index 0000000..60eb390 --- /dev/null +++ b/resources/svg/puppet.svg @@ -0,0 +1 @@ +Puppet icon diff --git a/resources/svg/puppeteer.svg b/resources/svg/puppeteer.svg new file mode 100644 index 0000000..be35dfa --- /dev/null +++ b/resources/svg/puppeteer.svg @@ -0,0 +1 @@ +Puppeteer icon \ No newline at end of file diff --git a/resources/svg/purescript.svg b/resources/svg/purescript.svg new file mode 100644 index 0000000..e09cd62 --- /dev/null +++ b/resources/svg/purescript.svg @@ -0,0 +1 @@ +PureScript icon \ No newline at end of file diff --git a/resources/svg/pycharm.svg b/resources/svg/pycharm.svg new file mode 100644 index 0000000..587957c --- /dev/null +++ b/resources/svg/pycharm.svg @@ -0,0 +1 @@ +PyCharm icon \ No newline at end of file diff --git a/resources/svg/pypi.svg b/resources/svg/pypi.svg new file mode 100644 index 0000000..69a8e2c --- /dev/null +++ b/resources/svg/pypi.svg @@ -0,0 +1 @@ +PyPI icon \ No newline at end of file diff --git a/resources/svg/pypy.svg b/resources/svg/pypy.svg new file mode 100644 index 0000000..cfd6d92 --- /dev/null +++ b/resources/svg/pypy.svg @@ -0,0 +1 @@ +PyPy icon \ No newline at end of file diff --git a/resources/svg/python.svg b/resources/svg/python.svg new file mode 100644 index 0000000..94f8f5f --- /dev/null +++ b/resources/svg/python.svg @@ -0,0 +1 @@ +Python icon \ No newline at end of file diff --git a/resources/svg/pytorch.svg b/resources/svg/pytorch.svg new file mode 100644 index 0000000..7c75cd2 --- /dev/null +++ b/resources/svg/pytorch.svg @@ -0,0 +1 @@ +PyTorch icon \ No newline at end of file diff --git a/resources/svg/pyup.svg b/resources/svg/pyup.svg new file mode 100644 index 0000000..9366010 --- /dev/null +++ b/resources/svg/pyup.svg @@ -0,0 +1 @@ +PyUp icon \ No newline at end of file diff --git a/resources/svg/qantas.svg b/resources/svg/qantas.svg new file mode 100644 index 0000000..adffcd9 --- /dev/null +++ b/resources/svg/qantas.svg @@ -0,0 +1 @@ +Qantas icon \ No newline at end of file diff --git a/resources/svg/qatarairways.svg b/resources/svg/qatarairways.svg new file mode 100644 index 0000000..08ebb26 --- /dev/null +++ b/resources/svg/qatarairways.svg @@ -0,0 +1 @@ +Qatar Airways icon \ No newline at end of file diff --git a/resources/svg/qemu.svg b/resources/svg/qemu.svg new file mode 100644 index 0000000..a247f5c --- /dev/null +++ b/resources/svg/qemu.svg @@ -0,0 +1 @@ +QEMU icon \ No newline at end of file diff --git a/resources/svg/qgis.svg b/resources/svg/qgis.svg new file mode 100644 index 0000000..294f6a6 --- /dev/null +++ b/resources/svg/qgis.svg @@ -0,0 +1 @@ +Qgis icon \ No newline at end of file diff --git a/resources/svg/qi.svg b/resources/svg/qi.svg new file mode 100644 index 0000000..00f3823 --- /dev/null +++ b/resources/svg/qi.svg @@ -0,0 +1 @@ +Qi icon \ No newline at end of file diff --git a/resources/svg/qiita.svg b/resources/svg/qiita.svg new file mode 100644 index 0000000..d4c7c6d --- /dev/null +++ b/resources/svg/qiita.svg @@ -0,0 +1 @@ +Qiita icon \ No newline at end of file diff --git a/resources/svg/qiskit.svg b/resources/svg/qiskit.svg new file mode 100644 index 0000000..22dfd05 --- /dev/null +++ b/resources/svg/qiskit.svg @@ -0,0 +1 @@ +Qiskit icon \ No newline at end of file diff --git a/resources/svg/qiwi.svg b/resources/svg/qiwi.svg new file mode 100644 index 0000000..df707f4 --- /dev/null +++ b/resources/svg/qiwi.svg @@ -0,0 +1 @@ +QIWI icon \ No newline at end of file diff --git a/resources/svg/qt.svg b/resources/svg/qt.svg new file mode 100644 index 0000000..58a1b1a --- /dev/null +++ b/resources/svg/qt.svg @@ -0,0 +1 @@ +Qt icon \ No newline at end of file diff --git a/resources/svg/qualcomm.svg b/resources/svg/qualcomm.svg new file mode 100644 index 0000000..de6f6c0 --- /dev/null +++ b/resources/svg/qualcomm.svg @@ -0,0 +1 @@ +Qualcomm icon \ No newline at end of file diff --git a/resources/svg/qualtrics.svg b/resources/svg/qualtrics.svg new file mode 100644 index 0000000..289bfa1 --- /dev/null +++ b/resources/svg/qualtrics.svg @@ -0,0 +1 @@ +Qualtrics icon \ No newline at end of file diff --git a/resources/svg/quantcast.svg b/resources/svg/quantcast.svg new file mode 100644 index 0000000..71871be --- /dev/null +++ b/resources/svg/quantcast.svg @@ -0,0 +1 @@ +Quantcast icon \ No newline at end of file diff --git a/resources/svg/quantconnect.svg b/resources/svg/quantconnect.svg new file mode 100644 index 0000000..b1e1664 --- /dev/null +++ b/resources/svg/quantconnect.svg @@ -0,0 +1 @@ +QuantConnect icon \ No newline at end of file diff --git a/resources/svg/quantopian.svg b/resources/svg/quantopian.svg new file mode 100644 index 0000000..9f54898 --- /dev/null +++ b/resources/svg/quantopian.svg @@ -0,0 +1 @@ +Quantopian icon \ No newline at end of file diff --git a/resources/svg/quarkus.svg b/resources/svg/quarkus.svg new file mode 100644 index 0000000..997e01c --- /dev/null +++ b/resources/svg/quarkus.svg @@ -0,0 +1 @@ +Quarkus icon \ No newline at end of file diff --git a/resources/svg/quasar.svg b/resources/svg/quasar.svg new file mode 100644 index 0000000..a28cbd1 --- /dev/null +++ b/resources/svg/quasar.svg @@ -0,0 +1 @@ +Quasar icon \ No newline at end of file diff --git a/resources/svg/qubesos.svg b/resources/svg/qubesos.svg new file mode 100644 index 0000000..e11b2a1 --- /dev/null +++ b/resources/svg/qubesos.svg @@ -0,0 +1 @@ +Qubes OS icon diff --git a/resources/svg/quest.svg b/resources/svg/quest.svg new file mode 100644 index 0000000..57be973 --- /dev/null +++ b/resources/svg/quest.svg @@ -0,0 +1 @@ +Quest icon \ No newline at end of file diff --git a/resources/svg/quickbooks.svg b/resources/svg/quickbooks.svg new file mode 100644 index 0000000..aa7091b --- /dev/null +++ b/resources/svg/quickbooks.svg @@ -0,0 +1 @@ +QuickBooks icon \ No newline at end of file diff --git a/resources/svg/quicktime.svg b/resources/svg/quicktime.svg new file mode 100644 index 0000000..091b9cb --- /dev/null +++ b/resources/svg/quicktime.svg @@ -0,0 +1 @@ +QuickTime icon \ No newline at end of file diff --git a/resources/svg/quip.svg b/resources/svg/quip.svg new file mode 100644 index 0000000..2ab40b0 --- /dev/null +++ b/resources/svg/quip.svg @@ -0,0 +1 @@ +Quip icon diff --git a/resources/svg/quora.svg b/resources/svg/quora.svg new file mode 100644 index 0000000..2bb6202 --- /dev/null +++ b/resources/svg/quora.svg @@ -0,0 +1 @@ +Quora icon \ No newline at end of file diff --git a/resources/svg/qwiklabs.svg b/resources/svg/qwiklabs.svg new file mode 100644 index 0000000..7703372 --- /dev/null +++ b/resources/svg/qwiklabs.svg @@ -0,0 +1 @@ +Qwiklabs icon \ No newline at end of file diff --git a/resources/svg/qzone.svg b/resources/svg/qzone.svg new file mode 100644 index 0000000..91ae7bd --- /dev/null +++ b/resources/svg/qzone.svg @@ -0,0 +1 @@ +Qzone icon \ No newline at end of file diff --git a/resources/svg/r.svg b/resources/svg/r.svg new file mode 100644 index 0000000..bf3214c --- /dev/null +++ b/resources/svg/r.svg @@ -0,0 +1 @@ +R icon \ No newline at end of file diff --git a/resources/svg/rabbitmq.svg b/resources/svg/rabbitmq.svg new file mode 100644 index 0000000..ca9ee25 --- /dev/null +++ b/resources/svg/rabbitmq.svg @@ -0,0 +1 @@ +RabbitMQ icon \ No newline at end of file diff --git a/resources/svg/racket.svg b/resources/svg/racket.svg new file mode 100644 index 0000000..8c6c0e4 --- /dev/null +++ b/resources/svg/racket.svg @@ -0,0 +1 @@ +Racket icon \ No newline at end of file diff --git a/resources/svg/radar.svg b/resources/svg/radar.svg new file mode 100644 index 0000000..282c084 --- /dev/null +++ b/resources/svg/radar.svg @@ -0,0 +1 @@ +Radar icon \ No newline at end of file diff --git a/resources/svg/radiopublic.svg b/resources/svg/radiopublic.svg new file mode 100644 index 0000000..4b2d581 --- /dev/null +++ b/resources/svg/radiopublic.svg @@ -0,0 +1 @@ +RadioPublic icon \ No newline at end of file diff --git a/resources/svg/rainmeter.svg b/resources/svg/rainmeter.svg new file mode 100644 index 0000000..7aa313b --- /dev/null +++ b/resources/svg/rainmeter.svg @@ -0,0 +1 @@ +Rainmeter icon \ No newline at end of file diff --git a/resources/svg/rakuten.svg b/resources/svg/rakuten.svg new file mode 100644 index 0000000..7a4c0ee --- /dev/null +++ b/resources/svg/rakuten.svg @@ -0,0 +1 @@ +Rakuten icon \ No newline at end of file diff --git a/resources/svg/ram.svg b/resources/svg/ram.svg new file mode 100644 index 0000000..eacddcc --- /dev/null +++ b/resources/svg/ram.svg @@ -0,0 +1 @@ +Ram icon \ No newline at end of file diff --git a/resources/svg/rancher.svg b/resources/svg/rancher.svg new file mode 100644 index 0000000..4d84a54 --- /dev/null +++ b/resources/svg/rancher.svg @@ -0,0 +1 @@ +Rancher icon \ No newline at end of file diff --git a/resources/svg/raspberrypi.svg b/resources/svg/raspberrypi.svg new file mode 100644 index 0000000..d22e9a0 --- /dev/null +++ b/resources/svg/raspberrypi.svg @@ -0,0 +1 @@ +Raspberry Pi icon \ No newline at end of file diff --git a/resources/svg/razer.svg b/resources/svg/razer.svg new file mode 100644 index 0000000..b7b69de --- /dev/null +++ b/resources/svg/razer.svg @@ -0,0 +1 @@ +Razer icon diff --git a/resources/svg/react.svg b/resources/svg/react.svg new file mode 100644 index 0000000..945a921 --- /dev/null +++ b/resources/svg/react.svg @@ -0,0 +1 @@ +React icon \ No newline at end of file diff --git a/resources/svg/reactivex.svg b/resources/svg/reactivex.svg new file mode 100644 index 0000000..7ea47f7 --- /dev/null +++ b/resources/svg/reactivex.svg @@ -0,0 +1 @@ +ReactiveX icon \ No newline at end of file diff --git a/resources/svg/reactos.svg b/resources/svg/reactos.svg new file mode 100644 index 0000000..f1ca4c8 --- /dev/null +++ b/resources/svg/reactos.svg @@ -0,0 +1 @@ +ReactOS icon \ No newline at end of file diff --git a/resources/svg/reactrouter.svg b/resources/svg/reactrouter.svg new file mode 100644 index 0000000..8377c60 --- /dev/null +++ b/resources/svg/reactrouter.svg @@ -0,0 +1 @@ +React Router icon \ No newline at end of file diff --git a/resources/svg/readthedocs.svg b/resources/svg/readthedocs.svg new file mode 100644 index 0000000..cba5d2d --- /dev/null +++ b/resources/svg/readthedocs.svg @@ -0,0 +1 @@ +Read the Docs icon \ No newline at end of file diff --git a/resources/svg/realm.svg b/resources/svg/realm.svg new file mode 100644 index 0000000..c9c7b9a --- /dev/null +++ b/resources/svg/realm.svg @@ -0,0 +1 @@ +Realm icon \ No newline at end of file diff --git a/resources/svg/reason.svg b/resources/svg/reason.svg new file mode 100644 index 0000000..717138f --- /dev/null +++ b/resources/svg/reason.svg @@ -0,0 +1 @@ +Reason icon \ No newline at end of file diff --git a/resources/svg/reasonstudios.svg b/resources/svg/reasonstudios.svg new file mode 100644 index 0000000..17ccb8f --- /dev/null +++ b/resources/svg/reasonstudios.svg @@ -0,0 +1 @@ +Reason Studios icon \ No newline at end of file diff --git a/resources/svg/redbubble.svg b/resources/svg/redbubble.svg new file mode 100644 index 0000000..38d1c94 --- /dev/null +++ b/resources/svg/redbubble.svg @@ -0,0 +1 @@ +Redbubble icon \ No newline at end of file diff --git a/resources/svg/reddit.svg b/resources/svg/reddit.svg new file mode 100644 index 0000000..16933fe --- /dev/null +++ b/resources/svg/reddit.svg @@ -0,0 +1 @@ +Reddit icon diff --git a/resources/svg/redhat.svg b/resources/svg/redhat.svg new file mode 100644 index 0000000..4641ce9 --- /dev/null +++ b/resources/svg/redhat.svg @@ -0,0 +1 @@ +Red Hat icon \ No newline at end of file diff --git a/resources/svg/redhatopenshift.svg b/resources/svg/redhatopenshift.svg new file mode 100644 index 0000000..9a8ad5e --- /dev/null +++ b/resources/svg/redhatopenshift.svg @@ -0,0 +1 @@ +Red Hat Open Shift icon \ No newline at end of file diff --git a/resources/svg/redis.svg b/resources/svg/redis.svg new file mode 100644 index 0000000..8910f41 --- /dev/null +++ b/resources/svg/redis.svg @@ -0,0 +1 @@ +Redis icon diff --git a/resources/svg/redux-saga.svg b/resources/svg/redux-saga.svg new file mode 100644 index 0000000..93fd000 --- /dev/null +++ b/resources/svg/redux-saga.svg @@ -0,0 +1 @@ +Redux-Saga icon \ No newline at end of file diff --git a/resources/svg/redux.svg b/resources/svg/redux.svg new file mode 100644 index 0000000..e82106c --- /dev/null +++ b/resources/svg/redux.svg @@ -0,0 +1 @@ +Redux icon \ No newline at end of file diff --git a/resources/svg/redwoodjs.svg b/resources/svg/redwoodjs.svg new file mode 100644 index 0000000..692d156 --- /dev/null +++ b/resources/svg/redwoodjs.svg @@ -0,0 +1 @@ +RedwoodJS icon \ No newline at end of file diff --git a/resources/svg/relianceindustrieslimited.svg b/resources/svg/relianceindustrieslimited.svg new file mode 100644 index 0000000..29baf19 --- /dev/null +++ b/resources/svg/relianceindustrieslimited.svg @@ -0,0 +1 @@ +Reliance Industries Limited icon \ No newline at end of file diff --git a/resources/svg/renault.svg b/resources/svg/renault.svg new file mode 100644 index 0000000..40175ff --- /dev/null +++ b/resources/svg/renault.svg @@ -0,0 +1 @@ +Renault icon \ No newline at end of file diff --git a/resources/svg/renovatebot.svg b/resources/svg/renovatebot.svg new file mode 100644 index 0000000..4bdcd6b --- /dev/null +++ b/resources/svg/renovatebot.svg @@ -0,0 +1 @@ +RenovateBot icon diff --git a/resources/svg/renpy.svg b/resources/svg/renpy.svg new file mode 100644 index 0000000..147245f --- /dev/null +++ b/resources/svg/renpy.svg @@ -0,0 +1 @@ +Ren'Py icon \ No newline at end of file diff --git a/resources/svg/renren.svg b/resources/svg/renren.svg new file mode 100644 index 0000000..65ca51e --- /dev/null +++ b/resources/svg/renren.svg @@ -0,0 +1 @@ +Renren icon \ No newline at end of file diff --git a/resources/svg/repl-dot-it.svg b/resources/svg/repl-dot-it.svg new file mode 100644 index 0000000..b2db993 --- /dev/null +++ b/resources/svg/repl-dot-it.svg @@ -0,0 +1 @@ +repl.it icon \ No newline at end of file diff --git a/resources/svg/researchgate.svg b/resources/svg/researchgate.svg new file mode 100644 index 0000000..a3dc2b3 --- /dev/null +++ b/resources/svg/researchgate.svg @@ -0,0 +1 @@ +ResearchGate icon diff --git a/resources/svg/resurrectionremixos.svg b/resources/svg/resurrectionremixos.svg new file mode 100644 index 0000000..a45f577 --- /dev/null +++ b/resources/svg/resurrectionremixos.svg @@ -0,0 +1 @@ +Resurrection Remix OS icon \ No newline at end of file diff --git a/resources/svg/retroarch.svg b/resources/svg/retroarch.svg new file mode 100644 index 0000000..b31b421 --- /dev/null +++ b/resources/svg/retroarch.svg @@ -0,0 +1 @@ +RetroArch icon \ No newline at end of file diff --git a/resources/svg/retropie.svg b/resources/svg/retropie.svg new file mode 100644 index 0000000..1caadef --- /dev/null +++ b/resources/svg/retropie.svg @@ -0,0 +1 @@ +RetroPie icon \ No newline at end of file diff --git a/resources/svg/reveal-dot-js.svg b/resources/svg/reveal-dot-js.svg new file mode 100644 index 0000000..7024998 --- /dev/null +++ b/resources/svg/reveal-dot-js.svg @@ -0,0 +1 @@ +reveal.js icon \ No newline at end of file diff --git a/resources/svg/reverbnation.svg b/resources/svg/reverbnation.svg new file mode 100644 index 0000000..79bf6af --- /dev/null +++ b/resources/svg/reverbnation.svg @@ -0,0 +1 @@ +ReverbNation icon \ No newline at end of file diff --git a/resources/svg/revolut.svg b/resources/svg/revolut.svg new file mode 100644 index 0000000..6be4d6e --- /dev/null +++ b/resources/svg/revolut.svg @@ -0,0 +1 @@ +Revolut icon \ No newline at end of file diff --git a/resources/svg/revue.svg b/resources/svg/revue.svg new file mode 100644 index 0000000..843fd2f --- /dev/null +++ b/resources/svg/revue.svg @@ -0,0 +1 @@ +Revue icon \ No newline at end of file diff --git a/resources/svg/rewe.svg b/resources/svg/rewe.svg new file mode 100644 index 0000000..961d000 --- /dev/null +++ b/resources/svg/rewe.svg @@ -0,0 +1 @@ +REWE icon \ No newline at end of file diff --git a/resources/svg/rezgo.svg b/resources/svg/rezgo.svg new file mode 100644 index 0000000..7895b9d --- /dev/null +++ b/resources/svg/rezgo.svg @@ -0,0 +1 @@ +Rezgo icon \ No newline at end of file diff --git a/resources/svg/rhinoceros.svg b/resources/svg/rhinoceros.svg new file mode 100644 index 0000000..7a2c368 --- /dev/null +++ b/resources/svg/rhinoceros.svg @@ -0,0 +1 @@ +Rhinoceros icon \ No newline at end of file diff --git a/resources/svg/rider.svg b/resources/svg/rider.svg new file mode 100644 index 0000000..f9b8719 --- /dev/null +++ b/resources/svg/rider.svg @@ -0,0 +1 @@ +Rider icon \ No newline at end of file diff --git a/resources/svg/ring.svg b/resources/svg/ring.svg new file mode 100644 index 0000000..cd489d8 --- /dev/null +++ b/resources/svg/ring.svg @@ -0,0 +1 @@ +Ring icon \ No newline at end of file diff --git a/resources/svg/riotgames.svg b/resources/svg/riotgames.svg new file mode 100644 index 0000000..fb76ad4 --- /dev/null +++ b/resources/svg/riotgames.svg @@ -0,0 +1 @@ +Riot Games icon \ No newline at end of file diff --git a/resources/svg/ripple.svg b/resources/svg/ripple.svg new file mode 100644 index 0000000..fd6ebde --- /dev/null +++ b/resources/svg/ripple.svg @@ -0,0 +1 @@ +Ripple icon \ No newline at end of file diff --git a/resources/svg/riseup.svg b/resources/svg/riseup.svg new file mode 100644 index 0000000..4ee1cb8 --- /dev/null +++ b/resources/svg/riseup.svg @@ -0,0 +1 @@ +Riseup icon \ No newline at end of file diff --git a/resources/svg/roamresearch.svg b/resources/svg/roamresearch.svg new file mode 100644 index 0000000..75ff548 --- /dev/null +++ b/resources/svg/roamresearch.svg @@ -0,0 +1 @@ +Roam Research icon \ No newline at end of file diff --git a/resources/svg/robotframework.svg b/resources/svg/robotframework.svg new file mode 100644 index 0000000..64a0a68 --- /dev/null +++ b/resources/svg/robotframework.svg @@ -0,0 +1 @@ +Robot Framework icon \ No newline at end of file diff --git a/resources/svg/roku.svg b/resources/svg/roku.svg new file mode 100644 index 0000000..4d9a420 --- /dev/null +++ b/resources/svg/roku.svg @@ -0,0 +1 @@ +Roku icon \ No newline at end of file diff --git a/resources/svg/rolls-royce.svg b/resources/svg/rolls-royce.svg new file mode 100644 index 0000000..db90f5f --- /dev/null +++ b/resources/svg/rolls-royce.svg @@ -0,0 +1 @@ +Rolls-Royce icon \ No newline at end of file diff --git a/resources/svg/rollup-dot-js.svg b/resources/svg/rollup-dot-js.svg new file mode 100644 index 0000000..b4e4ce2 --- /dev/null +++ b/resources/svg/rollup-dot-js.svg @@ -0,0 +1 @@ +rollup.js icon \ No newline at end of file diff --git a/resources/svg/roots.svg b/resources/svg/roots.svg new file mode 100644 index 0000000..a77f19c --- /dev/null +++ b/resources/svg/roots.svg @@ -0,0 +1 @@ +Roots icon \ No newline at end of file diff --git a/resources/svg/rootsbedrock.svg b/resources/svg/rootsbedrock.svg new file mode 100644 index 0000000..3858433 --- /dev/null +++ b/resources/svg/rootsbedrock.svg @@ -0,0 +1 @@ +Roots Bedrock icon diff --git a/resources/svg/rootssage.svg b/resources/svg/rootssage.svg new file mode 100644 index 0000000..d38a05e --- /dev/null +++ b/resources/svg/rootssage.svg @@ -0,0 +1 @@ +Roots Sage icon diff --git a/resources/svg/ros.svg b/resources/svg/ros.svg new file mode 100644 index 0000000..dcebe4d --- /dev/null +++ b/resources/svg/ros.svg @@ -0,0 +1 @@ +ROS icon diff --git a/resources/svg/rottentomatoes.svg b/resources/svg/rottentomatoes.svg new file mode 100644 index 0000000..755e351 --- /dev/null +++ b/resources/svg/rottentomatoes.svg @@ -0,0 +1 @@ +Rotten Tomatoes icon \ No newline at end of file diff --git a/resources/svg/roundcube.svg b/resources/svg/roundcube.svg new file mode 100644 index 0000000..92f0855 --- /dev/null +++ b/resources/svg/roundcube.svg @@ -0,0 +1 @@ +Roundcube icon \ No newline at end of file diff --git a/resources/svg/rss.svg b/resources/svg/rss.svg new file mode 100644 index 0000000..a31818c --- /dev/null +++ b/resources/svg/rss.svg @@ -0,0 +1 @@ +RSS icon \ No newline at end of file diff --git a/resources/svg/rstudio.svg b/resources/svg/rstudio.svg new file mode 100644 index 0000000..18da01c --- /dev/null +++ b/resources/svg/rstudio.svg @@ -0,0 +1 @@ +RStudio icon \ No newline at end of file diff --git a/resources/svg/rte.svg b/resources/svg/rte.svg new file mode 100644 index 0000000..95ed5cd --- /dev/null +++ b/resources/svg/rte.svg @@ -0,0 +1 @@ +RTÉ icon \ No newline at end of file diff --git a/resources/svg/rtl.svg b/resources/svg/rtl.svg new file mode 100644 index 0000000..39bc21b --- /dev/null +++ b/resources/svg/rtl.svg @@ -0,0 +1 @@ +RTL icon \ No newline at end of file diff --git a/resources/svg/rtlzwei.svg b/resources/svg/rtlzwei.svg new file mode 100644 index 0000000..fae5a9c --- /dev/null +++ b/resources/svg/rtlzwei.svg @@ -0,0 +1 @@ +RTLZWEI icon diff --git a/resources/svg/ruby.svg b/resources/svg/ruby.svg new file mode 100644 index 0000000..c866238 --- /dev/null +++ b/resources/svg/ruby.svg @@ -0,0 +1 @@ +Ruby icon \ No newline at end of file diff --git a/resources/svg/rubygems.svg b/resources/svg/rubygems.svg new file mode 100644 index 0000000..e4d223d --- /dev/null +++ b/resources/svg/rubygems.svg @@ -0,0 +1 @@ +RubyGems icon \ No newline at end of file diff --git a/resources/svg/rubyonrails.svg b/resources/svg/rubyonrails.svg new file mode 100644 index 0000000..e77639e --- /dev/null +++ b/resources/svg/rubyonrails.svg @@ -0,0 +1 @@ +Ruby on Rails icon \ No newline at end of file diff --git a/resources/svg/runkeeper.svg b/resources/svg/runkeeper.svg new file mode 100644 index 0000000..5234c41 --- /dev/null +++ b/resources/svg/runkeeper.svg @@ -0,0 +1 @@ +Runkeeper icon \ No newline at end of file diff --git a/resources/svg/runkit.svg b/resources/svg/runkit.svg new file mode 100644 index 0000000..deadec4 --- /dev/null +++ b/resources/svg/runkit.svg @@ -0,0 +1 @@ +RunKit icon \ No newline at end of file diff --git a/resources/svg/rust.svg b/resources/svg/rust.svg new file mode 100644 index 0000000..98a0cbf --- /dev/null +++ b/resources/svg/rust.svg @@ -0,0 +1 @@ +Rust icon \ No newline at end of file diff --git a/resources/svg/ryanair.svg b/resources/svg/ryanair.svg new file mode 100644 index 0000000..a705ad9 --- /dev/null +++ b/resources/svg/ryanair.svg @@ -0,0 +1 @@ +Ryanair icon diff --git a/resources/svg/s7airlines.svg b/resources/svg/s7airlines.svg new file mode 100644 index 0000000..0fa21f5 --- /dev/null +++ b/resources/svg/s7airlines.svg @@ -0,0 +1 @@ +S7 Airlines icon \ No newline at end of file diff --git a/resources/svg/safari.svg b/resources/svg/safari.svg new file mode 100644 index 0000000..8471681 --- /dev/null +++ b/resources/svg/safari.svg @@ -0,0 +1 @@ +Safari icon \ No newline at end of file diff --git a/resources/svg/sahibinden.svg b/resources/svg/sahibinden.svg new file mode 100644 index 0000000..386f198 --- /dev/null +++ b/resources/svg/sahibinden.svg @@ -0,0 +1 @@ +Sahibinden icon \ No newline at end of file diff --git a/resources/svg/salesforce.svg b/resources/svg/salesforce.svg new file mode 100644 index 0000000..064e978 --- /dev/null +++ b/resources/svg/salesforce.svg @@ -0,0 +1 @@ +Salesforce icon \ No newline at end of file diff --git a/resources/svg/saltstack.svg b/resources/svg/saltstack.svg new file mode 100644 index 0000000..fdc571e --- /dev/null +++ b/resources/svg/saltstack.svg @@ -0,0 +1 @@ +SaltStack icon \ No newline at end of file diff --git a/resources/svg/samsung.svg b/resources/svg/samsung.svg new file mode 100644 index 0000000..29b604e --- /dev/null +++ b/resources/svg/samsung.svg @@ -0,0 +1 @@ +Samsung icon \ No newline at end of file diff --git a/resources/svg/samsungpay.svg b/resources/svg/samsungpay.svg new file mode 100644 index 0000000..73fc77b --- /dev/null +++ b/resources/svg/samsungpay.svg @@ -0,0 +1 @@ +Samsung Pay icon \ No newline at end of file diff --git a/resources/svg/sanfranciscomunicipalrailway.svg b/resources/svg/sanfranciscomunicipalrailway.svg new file mode 100644 index 0000000..65caf5d --- /dev/null +++ b/resources/svg/sanfranciscomunicipalrailway.svg @@ -0,0 +1 @@ +San Francisco Municipal Railway icon \ No newline at end of file diff --git a/resources/svg/saopaulometro.svg b/resources/svg/saopaulometro.svg new file mode 100644 index 0000000..a72c574 --- /dev/null +++ b/resources/svg/saopaulometro.svg @@ -0,0 +1 @@ +São Paulo Metro icon \ No newline at end of file diff --git a/resources/svg/sap.svg b/resources/svg/sap.svg new file mode 100644 index 0000000..3f70138 --- /dev/null +++ b/resources/svg/sap.svg @@ -0,0 +1 @@ +SAP icon \ No newline at end of file diff --git a/resources/svg/sass.svg b/resources/svg/sass.svg new file mode 100644 index 0000000..c4c2eb9 --- /dev/null +++ b/resources/svg/sass.svg @@ -0,0 +1 @@ +Sass icon \ No newline at end of file diff --git a/resources/svg/sat-dot-1.svg b/resources/svg/sat-dot-1.svg new file mode 100644 index 0000000..84290e4 --- /dev/null +++ b/resources/svg/sat-dot-1.svg @@ -0,0 +1 @@ +Sat.1 icon \ No newline at end of file diff --git a/resources/svg/saucelabs.svg b/resources/svg/saucelabs.svg new file mode 100644 index 0000000..381480a --- /dev/null +++ b/resources/svg/saucelabs.svg @@ -0,0 +1 @@ +Sauce Labs icon \ No newline at end of file diff --git a/resources/svg/scala.svg b/resources/svg/scala.svg new file mode 100644 index 0000000..9f2996a --- /dev/null +++ b/resources/svg/scala.svg @@ -0,0 +1 @@ +Scala icon \ No newline at end of file diff --git a/resources/svg/scaleway.svg b/resources/svg/scaleway.svg new file mode 100644 index 0000000..8178246 --- /dev/null +++ b/resources/svg/scaleway.svg @@ -0,0 +1 @@ +Scaleway icon \ No newline at end of file diff --git a/resources/svg/scania.svg b/resources/svg/scania.svg new file mode 100644 index 0000000..4c097c3 --- /dev/null +++ b/resources/svg/scania.svg @@ -0,0 +1 @@ +Scania icon diff --git a/resources/svg/scikit-learn.svg b/resources/svg/scikit-learn.svg new file mode 100644 index 0000000..9dad861 --- /dev/null +++ b/resources/svg/scikit-learn.svg @@ -0,0 +1 @@ +scikit-learn icon \ No newline at end of file diff --git a/resources/svg/scipy.svg b/resources/svg/scipy.svg new file mode 100644 index 0000000..12c41db --- /dev/null +++ b/resources/svg/scipy.svg @@ -0,0 +1 @@ +SciPy icon \ No newline at end of file diff --git a/resources/svg/scopus.svg b/resources/svg/scopus.svg new file mode 100644 index 0000000..aa86fc6 --- /dev/null +++ b/resources/svg/scopus.svg @@ -0,0 +1 @@ +Scopus icon \ No newline at end of file diff --git a/resources/svg/scratch.svg b/resources/svg/scratch.svg new file mode 100644 index 0000000..c7b4cb9 --- /dev/null +++ b/resources/svg/scratch.svg @@ -0,0 +1 @@ +Scratch icon \ No newline at end of file diff --git a/resources/svg/screencastify.svg b/resources/svg/screencastify.svg new file mode 100644 index 0000000..30aa4da --- /dev/null +++ b/resources/svg/screencastify.svg @@ -0,0 +1 @@ +Screencastify icon \ No newline at end of file diff --git a/resources/svg/scribd.svg b/resources/svg/scribd.svg new file mode 100644 index 0000000..e138cda --- /dev/null +++ b/resources/svg/scribd.svg @@ -0,0 +1 @@ +Scribd icon \ No newline at end of file diff --git a/resources/svg/scrimba.svg b/resources/svg/scrimba.svg new file mode 100644 index 0000000..57db6b7 --- /dev/null +++ b/resources/svg/scrimba.svg @@ -0,0 +1 @@ +Scrimba icon \ No newline at end of file diff --git a/resources/svg/scrumalliance.svg b/resources/svg/scrumalliance.svg new file mode 100644 index 0000000..ba98e16 --- /dev/null +++ b/resources/svg/scrumalliance.svg @@ -0,0 +1 @@ +Scrum Alliance icon \ No newline at end of file diff --git a/resources/svg/scrutinizerci.svg b/resources/svg/scrutinizerci.svg new file mode 100644 index 0000000..c72febf --- /dev/null +++ b/resources/svg/scrutinizerci.svg @@ -0,0 +1 @@ +Scrutinizer CI icon \ No newline at end of file diff --git a/resources/svg/seagate.svg b/resources/svg/seagate.svg new file mode 100644 index 0000000..2128cda --- /dev/null +++ b/resources/svg/seagate.svg @@ -0,0 +1 @@ +Seagate icon \ No newline at end of file diff --git a/resources/svg/seat.svg b/resources/svg/seat.svg new file mode 100644 index 0000000..8f07cc2 --- /dev/null +++ b/resources/svg/seat.svg @@ -0,0 +1 @@ +SEAT icon diff --git a/resources/svg/sefaria.svg b/resources/svg/sefaria.svg new file mode 100644 index 0000000..a66867b --- /dev/null +++ b/resources/svg/sefaria.svg @@ -0,0 +1 @@ +Sefaria icon \ No newline at end of file diff --git a/resources/svg/sega.svg b/resources/svg/sega.svg new file mode 100644 index 0000000..106749b --- /dev/null +++ b/resources/svg/sega.svg @@ -0,0 +1 @@ +Sega icon \ No newline at end of file diff --git a/resources/svg/selenium.svg b/resources/svg/selenium.svg new file mode 100644 index 0000000..5b243ff --- /dev/null +++ b/resources/svg/selenium.svg @@ -0,0 +1 @@ +Selenium icon \ No newline at end of file diff --git a/resources/svg/sellfy.svg b/resources/svg/sellfy.svg new file mode 100644 index 0000000..14f17d0 --- /dev/null +++ b/resources/svg/sellfy.svg @@ -0,0 +1 @@ +Sellfy icon \ No newline at end of file diff --git a/resources/svg/semantic-release.svg b/resources/svg/semantic-release.svg new file mode 100644 index 0000000..dcf918e --- /dev/null +++ b/resources/svg/semantic-release.svg @@ -0,0 +1 @@ +semantic-release icon \ No newline at end of file diff --git a/resources/svg/semanticuireact.svg b/resources/svg/semanticuireact.svg new file mode 100644 index 0000000..c8e6ed2 --- /dev/null +++ b/resources/svg/semanticuireact.svg @@ -0,0 +1 @@ +Semantic UI React icon \ No newline at end of file diff --git a/resources/svg/semanticweb.svg b/resources/svg/semanticweb.svg new file mode 100644 index 0000000..d4328e2 --- /dev/null +++ b/resources/svg/semanticweb.svg @@ -0,0 +1 @@ +Semantic Web icon diff --git a/resources/svg/semaphoreci.svg b/resources/svg/semaphoreci.svg new file mode 100644 index 0000000..8d83418 --- /dev/null +++ b/resources/svg/semaphoreci.svg @@ -0,0 +1 @@ +Semaphore CI icon \ No newline at end of file diff --git a/resources/svg/semver.svg b/resources/svg/semver.svg new file mode 100644 index 0000000..a663ad8 --- /dev/null +++ b/resources/svg/semver.svg @@ -0,0 +1 @@ +SemVer icon diff --git a/resources/svg/sencha.svg b/resources/svg/sencha.svg new file mode 100644 index 0000000..6e075f1 --- /dev/null +++ b/resources/svg/sencha.svg @@ -0,0 +1 @@ +Sencha icon \ No newline at end of file diff --git a/resources/svg/sennheiser.svg b/resources/svg/sennheiser.svg new file mode 100644 index 0000000..1794f7a --- /dev/null +++ b/resources/svg/sennheiser.svg @@ -0,0 +1 @@ +Sennheiser icon diff --git a/resources/svg/sensu.svg b/resources/svg/sensu.svg new file mode 100644 index 0000000..7a6f0ed --- /dev/null +++ b/resources/svg/sensu.svg @@ -0,0 +1 @@ +Sensu icon \ No newline at end of file diff --git a/resources/svg/sentry.svg b/resources/svg/sentry.svg new file mode 100644 index 0000000..f18d80b --- /dev/null +++ b/resources/svg/sentry.svg @@ -0,0 +1 @@ +Sentry icon \ No newline at end of file diff --git a/resources/svg/sepa.svg b/resources/svg/sepa.svg new file mode 100644 index 0000000..eb58d0f --- /dev/null +++ b/resources/svg/sepa.svg @@ -0,0 +1 @@ +SEPA icon \ No newline at end of file diff --git a/resources/svg/serverfault.svg b/resources/svg/serverfault.svg new file mode 100644 index 0000000..f7186ae --- /dev/null +++ b/resources/svg/serverfault.svg @@ -0,0 +1 @@ +Server Fault icon \ No newline at end of file diff --git a/resources/svg/serverless.svg b/resources/svg/serverless.svg new file mode 100644 index 0000000..217061f --- /dev/null +++ b/resources/svg/serverless.svg @@ -0,0 +1 @@ +Serverless icon diff --git a/resources/svg/sfml.svg b/resources/svg/sfml.svg new file mode 100644 index 0000000..bc05642 --- /dev/null +++ b/resources/svg/sfml.svg @@ -0,0 +1 @@ +SFML icon \ No newline at end of file diff --git a/resources/svg/shanghaimetro.svg b/resources/svg/shanghaimetro.svg new file mode 100644 index 0000000..0c59f69 --- /dev/null +++ b/resources/svg/shanghaimetro.svg @@ -0,0 +1 @@ +Shanghai Metro icon \ No newline at end of file diff --git a/resources/svg/sharp.svg b/resources/svg/sharp.svg new file mode 100644 index 0000000..37540a9 --- /dev/null +++ b/resources/svg/sharp.svg @@ -0,0 +1 @@ +sharp icon \ No newline at end of file diff --git a/resources/svg/shazam.svg b/resources/svg/shazam.svg new file mode 100644 index 0000000..4438009 --- /dev/null +++ b/resources/svg/shazam.svg @@ -0,0 +1 @@ +Shazam icon \ No newline at end of file diff --git a/resources/svg/shell.svg b/resources/svg/shell.svg new file mode 100644 index 0000000..65aa5ed --- /dev/null +++ b/resources/svg/shell.svg @@ -0,0 +1 @@ +Shell icon \ No newline at end of file diff --git a/resources/svg/shenzhenmetro.svg b/resources/svg/shenzhenmetro.svg new file mode 100644 index 0000000..58be44f --- /dev/null +++ b/resources/svg/shenzhenmetro.svg @@ -0,0 +1 @@ +Shenzhen Metro icon \ No newline at end of file diff --git a/resources/svg/shields-dot-io.svg b/resources/svg/shields-dot-io.svg new file mode 100644 index 0000000..a1b2e3b --- /dev/null +++ b/resources/svg/shields-dot-io.svg @@ -0,0 +1 @@ +Shields.io icon diff --git a/resources/svg/shikimori.svg b/resources/svg/shikimori.svg new file mode 100644 index 0000000..67e8062 --- /dev/null +++ b/resources/svg/shikimori.svg @@ -0,0 +1 @@ +Shikimori icon diff --git a/resources/svg/shopify.svg b/resources/svg/shopify.svg new file mode 100644 index 0000000..e908ab5 --- /dev/null +++ b/resources/svg/shopify.svg @@ -0,0 +1 @@ +Shopify icon \ No newline at end of file diff --git a/resources/svg/shopware.svg b/resources/svg/shopware.svg new file mode 100644 index 0000000..d0249fe --- /dev/null +++ b/resources/svg/shopware.svg @@ -0,0 +1 @@ +Shopware icon \ No newline at end of file diff --git a/resources/svg/shotcut.svg b/resources/svg/shotcut.svg new file mode 100644 index 0000000..eb1fafc --- /dev/null +++ b/resources/svg/shotcut.svg @@ -0,0 +1 @@ +Shotcut icon \ No newline at end of file diff --git a/resources/svg/showpad.svg b/resources/svg/showpad.svg new file mode 100644 index 0000000..7f789bc --- /dev/null +++ b/resources/svg/showpad.svg @@ -0,0 +1 @@ +Showpad icon \ No newline at end of file diff --git a/resources/svg/showtime.svg b/resources/svg/showtime.svg new file mode 100644 index 0000000..8a43f73 --- /dev/null +++ b/resources/svg/showtime.svg @@ -0,0 +1 @@ +Showtime icon diff --git a/resources/svg/shutterstock.svg b/resources/svg/shutterstock.svg new file mode 100644 index 0000000..6636dea --- /dev/null +++ b/resources/svg/shutterstock.svg @@ -0,0 +1 @@ +Shutterstock icon \ No newline at end of file diff --git a/resources/svg/siemens.svg b/resources/svg/siemens.svg new file mode 100644 index 0000000..f92fc43 --- /dev/null +++ b/resources/svg/siemens.svg @@ -0,0 +1 @@ +Siemens icon \ No newline at end of file diff --git a/resources/svg/signal.svg b/resources/svg/signal.svg new file mode 100644 index 0000000..28706f3 --- /dev/null +++ b/resources/svg/signal.svg @@ -0,0 +1 @@ +Signal icon \ No newline at end of file diff --git a/resources/svg/simpleanalytics.svg b/resources/svg/simpleanalytics.svg new file mode 100644 index 0000000..afda44c --- /dev/null +++ b/resources/svg/simpleanalytics.svg @@ -0,0 +1 @@ +Simple Analytics icon \ No newline at end of file diff --git a/resources/svg/simpleicons.svg b/resources/svg/simpleicons.svg new file mode 100644 index 0000000..f62842e --- /dev/null +++ b/resources/svg/simpleicons.svg @@ -0,0 +1 @@ +Simple Icons icon \ No newline at end of file diff --git a/resources/svg/sinaweibo.svg b/resources/svg/sinaweibo.svg new file mode 100644 index 0000000..e73b8ac --- /dev/null +++ b/resources/svg/sinaweibo.svg @@ -0,0 +1 @@ +Sina Weibo icon \ No newline at end of file diff --git a/resources/svg/singlestore.svg b/resources/svg/singlestore.svg new file mode 100644 index 0000000..9009121 --- /dev/null +++ b/resources/svg/singlestore.svg @@ -0,0 +1 @@ +SingleStore icon \ No newline at end of file diff --git a/resources/svg/sitepoint.svg b/resources/svg/sitepoint.svg new file mode 100644 index 0000000..45fd69b --- /dev/null +++ b/resources/svg/sitepoint.svg @@ -0,0 +1 @@ +SitePoint icon \ No newline at end of file diff --git a/resources/svg/sketch.svg b/resources/svg/sketch.svg new file mode 100644 index 0000000..5ef5123 --- /dev/null +++ b/resources/svg/sketch.svg @@ -0,0 +1 @@ +Sketch icon diff --git a/resources/svg/sketchfab.svg b/resources/svg/sketchfab.svg new file mode 100644 index 0000000..bbeb85b --- /dev/null +++ b/resources/svg/sketchfab.svg @@ -0,0 +1 @@ +Sketchfab icon \ No newline at end of file diff --git a/resources/svg/sketchup.svg b/resources/svg/sketchup.svg new file mode 100644 index 0000000..3ac6ed9 --- /dev/null +++ b/resources/svg/sketchup.svg @@ -0,0 +1 @@ +SketchUp icon \ No newline at end of file diff --git a/resources/svg/skillshare.svg b/resources/svg/skillshare.svg new file mode 100644 index 0000000..0fae408 --- /dev/null +++ b/resources/svg/skillshare.svg @@ -0,0 +1 @@ +Skillshare icon \ No newline at end of file diff --git a/resources/svg/skoda.svg b/resources/svg/skoda.svg new file mode 100644 index 0000000..4126dee --- /dev/null +++ b/resources/svg/skoda.svg @@ -0,0 +1 @@ +ŠKODA icon diff --git a/resources/svg/sky.svg b/resources/svg/sky.svg new file mode 100644 index 0000000..4d94694 --- /dev/null +++ b/resources/svg/sky.svg @@ -0,0 +1 @@ +Sky icon \ No newline at end of file diff --git a/resources/svg/skyliner.svg b/resources/svg/skyliner.svg new file mode 100644 index 0000000..fd7205b --- /dev/null +++ b/resources/svg/skyliner.svg @@ -0,0 +1 @@ +Skyliner icon \ No newline at end of file diff --git a/resources/svg/skype.svg b/resources/svg/skype.svg new file mode 100644 index 0000000..fe4fd81 --- /dev/null +++ b/resources/svg/skype.svg @@ -0,0 +1 @@ +Skype icon \ No newline at end of file diff --git a/resources/svg/skypeforbusiness.svg b/resources/svg/skypeforbusiness.svg new file mode 100644 index 0000000..a2bacce --- /dev/null +++ b/resources/svg/skypeforbusiness.svg @@ -0,0 +1 @@ +Skype for Business icon diff --git a/resources/svg/slack.svg b/resources/svg/slack.svg new file mode 100644 index 0000000..07e83d9 --- /dev/null +++ b/resources/svg/slack.svg @@ -0,0 +1 @@ +Slack icon \ No newline at end of file diff --git a/resources/svg/slackware.svg b/resources/svg/slackware.svg new file mode 100644 index 0000000..27b1b24 --- /dev/null +++ b/resources/svg/slackware.svg @@ -0,0 +1 @@ +Slackware icon \ No newline at end of file diff --git a/resources/svg/slashdot.svg b/resources/svg/slashdot.svg new file mode 100644 index 0000000..83a8db1 --- /dev/null +++ b/resources/svg/slashdot.svg @@ -0,0 +1 @@ +Slashdot icon \ No newline at end of file diff --git a/resources/svg/slickpic.svg b/resources/svg/slickpic.svg new file mode 100644 index 0000000..f065f07 --- /dev/null +++ b/resources/svg/slickpic.svg @@ -0,0 +1 @@ +SlickPic icon \ No newline at end of file diff --git a/resources/svg/slides.svg b/resources/svg/slides.svg new file mode 100644 index 0000000..9f0f671 --- /dev/null +++ b/resources/svg/slides.svg @@ -0,0 +1 @@ +Slides icon \ No newline at end of file diff --git a/resources/svg/slideshare.svg b/resources/svg/slideshare.svg new file mode 100644 index 0000000..4b09ff2 --- /dev/null +++ b/resources/svg/slideshare.svg @@ -0,0 +1 @@ +SlideShare icon \ No newline at end of file diff --git a/resources/svg/smart.svg b/resources/svg/smart.svg new file mode 100644 index 0000000..19fbd1b --- /dev/null +++ b/resources/svg/smart.svg @@ -0,0 +1 @@ +smart icon \ No newline at end of file diff --git a/resources/svg/smartthings.svg b/resources/svg/smartthings.svg new file mode 100644 index 0000000..221d7c8 --- /dev/null +++ b/resources/svg/smartthings.svg @@ -0,0 +1 @@ +SmartThings icon \ No newline at end of file diff --git a/resources/svg/smashingmagazine.svg b/resources/svg/smashingmagazine.svg new file mode 100644 index 0000000..807fe94 --- /dev/null +++ b/resources/svg/smashingmagazine.svg @@ -0,0 +1 @@ +Smashing Magazine icon \ No newline at end of file diff --git a/resources/svg/smrt.svg b/resources/svg/smrt.svg new file mode 100644 index 0000000..621a048 --- /dev/null +++ b/resources/svg/smrt.svg @@ -0,0 +1 @@ +SMRT icon diff --git a/resources/svg/smugmug.svg b/resources/svg/smugmug.svg new file mode 100644 index 0000000..aede159 --- /dev/null +++ b/resources/svg/smugmug.svg @@ -0,0 +1 @@ +SmugMug icon diff --git a/resources/svg/snapchat.svg b/resources/svg/snapchat.svg new file mode 100644 index 0000000..8c1ce07 --- /dev/null +++ b/resources/svg/snapchat.svg @@ -0,0 +1 @@ +Snapchat icon \ No newline at end of file diff --git a/resources/svg/snapcraft.svg b/resources/svg/snapcraft.svg new file mode 100644 index 0000000..87eaba1 --- /dev/null +++ b/resources/svg/snapcraft.svg @@ -0,0 +1 @@ +Snapcraft icon \ No newline at end of file diff --git a/resources/svg/snowflake.svg b/resources/svg/snowflake.svg new file mode 100644 index 0000000..98f7b9c --- /dev/null +++ b/resources/svg/snowflake.svg @@ -0,0 +1 @@ +Snowflake icon \ No newline at end of file diff --git a/resources/svg/snyk.svg b/resources/svg/snyk.svg new file mode 100644 index 0000000..027dc52 --- /dev/null +++ b/resources/svg/snyk.svg @@ -0,0 +1 @@ +Snyk icon \ No newline at end of file diff --git a/resources/svg/society6.svg b/resources/svg/society6.svg new file mode 100644 index 0000000..2ffc15f --- /dev/null +++ b/resources/svg/society6.svg @@ -0,0 +1 @@ +Society6 icon \ No newline at end of file diff --git a/resources/svg/socket-dot-io.svg b/resources/svg/socket-dot-io.svg new file mode 100644 index 0000000..ab3a7ba --- /dev/null +++ b/resources/svg/socket-dot-io.svg @@ -0,0 +1 @@ +Socket.io icon \ No newline at end of file diff --git a/resources/svg/sogou.svg b/resources/svg/sogou.svg new file mode 100644 index 0000000..c350792 --- /dev/null +++ b/resources/svg/sogou.svg @@ -0,0 +1 @@ +Sogou icon \ No newline at end of file diff --git a/resources/svg/solidity.svg b/resources/svg/solidity.svg new file mode 100644 index 0000000..2bbc32c --- /dev/null +++ b/resources/svg/solidity.svg @@ -0,0 +1 @@ +Solidity icon diff --git a/resources/svg/sololearn.svg b/resources/svg/sololearn.svg new file mode 100644 index 0000000..3b46df1 --- /dev/null +++ b/resources/svg/sololearn.svg @@ -0,0 +1 @@ +SoloLearn icon \ No newline at end of file diff --git a/resources/svg/solus.svg b/resources/svg/solus.svg new file mode 100644 index 0000000..b0fe324 --- /dev/null +++ b/resources/svg/solus.svg @@ -0,0 +1 @@ +Solus icon \ No newline at end of file diff --git a/resources/svg/sonarcloud.svg b/resources/svg/sonarcloud.svg new file mode 100644 index 0000000..dc28ed8 --- /dev/null +++ b/resources/svg/sonarcloud.svg @@ -0,0 +1 @@ +SonarCloud icon \ No newline at end of file diff --git a/resources/svg/sonarlint.svg b/resources/svg/sonarlint.svg new file mode 100644 index 0000000..e5db316 --- /dev/null +++ b/resources/svg/sonarlint.svg @@ -0,0 +1 @@ +SonarLint icon \ No newline at end of file diff --git a/resources/svg/sonarqube.svg b/resources/svg/sonarqube.svg new file mode 100644 index 0000000..007cd40 --- /dev/null +++ b/resources/svg/sonarqube.svg @@ -0,0 +1 @@ +SonarQube icon \ No newline at end of file diff --git a/resources/svg/sonarsource.svg b/resources/svg/sonarsource.svg new file mode 100644 index 0000000..2af061c --- /dev/null +++ b/resources/svg/sonarsource.svg @@ -0,0 +1 @@ +SonarSource icon \ No newline at end of file diff --git a/resources/svg/songkick.svg b/resources/svg/songkick.svg new file mode 100644 index 0000000..a173128 --- /dev/null +++ b/resources/svg/songkick.svg @@ -0,0 +1 @@ +Songkick icon \ No newline at end of file diff --git a/resources/svg/songoda.svg b/resources/svg/songoda.svg new file mode 100644 index 0000000..9efcf9b --- /dev/null +++ b/resources/svg/songoda.svg @@ -0,0 +1 @@ +Songoda icon \ No newline at end of file diff --git a/resources/svg/sonicwall.svg b/resources/svg/sonicwall.svg new file mode 100644 index 0000000..186434e --- /dev/null +++ b/resources/svg/sonicwall.svg @@ -0,0 +1 @@ +SonicWall icon \ No newline at end of file diff --git a/resources/svg/sonos.svg b/resources/svg/sonos.svg new file mode 100644 index 0000000..55e0aa3 --- /dev/null +++ b/resources/svg/sonos.svg @@ -0,0 +1 @@ +Sonos icon \ No newline at end of file diff --git a/resources/svg/soundcloud.svg b/resources/svg/soundcloud.svg new file mode 100644 index 0000000..a4484aa --- /dev/null +++ b/resources/svg/soundcloud.svg @@ -0,0 +1 @@ +SoundCloud icon \ No newline at end of file diff --git a/resources/svg/sourceengine.svg b/resources/svg/sourceengine.svg new file mode 100644 index 0000000..34b70ca --- /dev/null +++ b/resources/svg/sourceengine.svg @@ -0,0 +1 @@ +Source Engine icon \ No newline at end of file diff --git a/resources/svg/sourceforge.svg b/resources/svg/sourceforge.svg new file mode 100644 index 0000000..04fbe2d --- /dev/null +++ b/resources/svg/sourceforge.svg @@ -0,0 +1 @@ +SourceForge icon diff --git a/resources/svg/sourcegraph.svg b/resources/svg/sourcegraph.svg new file mode 100644 index 0000000..277161d --- /dev/null +++ b/resources/svg/sourcegraph.svg @@ -0,0 +1 @@ +Sourcegraph icon \ No newline at end of file diff --git a/resources/svg/southwestairlines.svg b/resources/svg/southwestairlines.svg new file mode 100644 index 0000000..c9bb730 --- /dev/null +++ b/resources/svg/southwestairlines.svg @@ -0,0 +1 @@ +Southwest Airlines icon \ No newline at end of file diff --git a/resources/svg/spacemacs.svg b/resources/svg/spacemacs.svg new file mode 100644 index 0000000..55ab064 --- /dev/null +++ b/resources/svg/spacemacs.svg @@ -0,0 +1 @@ +Spacemacs icon \ No newline at end of file diff --git a/resources/svg/spacex.svg b/resources/svg/spacex.svg new file mode 100644 index 0000000..e88afe1 --- /dev/null +++ b/resources/svg/spacex.svg @@ -0,0 +1 @@ +SpaceX icon \ No newline at end of file diff --git a/resources/svg/sparkar.svg b/resources/svg/sparkar.svg new file mode 100644 index 0000000..7e8c017 --- /dev/null +++ b/resources/svg/sparkar.svg @@ -0,0 +1 @@ +Spark AR icon \ No newline at end of file diff --git a/resources/svg/sparkasse.svg b/resources/svg/sparkasse.svg new file mode 100644 index 0000000..e905c90 --- /dev/null +++ b/resources/svg/sparkasse.svg @@ -0,0 +1 @@ +Sparkasse icon \ No newline at end of file diff --git a/resources/svg/sparkfun.svg b/resources/svg/sparkfun.svg new file mode 100644 index 0000000..b0008d3 --- /dev/null +++ b/resources/svg/sparkfun.svg @@ -0,0 +1 @@ +SparkFun icon \ No newline at end of file diff --git a/resources/svg/sparkpost.svg b/resources/svg/sparkpost.svg new file mode 100644 index 0000000..eb8d31c --- /dev/null +++ b/resources/svg/sparkpost.svg @@ -0,0 +1 @@ +SparkPost icon \ No newline at end of file diff --git a/resources/svg/spdx.svg b/resources/svg/spdx.svg new file mode 100644 index 0000000..3d40e76 --- /dev/null +++ b/resources/svg/spdx.svg @@ -0,0 +1 @@ +SPDX icon \ No newline at end of file diff --git a/resources/svg/speakerdeck.svg b/resources/svg/speakerdeck.svg new file mode 100644 index 0000000..b7fbc4e --- /dev/null +++ b/resources/svg/speakerdeck.svg @@ -0,0 +1 @@ +Speaker Deck icon \ No newline at end of file diff --git a/resources/svg/spectrum.svg b/resources/svg/spectrum.svg new file mode 100644 index 0000000..59bd1b9 --- /dev/null +++ b/resources/svg/spectrum.svg @@ -0,0 +1 @@ +Spectrum icon diff --git a/resources/svg/speedtest.svg b/resources/svg/speedtest.svg new file mode 100644 index 0000000..139091a --- /dev/null +++ b/resources/svg/speedtest.svg @@ -0,0 +1 @@ +Speedtest icon \ No newline at end of file diff --git a/resources/svg/spinnaker.svg b/resources/svg/spinnaker.svg new file mode 100644 index 0000000..9bfb660 --- /dev/null +++ b/resources/svg/spinnaker.svg @@ -0,0 +1 @@ +Spinnaker icon \ No newline at end of file diff --git a/resources/svg/spinrilla.svg b/resources/svg/spinrilla.svg new file mode 100644 index 0000000..f01bfcf --- /dev/null +++ b/resources/svg/spinrilla.svg @@ -0,0 +1 @@ +Spinrilla icon \ No newline at end of file diff --git a/resources/svg/splunk.svg b/resources/svg/splunk.svg new file mode 100644 index 0000000..e2f4130 --- /dev/null +++ b/resources/svg/splunk.svg @@ -0,0 +1 @@ +Splunk icon \ No newline at end of file diff --git a/resources/svg/spotify.svg b/resources/svg/spotify.svg new file mode 100644 index 0000000..ab38574 --- /dev/null +++ b/resources/svg/spotify.svg @@ -0,0 +1 @@ +Spotify icon \ No newline at end of file diff --git a/resources/svg/spotlight.svg b/resources/svg/spotlight.svg new file mode 100644 index 0000000..9bbbb3d --- /dev/null +++ b/resources/svg/spotlight.svg @@ -0,0 +1 @@ +Spotlight icon \ No newline at end of file diff --git a/resources/svg/spreaker.svg b/resources/svg/spreaker.svg new file mode 100644 index 0000000..fab7a29 --- /dev/null +++ b/resources/svg/spreaker.svg @@ -0,0 +1 @@ +Spreaker icon \ No newline at end of file diff --git a/resources/svg/spring.svg b/resources/svg/spring.svg new file mode 100644 index 0000000..78bbcfd --- /dev/null +++ b/resources/svg/spring.svg @@ -0,0 +1 @@ +Spring icon \ No newline at end of file diff --git a/resources/svg/sprint.svg b/resources/svg/sprint.svg new file mode 100644 index 0000000..4f05ba8 --- /dev/null +++ b/resources/svg/sprint.svg @@ -0,0 +1 @@ +Sprint icon \ No newline at end of file diff --git a/resources/svg/spyderide.svg b/resources/svg/spyderide.svg new file mode 100644 index 0000000..b427d65 --- /dev/null +++ b/resources/svg/spyderide.svg @@ -0,0 +1 @@ +Spyder IDE icon \ No newline at end of file diff --git a/resources/svg/sqlite.svg b/resources/svg/sqlite.svg new file mode 100644 index 0000000..c617ec3 --- /dev/null +++ b/resources/svg/sqlite.svg @@ -0,0 +1 @@ +SQLite icon \ No newline at end of file diff --git a/resources/svg/square.svg b/resources/svg/square.svg new file mode 100644 index 0000000..deaeff8 --- /dev/null +++ b/resources/svg/square.svg @@ -0,0 +1 @@ +Square icon diff --git a/resources/svg/squareenix.svg b/resources/svg/squareenix.svg new file mode 100644 index 0000000..1eee239 --- /dev/null +++ b/resources/svg/squareenix.svg @@ -0,0 +1 @@ +Square Enix icon \ No newline at end of file diff --git a/resources/svg/squarespace.svg b/resources/svg/squarespace.svg new file mode 100644 index 0000000..de004f5 --- /dev/null +++ b/resources/svg/squarespace.svg @@ -0,0 +1 @@ +Squarespace icon \ No newline at end of file diff --git a/resources/svg/ssrn.svg b/resources/svg/ssrn.svg new file mode 100644 index 0000000..6ab8812 --- /dev/null +++ b/resources/svg/ssrn.svg @@ -0,0 +1 @@ +SSRN icon \ No newline at end of file diff --git a/resources/svg/stackbit.svg b/resources/svg/stackbit.svg new file mode 100644 index 0000000..b9e2962 --- /dev/null +++ b/resources/svg/stackbit.svg @@ -0,0 +1 @@ +Stackbit icon \ No newline at end of file diff --git a/resources/svg/stackexchange.svg b/resources/svg/stackexchange.svg new file mode 100644 index 0000000..19daa32 --- /dev/null +++ b/resources/svg/stackexchange.svg @@ -0,0 +1 @@ +Stack Exchange icon \ No newline at end of file diff --git a/resources/svg/stackoverflow.svg b/resources/svg/stackoverflow.svg new file mode 100644 index 0000000..fafc4f3 --- /dev/null +++ b/resources/svg/stackoverflow.svg @@ -0,0 +1 @@ +Stack Overflow icon \ No newline at end of file diff --git a/resources/svg/stackpath.svg b/resources/svg/stackpath.svg new file mode 100644 index 0000000..81c9491 --- /dev/null +++ b/resources/svg/stackpath.svg @@ -0,0 +1 @@ +StackPath icon \ No newline at end of file diff --git a/resources/svg/stackshare.svg b/resources/svg/stackshare.svg new file mode 100644 index 0000000..8eb5bd2 --- /dev/null +++ b/resources/svg/stackshare.svg @@ -0,0 +1 @@ +StackShare icon \ No newline at end of file diff --git a/resources/svg/stadia.svg b/resources/svg/stadia.svg new file mode 100644 index 0000000..0d242ef --- /dev/null +++ b/resources/svg/stadia.svg @@ -0,0 +1 @@ +Stadia icon \ No newline at end of file diff --git a/resources/svg/staffbase.svg b/resources/svg/staffbase.svg new file mode 100644 index 0000000..5c90501 --- /dev/null +++ b/resources/svg/staffbase.svg @@ -0,0 +1 @@ +Staffbase icon \ No newline at end of file diff --git a/resources/svg/starlingbank.svg b/resources/svg/starlingbank.svg new file mode 100644 index 0000000..f775c20 --- /dev/null +++ b/resources/svg/starlingbank.svg @@ -0,0 +1 @@ +Starling Bank icon \ No newline at end of file diff --git a/resources/svg/starship.svg b/resources/svg/starship.svg new file mode 100644 index 0000000..f9f7cd9 --- /dev/null +++ b/resources/svg/starship.svg @@ -0,0 +1 @@ +Starship icon \ No newline at end of file diff --git a/resources/svg/startrek.svg b/resources/svg/startrek.svg new file mode 100644 index 0000000..192aae9 --- /dev/null +++ b/resources/svg/startrek.svg @@ -0,0 +1 @@ +Star Trek icon \ No newline at end of file diff --git a/resources/svg/starz.svg b/resources/svg/starz.svg new file mode 100644 index 0000000..5303b99 --- /dev/null +++ b/resources/svg/starz.svg @@ -0,0 +1 @@ +STARZ icon \ No newline at end of file diff --git a/resources/svg/statamic.svg b/resources/svg/statamic.svg new file mode 100644 index 0000000..8afd3e6 --- /dev/null +++ b/resources/svg/statamic.svg @@ -0,0 +1 @@ +Statamic icon \ No newline at end of file diff --git a/resources/svg/staticman.svg b/resources/svg/staticman.svg new file mode 100644 index 0000000..05d36a2 --- /dev/null +++ b/resources/svg/staticman.svg @@ -0,0 +1 @@ +Staticman icon \ No newline at end of file diff --git a/resources/svg/statuspage.svg b/resources/svg/statuspage.svg new file mode 100644 index 0000000..a75b611 --- /dev/null +++ b/resources/svg/statuspage.svg @@ -0,0 +1 @@ +Statuspage icon \ No newline at end of file diff --git a/resources/svg/statuspal.svg b/resources/svg/statuspal.svg new file mode 100644 index 0000000..505a175 --- /dev/null +++ b/resources/svg/statuspal.svg @@ -0,0 +1 @@ +Statuspal icon \ No newline at end of file diff --git a/resources/svg/steam.svg b/resources/svg/steam.svg new file mode 100644 index 0000000..46a9a17 --- /dev/null +++ b/resources/svg/steam.svg @@ -0,0 +1 @@ +Steam icon \ No newline at end of file diff --git a/resources/svg/steamdb.svg b/resources/svg/steamdb.svg new file mode 100644 index 0000000..0bb14e8 --- /dev/null +++ b/resources/svg/steamdb.svg @@ -0,0 +1 @@ +SteamDB icon \ No newline at end of file diff --git a/resources/svg/steamworks.svg b/resources/svg/steamworks.svg new file mode 100644 index 0000000..276dd3b --- /dev/null +++ b/resources/svg/steamworks.svg @@ -0,0 +1 @@ +Steamworks icon \ No newline at end of file diff --git a/resources/svg/steem.svg b/resources/svg/steem.svg new file mode 100644 index 0000000..cc3e413 --- /dev/null +++ b/resources/svg/steem.svg @@ -0,0 +1 @@ +Steem icon \ No newline at end of file diff --git a/resources/svg/steemit.svg b/resources/svg/steemit.svg new file mode 100644 index 0000000..ceb917b --- /dev/null +++ b/resources/svg/steemit.svg @@ -0,0 +1 @@ +Steemit icon \ No newline at end of file diff --git a/resources/svg/steinberg.svg b/resources/svg/steinberg.svg new file mode 100644 index 0000000..51074d0 --- /dev/null +++ b/resources/svg/steinberg.svg @@ -0,0 +1 @@ +Steinberg icon \ No newline at end of file diff --git a/resources/svg/stellar.svg b/resources/svg/stellar.svg new file mode 100644 index 0000000..f927f3d --- /dev/null +++ b/resources/svg/stellar.svg @@ -0,0 +1 @@ +Stellar icon \ No newline at end of file diff --git a/resources/svg/stencyl.svg b/resources/svg/stencyl.svg new file mode 100644 index 0000000..8044a88 --- /dev/null +++ b/resources/svg/stencyl.svg @@ -0,0 +1 @@ +Stencyl icon \ No newline at end of file diff --git a/resources/svg/stimulus.svg b/resources/svg/stimulus.svg new file mode 100644 index 0000000..851823b --- /dev/null +++ b/resources/svg/stimulus.svg @@ -0,0 +1 @@ +Stimulus icon \ No newline at end of file diff --git a/resources/svg/stitcher.svg b/resources/svg/stitcher.svg new file mode 100644 index 0000000..6d25d38 --- /dev/null +++ b/resources/svg/stitcher.svg @@ -0,0 +1 @@ +Stitcher icon \ No newline at end of file diff --git a/resources/svg/stmicroelectronics.svg b/resources/svg/stmicroelectronics.svg new file mode 100644 index 0000000..b23ddfb --- /dev/null +++ b/resources/svg/stmicroelectronics.svg @@ -0,0 +1 @@ +STMicroelectronics icon \ No newline at end of file diff --git a/resources/svg/storify.svg b/resources/svg/storify.svg new file mode 100644 index 0000000..935cd32 --- /dev/null +++ b/resources/svg/storify.svg @@ -0,0 +1 @@ +Storify icon \ No newline at end of file diff --git a/resources/svg/storyblok.svg b/resources/svg/storyblok.svg new file mode 100644 index 0000000..9d83d3f --- /dev/null +++ b/resources/svg/storyblok.svg @@ -0,0 +1 @@ +Storyblok icon \ No newline at end of file diff --git a/resources/svg/storybook.svg b/resources/svg/storybook.svg new file mode 100644 index 0000000..f6fc22c --- /dev/null +++ b/resources/svg/storybook.svg @@ -0,0 +1 @@ +Storybook icon \ No newline at end of file diff --git a/resources/svg/strapi.svg b/resources/svg/strapi.svg new file mode 100644 index 0000000..342c915 --- /dev/null +++ b/resources/svg/strapi.svg @@ -0,0 +1 @@ +Strapi icon \ No newline at end of file diff --git a/resources/svg/strava.svg b/resources/svg/strava.svg new file mode 100644 index 0000000..81fa715 --- /dev/null +++ b/resources/svg/strava.svg @@ -0,0 +1 @@ +Strava icon \ No newline at end of file diff --git a/resources/svg/streamlit.svg b/resources/svg/streamlit.svg new file mode 100644 index 0000000..b98bf15 --- /dev/null +++ b/resources/svg/streamlit.svg @@ -0,0 +1 @@ +Streamlit icon diff --git a/resources/svg/stripe.svg b/resources/svg/stripe.svg new file mode 100644 index 0000000..cdc1546 --- /dev/null +++ b/resources/svg/stripe.svg @@ -0,0 +1 @@ +Stripe icon \ No newline at end of file diff --git a/resources/svg/strongswan.svg b/resources/svg/strongswan.svg new file mode 100644 index 0000000..78d1a58 --- /dev/null +++ b/resources/svg/strongswan.svg @@ -0,0 +1 @@ +strongSwan icon \ No newline at end of file diff --git a/resources/svg/stubhub.svg b/resources/svg/stubhub.svg new file mode 100644 index 0000000..7fb4b68 --- /dev/null +++ b/resources/svg/stubhub.svg @@ -0,0 +1 @@ +StubHub icon \ No newline at end of file diff --git a/resources/svg/styled-components.svg b/resources/svg/styled-components.svg new file mode 100644 index 0000000..f35e1e4 --- /dev/null +++ b/resources/svg/styled-components.svg @@ -0,0 +1 @@ +styled-components icon \ No newline at end of file diff --git a/resources/svg/stylelint.svg b/resources/svg/stylelint.svg new file mode 100644 index 0000000..76a01ab --- /dev/null +++ b/resources/svg/stylelint.svg @@ -0,0 +1 @@ +stylelint icon \ No newline at end of file diff --git a/resources/svg/styleshare.svg b/resources/svg/styleshare.svg new file mode 100644 index 0000000..e4cc2a9 --- /dev/null +++ b/resources/svg/styleshare.svg @@ -0,0 +1 @@ +StyleShare icon \ No newline at end of file diff --git a/resources/svg/stylus.svg b/resources/svg/stylus.svg new file mode 100644 index 0000000..d36440e --- /dev/null +++ b/resources/svg/stylus.svg @@ -0,0 +1 @@ +Stylus icon \ No newline at end of file diff --git a/resources/svg/subaru.svg b/resources/svg/subaru.svg new file mode 100644 index 0000000..8d711e7 --- /dev/null +++ b/resources/svg/subaru.svg @@ -0,0 +1 @@ +Subaru icon \ No newline at end of file diff --git a/resources/svg/sublimetext.svg b/resources/svg/sublimetext.svg new file mode 100644 index 0000000..bc69edc --- /dev/null +++ b/resources/svg/sublimetext.svg @@ -0,0 +1 @@ +Sublime Text icon \ No newline at end of file diff --git a/resources/svg/substack.svg b/resources/svg/substack.svg new file mode 100644 index 0000000..871b79c --- /dev/null +++ b/resources/svg/substack.svg @@ -0,0 +1 @@ +Substack icon \ No newline at end of file diff --git a/resources/svg/subversion.svg b/resources/svg/subversion.svg new file mode 100644 index 0000000..3ef33ff --- /dev/null +++ b/resources/svg/subversion.svg @@ -0,0 +1 @@ +Subversion icon \ No newline at end of file diff --git a/resources/svg/suckless.svg b/resources/svg/suckless.svg new file mode 100644 index 0000000..8800021 --- /dev/null +++ b/resources/svg/suckless.svg @@ -0,0 +1 @@ +suckless icon diff --git a/resources/svg/sumologic.svg b/resources/svg/sumologic.svg new file mode 100644 index 0000000..b90bcdf --- /dev/null +++ b/resources/svg/sumologic.svg @@ -0,0 +1 @@ +Sumo Logic icon \ No newline at end of file diff --git a/resources/svg/supabase.svg b/resources/svg/supabase.svg new file mode 100644 index 0000000..345db65 --- /dev/null +++ b/resources/svg/supabase.svg @@ -0,0 +1 @@ +Supabase icon \ No newline at end of file diff --git a/resources/svg/superuser.svg b/resources/svg/superuser.svg new file mode 100644 index 0000000..88d24d1 --- /dev/null +++ b/resources/svg/superuser.svg @@ -0,0 +1 @@ +Super User icon \ No newline at end of file diff --git a/resources/svg/surveymonkey.svg b/resources/svg/surveymonkey.svg new file mode 100644 index 0000000..103ae7e --- /dev/null +++ b/resources/svg/surveymonkey.svg @@ -0,0 +1 @@ +SurveyMonkey icon \ No newline at end of file diff --git a/resources/svg/suse.svg b/resources/svg/suse.svg new file mode 100644 index 0000000..3800444 --- /dev/null +++ b/resources/svg/suse.svg @@ -0,0 +1 @@ +SUSE icon \ No newline at end of file diff --git a/resources/svg/suzuki.svg b/resources/svg/suzuki.svg new file mode 100644 index 0000000..2692712 --- /dev/null +++ b/resources/svg/suzuki.svg @@ -0,0 +1 @@ +Suzuki icon \ No newline at end of file diff --git a/resources/svg/svelte.svg b/resources/svg/svelte.svg new file mode 100644 index 0000000..7a5573f --- /dev/null +++ b/resources/svg/svelte.svg @@ -0,0 +1 @@ +Svelte icon \ No newline at end of file diff --git a/resources/svg/svg.svg b/resources/svg/svg.svg new file mode 100644 index 0000000..c725791 --- /dev/null +++ b/resources/svg/svg.svg @@ -0,0 +1 @@ +SVG icon \ No newline at end of file diff --git a/resources/svg/svgo.svg b/resources/svg/svgo.svg new file mode 100644 index 0000000..7824434 --- /dev/null +++ b/resources/svg/svgo.svg @@ -0,0 +1 @@ +SVGO icon \ No newline at end of file diff --git a/resources/svg/swagger.svg b/resources/svg/swagger.svg new file mode 100644 index 0000000..c2c1230 --- /dev/null +++ b/resources/svg/swagger.svg @@ -0,0 +1 @@ +Swagger icon \ No newline at end of file diff --git a/resources/svg/swarm.svg b/resources/svg/swarm.svg new file mode 100644 index 0000000..9b27d60 --- /dev/null +++ b/resources/svg/swarm.svg @@ -0,0 +1 @@ +Swarm icon \ No newline at end of file diff --git a/resources/svg/swift.svg b/resources/svg/swift.svg new file mode 100644 index 0000000..1ad797b --- /dev/null +++ b/resources/svg/swift.svg @@ -0,0 +1 @@ +Swift icon \ No newline at end of file diff --git a/resources/svg/swiggy.svg b/resources/svg/swiggy.svg new file mode 100644 index 0000000..23b4dfb --- /dev/null +++ b/resources/svg/swiggy.svg @@ -0,0 +1 @@ +Swiggy icon \ No newline at end of file diff --git a/resources/svg/swiper.svg b/resources/svg/swiper.svg new file mode 100644 index 0000000..6b63bad --- /dev/null +++ b/resources/svg/swiper.svg @@ -0,0 +1 @@ +Swiper icon \ No newline at end of file diff --git a/resources/svg/symantec.svg b/resources/svg/symantec.svg new file mode 100644 index 0000000..9fe6e75 --- /dev/null +++ b/resources/svg/symantec.svg @@ -0,0 +1 @@ +Symantec icon \ No newline at end of file diff --git a/resources/svg/symfony.svg b/resources/svg/symfony.svg new file mode 100644 index 0000000..d48753f --- /dev/null +++ b/resources/svg/symfony.svg @@ -0,0 +1 @@ +Symfony icon \ No newline at end of file diff --git a/resources/svg/symphony.svg b/resources/svg/symphony.svg new file mode 100644 index 0000000..a9f568a --- /dev/null +++ b/resources/svg/symphony.svg @@ -0,0 +1 @@ +Symphony icon \ No newline at end of file diff --git a/resources/svg/sympy.svg b/resources/svg/sympy.svg new file mode 100644 index 0000000..56a8ffd --- /dev/null +++ b/resources/svg/sympy.svg @@ -0,0 +1 @@ +SymPy icon \ No newline at end of file diff --git a/resources/svg/synology.svg b/resources/svg/synology.svg new file mode 100644 index 0000000..6f83176 --- /dev/null +++ b/resources/svg/synology.svg @@ -0,0 +1 @@ +Synology icon \ No newline at end of file diff --git a/resources/svg/t-mobile.svg b/resources/svg/t-mobile.svg new file mode 100644 index 0000000..bb93736 --- /dev/null +++ b/resources/svg/t-mobile.svg @@ -0,0 +1 @@ +T-Mobile icon \ No newline at end of file diff --git a/resources/svg/tableau.svg b/resources/svg/tableau.svg new file mode 100644 index 0000000..e172865 --- /dev/null +++ b/resources/svg/tableau.svg @@ -0,0 +1 @@ +Tableau icon \ No newline at end of file diff --git a/resources/svg/tado.svg b/resources/svg/tado.svg new file mode 100644 index 0000000..88e311c --- /dev/null +++ b/resources/svg/tado.svg @@ -0,0 +1 @@ +tado° icon \ No newline at end of file diff --git a/resources/svg/tails.svg b/resources/svg/tails.svg new file mode 100644 index 0000000..fcfcd46 --- /dev/null +++ b/resources/svg/tails.svg @@ -0,0 +1 @@ +Tails icon \ No newline at end of file diff --git a/resources/svg/tailwindcss.svg b/resources/svg/tailwindcss.svg new file mode 100644 index 0000000..6af1056 --- /dev/null +++ b/resources/svg/tailwindcss.svg @@ -0,0 +1 @@ +Tailwind CSS icon \ No newline at end of file diff --git a/resources/svg/talend.svg b/resources/svg/talend.svg new file mode 100644 index 0000000..682d4f1 --- /dev/null +++ b/resources/svg/talend.svg @@ -0,0 +1 @@ +Talend icon \ No newline at end of file diff --git a/resources/svg/tampermonkey.svg b/resources/svg/tampermonkey.svg new file mode 100644 index 0000000..20b67c6 --- /dev/null +++ b/resources/svg/tampermonkey.svg @@ -0,0 +1 @@ +Tampermonkey icon \ No newline at end of file diff --git a/resources/svg/taobao.svg b/resources/svg/taobao.svg new file mode 100644 index 0000000..9ea179d --- /dev/null +++ b/resources/svg/taobao.svg @@ -0,0 +1 @@ +Taobao icon \ No newline at end of file diff --git a/resources/svg/tapas.svg b/resources/svg/tapas.svg new file mode 100644 index 0000000..bd4af8a --- /dev/null +++ b/resources/svg/tapas.svg @@ -0,0 +1 @@ +Tapas icon \ No newline at end of file diff --git a/resources/svg/tasmota.svg b/resources/svg/tasmota.svg new file mode 100644 index 0000000..4c00959 --- /dev/null +++ b/resources/svg/tasmota.svg @@ -0,0 +1 @@ +Tasmota icon \ No newline at end of file diff --git a/resources/svg/tata.svg b/resources/svg/tata.svg new file mode 100644 index 0000000..f771f9b --- /dev/null +++ b/resources/svg/tata.svg @@ -0,0 +1 @@ +Tata icon diff --git a/resources/svg/taxbuzz.svg b/resources/svg/taxbuzz.svg new file mode 100644 index 0000000..73846cc --- /dev/null +++ b/resources/svg/taxbuzz.svg @@ -0,0 +1 @@ +TaxBuzz icon \ No newline at end of file diff --git a/resources/svg/teamcity.svg b/resources/svg/teamcity.svg new file mode 100644 index 0000000..f017541 --- /dev/null +++ b/resources/svg/teamcity.svg @@ -0,0 +1 @@ +TeamCity icon \ No newline at end of file diff --git a/resources/svg/teamspeak.svg b/resources/svg/teamspeak.svg new file mode 100644 index 0000000..1abb588 --- /dev/null +++ b/resources/svg/teamspeak.svg @@ -0,0 +1 @@ +TeamSpeak icon \ No newline at end of file diff --git a/resources/svg/teamviewer.svg b/resources/svg/teamviewer.svg new file mode 100644 index 0000000..323d0bb --- /dev/null +++ b/resources/svg/teamviewer.svg @@ -0,0 +1 @@ +TeamViewer icon \ No newline at end of file diff --git a/resources/svg/ted.svg b/resources/svg/ted.svg new file mode 100644 index 0000000..59a9310 --- /dev/null +++ b/resources/svg/ted.svg @@ -0,0 +1 @@ +TED icon \ No newline at end of file diff --git a/resources/svg/teespring.svg b/resources/svg/teespring.svg new file mode 100644 index 0000000..be3863c --- /dev/null +++ b/resources/svg/teespring.svg @@ -0,0 +1 @@ +Teespring icon \ No newline at end of file diff --git a/resources/svg/tele5.svg b/resources/svg/tele5.svg new file mode 100644 index 0000000..bd9d380 --- /dev/null +++ b/resources/svg/tele5.svg @@ -0,0 +1 @@ +TELE5 icon \ No newline at end of file diff --git a/resources/svg/telegram.svg b/resources/svg/telegram.svg new file mode 100644 index 0000000..757679d --- /dev/null +++ b/resources/svg/telegram.svg @@ -0,0 +1 @@ +Telegram icon \ No newline at end of file diff --git a/resources/svg/tencentqq.svg b/resources/svg/tencentqq.svg new file mode 100644 index 0000000..d123dee --- /dev/null +++ b/resources/svg/tencentqq.svg @@ -0,0 +1 @@ +Tencent QQ icon \ No newline at end of file diff --git a/resources/svg/tencentweibo.svg b/resources/svg/tencentweibo.svg new file mode 100644 index 0000000..ed88b2b --- /dev/null +++ b/resources/svg/tencentweibo.svg @@ -0,0 +1 @@ +Tencent Weibo icon \ No newline at end of file diff --git a/resources/svg/tensorflow.svg b/resources/svg/tensorflow.svg new file mode 100644 index 0000000..cd0b9b5 --- /dev/null +++ b/resources/svg/tensorflow.svg @@ -0,0 +1 @@ +TensorFlow icon \ No newline at end of file diff --git a/resources/svg/teradata.svg b/resources/svg/teradata.svg new file mode 100644 index 0000000..b2848bd --- /dev/null +++ b/resources/svg/teradata.svg @@ -0,0 +1 @@ +Teradata icon diff --git a/resources/svg/teratail.svg b/resources/svg/teratail.svg new file mode 100644 index 0000000..078c67a --- /dev/null +++ b/resources/svg/teratail.svg @@ -0,0 +1 @@ +teratail icon \ No newline at end of file diff --git a/resources/svg/terraform.svg b/resources/svg/terraform.svg new file mode 100644 index 0000000..a1f8699 --- /dev/null +++ b/resources/svg/terraform.svg @@ -0,0 +1 @@ +Terraform icon \ No newline at end of file diff --git a/resources/svg/tesla.svg b/resources/svg/tesla.svg new file mode 100644 index 0000000..c406fc0 --- /dev/null +++ b/resources/svg/tesla.svg @@ -0,0 +1 @@ +Tesla icon \ No newline at end of file diff --git a/resources/svg/testin.svg b/resources/svg/testin.svg new file mode 100644 index 0000000..bbae17c --- /dev/null +++ b/resources/svg/testin.svg @@ -0,0 +1 @@ +Testin icon \ No newline at end of file diff --git a/resources/svg/testinglibrary.svg b/resources/svg/testinglibrary.svg new file mode 100644 index 0000000..f6d4cc8 --- /dev/null +++ b/resources/svg/testinglibrary.svg @@ -0,0 +1 @@ +Testing Library icon \ No newline at end of file diff --git a/resources/svg/textpattern.svg b/resources/svg/textpattern.svg new file mode 100644 index 0000000..2c2cc37 --- /dev/null +++ b/resources/svg/textpattern.svg @@ -0,0 +1 @@ +Textpattern icon \ No newline at end of file diff --git a/resources/svg/theconversation.svg b/resources/svg/theconversation.svg new file mode 100644 index 0000000..4e720dc --- /dev/null +++ b/resources/svg/theconversation.svg @@ -0,0 +1 @@ +The Conversation icon \ No newline at end of file diff --git a/resources/svg/theirishtimes.svg b/resources/svg/theirishtimes.svg new file mode 100644 index 0000000..32d76f1 --- /dev/null +++ b/resources/svg/theirishtimes.svg @@ -0,0 +1 @@ +The Irish Times icon \ No newline at end of file diff --git a/resources/svg/themighty.svg b/resources/svg/themighty.svg new file mode 100644 index 0000000..3e77a59 --- /dev/null +++ b/resources/svg/themighty.svg @@ -0,0 +1 @@ +The Mighty icon \ No newline at end of file diff --git a/resources/svg/themodelsresource.svg b/resources/svg/themodelsresource.svg new file mode 100644 index 0000000..0196729 --- /dev/null +++ b/resources/svg/themodelsresource.svg @@ -0,0 +1 @@ +The Models Resource icon \ No newline at end of file diff --git a/resources/svg/themoviedatabase.svg b/resources/svg/themoviedatabase.svg new file mode 100644 index 0000000..41e9261 --- /dev/null +++ b/resources/svg/themoviedatabase.svg @@ -0,0 +1 @@ +The Movie Database icon \ No newline at end of file diff --git a/resources/svg/theregister.svg b/resources/svg/theregister.svg new file mode 100644 index 0000000..e216395 --- /dev/null +++ b/resources/svg/theregister.svg @@ -0,0 +1 @@ +The Register icon \ No newline at end of file diff --git a/resources/svg/thesoundsresource.svg b/resources/svg/thesoundsresource.svg new file mode 100644 index 0000000..674d054 --- /dev/null +++ b/resources/svg/thesoundsresource.svg @@ -0,0 +1 @@ +The Sounds Resource icon \ No newline at end of file diff --git a/resources/svg/thespritersresource.svg b/resources/svg/thespritersresource.svg new file mode 100644 index 0000000..fb4f7c4 --- /dev/null +++ b/resources/svg/thespritersresource.svg @@ -0,0 +1 @@ +The Spriters Resource icon \ No newline at end of file diff --git a/resources/svg/thewashingtonpost.svg b/resources/svg/thewashingtonpost.svg new file mode 100644 index 0000000..6894147 --- /dev/null +++ b/resources/svg/thewashingtonpost.svg @@ -0,0 +1 @@ +The Washington Post icon \ No newline at end of file diff --git a/resources/svg/thinkpad.svg b/resources/svg/thinkpad.svg new file mode 100644 index 0000000..b6948a0 --- /dev/null +++ b/resources/svg/thinkpad.svg @@ -0,0 +1 @@ +ThinkPad icon \ No newline at end of file diff --git a/resources/svg/three-dot-js.svg b/resources/svg/three-dot-js.svg new file mode 100644 index 0000000..7f161ec --- /dev/null +++ b/resources/svg/three-dot-js.svg @@ -0,0 +1 @@ +Three.js icon \ No newline at end of file diff --git a/resources/svg/threema.svg b/resources/svg/threema.svg new file mode 100644 index 0000000..f55a88c --- /dev/null +++ b/resources/svg/threema.svg @@ -0,0 +1 @@ +Threema icon \ No newline at end of file diff --git a/resources/svg/thumbtack.svg b/resources/svg/thumbtack.svg new file mode 100644 index 0000000..dd679d2 --- /dev/null +++ b/resources/svg/thumbtack.svg @@ -0,0 +1 @@ +Thumbtack icon \ No newline at end of file diff --git a/resources/svg/thunderbird.svg b/resources/svg/thunderbird.svg new file mode 100644 index 0000000..3690b58 --- /dev/null +++ b/resources/svg/thunderbird.svg @@ -0,0 +1 @@ +Thunderbird icon \ No newline at end of file diff --git a/resources/svg/thymeleaf.svg b/resources/svg/thymeleaf.svg new file mode 100644 index 0000000..45adab9 --- /dev/null +++ b/resources/svg/thymeleaf.svg @@ -0,0 +1 @@ +Thymeleaf icon \ No newline at end of file diff --git a/resources/svg/ticketmaster.svg b/resources/svg/ticketmaster.svg new file mode 100644 index 0000000..e9737df --- /dev/null +++ b/resources/svg/ticketmaster.svg @@ -0,0 +1 @@ +Ticketmaster icon \ No newline at end of file diff --git a/resources/svg/tidal.svg b/resources/svg/tidal.svg new file mode 100644 index 0000000..7753465 --- /dev/null +++ b/resources/svg/tidal.svg @@ -0,0 +1 @@ +Tidal icon \ No newline at end of file diff --git a/resources/svg/tide.svg b/resources/svg/tide.svg new file mode 100644 index 0000000..f9f1287 --- /dev/null +++ b/resources/svg/tide.svg @@ -0,0 +1 @@ +Tide icon diff --git a/resources/svg/tiktok.svg b/resources/svg/tiktok.svg new file mode 100644 index 0000000..f4cb0df --- /dev/null +++ b/resources/svg/tiktok.svg @@ -0,0 +1 @@ +TikTok icon \ No newline at end of file diff --git a/resources/svg/tile.svg b/resources/svg/tile.svg new file mode 100644 index 0000000..7497fe8 --- /dev/null +++ b/resources/svg/tile.svg @@ -0,0 +1 @@ +Tile icon \ No newline at end of file diff --git a/resources/svg/timescale.svg b/resources/svg/timescale.svg new file mode 100644 index 0000000..c48b3d7 --- /dev/null +++ b/resources/svg/timescale.svg @@ -0,0 +1 @@ +Timescale icon \ No newline at end of file diff --git a/resources/svg/tinder.svg b/resources/svg/tinder.svg new file mode 100644 index 0000000..667d9ce --- /dev/null +++ b/resources/svg/tinder.svg @@ -0,0 +1 @@ +Tinder icon \ No newline at end of file diff --git a/resources/svg/tinyletter.svg b/resources/svg/tinyletter.svg new file mode 100644 index 0000000..a046ba2 --- /dev/null +++ b/resources/svg/tinyletter.svg @@ -0,0 +1 @@ +TinyLetter icon \ No newline at end of file diff --git a/resources/svg/tmux.svg b/resources/svg/tmux.svg new file mode 100644 index 0000000..62277d9 --- /dev/null +++ b/resources/svg/tmux.svg @@ -0,0 +1 @@ +tmux icon \ No newline at end of file diff --git a/resources/svg/todoist.svg b/resources/svg/todoist.svg new file mode 100644 index 0000000..389fbf7 --- /dev/null +++ b/resources/svg/todoist.svg @@ -0,0 +1 @@ +Todoist icon \ No newline at end of file diff --git a/resources/svg/toggl.svg b/resources/svg/toggl.svg new file mode 100644 index 0000000..03f9558 --- /dev/null +++ b/resources/svg/toggl.svg @@ -0,0 +1 @@ +Toggl icon \ No newline at end of file diff --git a/resources/svg/tokyometro.svg b/resources/svg/tokyometro.svg new file mode 100644 index 0000000..56f2cf2 --- /dev/null +++ b/resources/svg/tokyometro.svg @@ -0,0 +1 @@ +Tokyo Metro icon \ No newline at end of file diff --git a/resources/svg/tomorrowland.svg b/resources/svg/tomorrowland.svg new file mode 100644 index 0000000..45ffb2c --- /dev/null +++ b/resources/svg/tomorrowland.svg @@ -0,0 +1 @@ +Tomorrowland icon diff --git a/resources/svg/topcoder.svg b/resources/svg/topcoder.svg new file mode 100644 index 0000000..63c882e --- /dev/null +++ b/resources/svg/topcoder.svg @@ -0,0 +1 @@ +Topcoder icon \ No newline at end of file diff --git a/resources/svg/toptal.svg b/resources/svg/toptal.svg new file mode 100644 index 0000000..72e698c --- /dev/null +++ b/resources/svg/toptal.svg @@ -0,0 +1 @@ +Toptal icon \ No newline at end of file diff --git a/resources/svg/torbrowser.svg b/resources/svg/torbrowser.svg new file mode 100644 index 0000000..32ec54e --- /dev/null +++ b/resources/svg/torbrowser.svg @@ -0,0 +1 @@ +Tor Browser icon \ No newline at end of file diff --git a/resources/svg/torproject.svg b/resources/svg/torproject.svg new file mode 100644 index 0000000..4962628 --- /dev/null +++ b/resources/svg/torproject.svg @@ -0,0 +1 @@ +Tor Project icon \ No newline at end of file diff --git a/resources/svg/toshiba.svg b/resources/svg/toshiba.svg new file mode 100644 index 0000000..848a0ac --- /dev/null +++ b/resources/svg/toshiba.svg @@ -0,0 +1 @@ +Toshiba icon \ No newline at end of file diff --git a/resources/svg/toyota.svg b/resources/svg/toyota.svg new file mode 100644 index 0000000..f0d5e3a --- /dev/null +++ b/resources/svg/toyota.svg @@ -0,0 +1 @@ +Toyota icon \ No newline at end of file diff --git a/resources/svg/tp-link.svg b/resources/svg/tp-link.svg new file mode 100644 index 0000000..e84147e --- /dev/null +++ b/resources/svg/tp-link.svg @@ -0,0 +1 @@ +TP-Link icon \ No newline at end of file diff --git a/resources/svg/trainerroad.svg b/resources/svg/trainerroad.svg new file mode 100644 index 0000000..6fad49a --- /dev/null +++ b/resources/svg/trainerroad.svg @@ -0,0 +1 @@ +TrainerRoad icon \ No newline at end of file diff --git a/resources/svg/trakt.svg b/resources/svg/trakt.svg new file mode 100644 index 0000000..59cacbd --- /dev/null +++ b/resources/svg/trakt.svg @@ -0,0 +1 @@ +Trakt icon \ No newline at end of file diff --git a/resources/svg/transferwise.svg b/resources/svg/transferwise.svg new file mode 100644 index 0000000..3e664cf --- /dev/null +++ b/resources/svg/transferwise.svg @@ -0,0 +1 @@ +TransferWise icon \ No newline at end of file diff --git a/resources/svg/transportforireland.svg b/resources/svg/transportforireland.svg new file mode 100644 index 0000000..879fcbd --- /dev/null +++ b/resources/svg/transportforireland.svg @@ -0,0 +1 @@ +Transport for Ireland icon diff --git a/resources/svg/transportforlondon.svg b/resources/svg/transportforlondon.svg new file mode 100644 index 0000000..9b478ce --- /dev/null +++ b/resources/svg/transportforlondon.svg @@ -0,0 +1 @@ +Transport for London icon \ No newline at end of file diff --git a/resources/svg/travisci.svg b/resources/svg/travisci.svg new file mode 100644 index 0000000..e17687e --- /dev/null +++ b/resources/svg/travisci.svg @@ -0,0 +1 @@ +Travis CI icon \ No newline at end of file diff --git a/resources/svg/treehouse.svg b/resources/svg/treehouse.svg new file mode 100644 index 0000000..c6176a8 --- /dev/null +++ b/resources/svg/treehouse.svg @@ -0,0 +1 @@ +Treehouse icon \ No newline at end of file diff --git a/resources/svg/trello.svg b/resources/svg/trello.svg new file mode 100644 index 0000000..11fbdc8 --- /dev/null +++ b/resources/svg/trello.svg @@ -0,0 +1 @@ +Trello icon \ No newline at end of file diff --git a/resources/svg/trendmicro.svg b/resources/svg/trendmicro.svg new file mode 100644 index 0000000..62f4afa --- /dev/null +++ b/resources/svg/trendmicro.svg @@ -0,0 +1 @@ +Trend Micro icon diff --git a/resources/svg/treyarch.svg b/resources/svg/treyarch.svg new file mode 100644 index 0000000..5efbf4d --- /dev/null +++ b/resources/svg/treyarch.svg @@ -0,0 +1 @@ +Treyarch icon \ No newline at end of file diff --git a/resources/svg/triller.svg b/resources/svg/triller.svg new file mode 100644 index 0000000..54e0770 --- /dev/null +++ b/resources/svg/triller.svg @@ -0,0 +1 @@ +Triller icon \ No newline at end of file diff --git a/resources/svg/trino.svg b/resources/svg/trino.svg new file mode 100644 index 0000000..9c8d57d --- /dev/null +++ b/resources/svg/trino.svg @@ -0,0 +1 @@ +Trino icon \ No newline at end of file diff --git a/resources/svg/trip-dot-com.svg b/resources/svg/trip-dot-com.svg new file mode 100644 index 0000000..e579a10 --- /dev/null +++ b/resources/svg/trip-dot-com.svg @@ -0,0 +1 @@ +Trip.com icon \ No newline at end of file diff --git a/resources/svg/tripadvisor.svg b/resources/svg/tripadvisor.svg new file mode 100644 index 0000000..8584ee4 --- /dev/null +++ b/resources/svg/tripadvisor.svg @@ -0,0 +1 @@ +Tripadvisor icon diff --git a/resources/svg/trove.svg b/resources/svg/trove.svg new file mode 100644 index 0000000..ca917a2 --- /dev/null +++ b/resources/svg/trove.svg @@ -0,0 +1 @@ +Trove icon \ No newline at end of file diff --git a/resources/svg/truenas.svg b/resources/svg/truenas.svg new file mode 100644 index 0000000..c3c1662 --- /dev/null +++ b/resources/svg/truenas.svg @@ -0,0 +1 @@ +TrueNAS icon \ No newline at end of file diff --git a/resources/svg/trulia.svg b/resources/svg/trulia.svg new file mode 100644 index 0000000..2fd5959 --- /dev/null +++ b/resources/svg/trulia.svg @@ -0,0 +1 @@ +Trulia icon \ No newline at end of file diff --git a/resources/svg/trustedshops.svg b/resources/svg/trustedshops.svg new file mode 100644 index 0000000..fd34264 --- /dev/null +++ b/resources/svg/trustedshops.svg @@ -0,0 +1 @@ +Trusted Shops icon \ No newline at end of file diff --git a/resources/svg/trustpilot.svg b/resources/svg/trustpilot.svg new file mode 100644 index 0000000..c44f49e --- /dev/null +++ b/resources/svg/trustpilot.svg @@ -0,0 +1 @@ +Trustpilot icon \ No newline at end of file diff --git a/resources/svg/tryhackme.svg b/resources/svg/tryhackme.svg new file mode 100644 index 0000000..836a4be --- /dev/null +++ b/resources/svg/tryhackme.svg @@ -0,0 +1 @@ +TryHackMe icon \ No newline at end of file diff --git a/resources/svg/tryitonline.svg b/resources/svg/tryitonline.svg new file mode 100644 index 0000000..3c75a48 --- /dev/null +++ b/resources/svg/tryitonline.svg @@ -0,0 +1 @@ +Try It Online icon \ No newline at end of file diff --git a/resources/svg/ts-node.svg b/resources/svg/ts-node.svg new file mode 100644 index 0000000..1299eff --- /dev/null +++ b/resources/svg/ts-node.svg @@ -0,0 +1 @@ +ts-node icon \ No newline at end of file diff --git a/resources/svg/tui.svg b/resources/svg/tui.svg new file mode 100644 index 0000000..c745066 --- /dev/null +++ b/resources/svg/tui.svg @@ -0,0 +1 @@ +TUI icon \ No newline at end of file diff --git a/resources/svg/tumblr.svg b/resources/svg/tumblr.svg new file mode 100644 index 0000000..0112f9c --- /dev/null +++ b/resources/svg/tumblr.svg @@ -0,0 +1 @@ +Tumblr icon \ No newline at end of file diff --git a/resources/svg/tunein.svg b/resources/svg/tunein.svg new file mode 100644 index 0000000..4d8be36 --- /dev/null +++ b/resources/svg/tunein.svg @@ -0,0 +1 @@ +TuneIn icon \ No newline at end of file diff --git a/resources/svg/turbosquid.svg b/resources/svg/turbosquid.svg new file mode 100644 index 0000000..656e0e8 --- /dev/null +++ b/resources/svg/turbosquid.svg @@ -0,0 +1 @@ +TurboSquid icon \ No newline at end of file diff --git a/resources/svg/turkishairlines.svg b/resources/svg/turkishairlines.svg new file mode 100644 index 0000000..ca8428a --- /dev/null +++ b/resources/svg/turkishairlines.svg @@ -0,0 +1 @@ +Turkish Airlines icon \ No newline at end of file diff --git a/resources/svg/tutanota.svg b/resources/svg/tutanota.svg new file mode 100644 index 0000000..3a3a50e --- /dev/null +++ b/resources/svg/tutanota.svg @@ -0,0 +1 @@ +Tutanota icon \ No newline at end of file diff --git a/resources/svg/tvtime.svg b/resources/svg/tvtime.svg new file mode 100644 index 0000000..3fec82a --- /dev/null +++ b/resources/svg/tvtime.svg @@ -0,0 +1 @@ +TV Time icon \ No newline at end of file diff --git a/resources/svg/twilio.svg b/resources/svg/twilio.svg new file mode 100644 index 0000000..8cb759a --- /dev/null +++ b/resources/svg/twilio.svg @@ -0,0 +1 @@ +Twilio icon \ No newline at end of file diff --git a/resources/svg/twitch.svg b/resources/svg/twitch.svg new file mode 100644 index 0000000..50dbb41 --- /dev/null +++ b/resources/svg/twitch.svg @@ -0,0 +1 @@ +Twitch icon diff --git a/resources/svg/twitter.svg b/resources/svg/twitter.svg new file mode 100644 index 0000000..b772db3 --- /dev/null +++ b/resources/svg/twitter.svg @@ -0,0 +1 @@ +Twitter icon \ No newline at end of file diff --git a/resources/svg/twoo.svg b/resources/svg/twoo.svg new file mode 100644 index 0000000..6621782 --- /dev/null +++ b/resources/svg/twoo.svg @@ -0,0 +1 @@ +Twoo icon \ No newline at end of file diff --git a/resources/svg/typescript.svg b/resources/svg/typescript.svg new file mode 100644 index 0000000..ace0120 --- /dev/null +++ b/resources/svg/typescript.svg @@ -0,0 +1 @@ +TypeScript icon \ No newline at end of file diff --git a/resources/svg/typo3.svg b/resources/svg/typo3.svg new file mode 100644 index 0000000..3d6637e --- /dev/null +++ b/resources/svg/typo3.svg @@ -0,0 +1 @@ +TYPO3 icon \ No newline at end of file diff --git a/resources/svg/uber.svg b/resources/svg/uber.svg new file mode 100644 index 0000000..739156d --- /dev/null +++ b/resources/svg/uber.svg @@ -0,0 +1 @@ +Uber icon \ No newline at end of file diff --git a/resources/svg/ubereats.svg b/resources/svg/ubereats.svg new file mode 100644 index 0000000..9ed6596 --- /dev/null +++ b/resources/svg/ubereats.svg @@ -0,0 +1 @@ +Uber Eats icon \ No newline at end of file diff --git a/resources/svg/ubiquiti.svg b/resources/svg/ubiquiti.svg new file mode 100644 index 0000000..6523f29 --- /dev/null +++ b/resources/svg/ubiquiti.svg @@ -0,0 +1 @@ +Ubiquiti icon \ No newline at end of file diff --git a/resources/svg/ubisoft.svg b/resources/svg/ubisoft.svg new file mode 100644 index 0000000..8d63b82 --- /dev/null +++ b/resources/svg/ubisoft.svg @@ -0,0 +1 @@ +Ubisoft icon \ No newline at end of file diff --git a/resources/svg/ublockorigin.svg b/resources/svg/ublockorigin.svg new file mode 100644 index 0000000..d11e264 --- /dev/null +++ b/resources/svg/ublockorigin.svg @@ -0,0 +1 @@ +uBlock Origin icon \ No newline at end of file diff --git a/resources/svg/ubuntu.svg b/resources/svg/ubuntu.svg new file mode 100644 index 0000000..818a152 --- /dev/null +++ b/resources/svg/ubuntu.svg @@ -0,0 +1 @@ +Ubuntu icon \ No newline at end of file diff --git a/resources/svg/udacity.svg b/resources/svg/udacity.svg new file mode 100644 index 0000000..a7f9c29 --- /dev/null +++ b/resources/svg/udacity.svg @@ -0,0 +1 @@ +Udacity icon \ No newline at end of file diff --git a/resources/svg/udemy.svg b/resources/svg/udemy.svg new file mode 100644 index 0000000..069d6c4 --- /dev/null +++ b/resources/svg/udemy.svg @@ -0,0 +1 @@ +Udemy icon \ No newline at end of file diff --git a/resources/svg/uikit.svg b/resources/svg/uikit.svg new file mode 100644 index 0000000..a806946 --- /dev/null +++ b/resources/svg/uikit.svg @@ -0,0 +1 @@ +UIkit icon \ No newline at end of file diff --git a/resources/svg/ulule.svg b/resources/svg/ulule.svg new file mode 100644 index 0000000..0900721 --- /dev/null +++ b/resources/svg/ulule.svg @@ -0,0 +1 @@ +Ulule icon \ No newline at end of file diff --git a/resources/svg/umbraco.svg b/resources/svg/umbraco.svg new file mode 100644 index 0000000..6d6af63 --- /dev/null +++ b/resources/svg/umbraco.svg @@ -0,0 +1 @@ +Umbraco icon \ No newline at end of file diff --git a/resources/svg/unacademy.svg b/resources/svg/unacademy.svg new file mode 100644 index 0000000..92d0d5a --- /dev/null +++ b/resources/svg/unacademy.svg @@ -0,0 +1 @@ +Unacademy icon \ No newline at end of file diff --git a/resources/svg/undertale.svg b/resources/svg/undertale.svg new file mode 100644 index 0000000..ef8280a --- /dev/null +++ b/resources/svg/undertale.svg @@ -0,0 +1 @@ +Undertale icon \ No newline at end of file diff --git a/resources/svg/unicode.svg b/resources/svg/unicode.svg new file mode 100644 index 0000000..c485eb4 --- /dev/null +++ b/resources/svg/unicode.svg @@ -0,0 +1 @@ +Unicode icon diff --git a/resources/svg/unilever.svg b/resources/svg/unilever.svg new file mode 100644 index 0000000..844f93b --- /dev/null +++ b/resources/svg/unilever.svg @@ -0,0 +1 @@ +Unilever icon \ No newline at end of file diff --git a/resources/svg/unitedairlines.svg b/resources/svg/unitedairlines.svg new file mode 100644 index 0000000..255dc31 --- /dev/null +++ b/resources/svg/unitedairlines.svg @@ -0,0 +1 @@ +United Airlines icon \ No newline at end of file diff --git a/resources/svg/unity.svg b/resources/svg/unity.svg new file mode 100644 index 0000000..2158f46 --- /dev/null +++ b/resources/svg/unity.svg @@ -0,0 +1 @@ +Unity icon \ No newline at end of file diff --git a/resources/svg/unraid.svg b/resources/svg/unraid.svg new file mode 100644 index 0000000..d5d5d45 --- /dev/null +++ b/resources/svg/unraid.svg @@ -0,0 +1 @@ +Unraid icon \ No newline at end of file diff --git a/resources/svg/unrealengine.svg b/resources/svg/unrealengine.svg new file mode 100644 index 0000000..5fe9dcc --- /dev/null +++ b/resources/svg/unrealengine.svg @@ -0,0 +1 @@ +Unreal Engine icon \ No newline at end of file diff --git a/resources/svg/unsplash.svg b/resources/svg/unsplash.svg new file mode 100644 index 0000000..ca71d42 --- /dev/null +++ b/resources/svg/unsplash.svg @@ -0,0 +1 @@ +Unsplash icon \ No newline at end of file diff --git a/resources/svg/untangle.svg b/resources/svg/untangle.svg new file mode 100644 index 0000000..ee4fcf8 --- /dev/null +++ b/resources/svg/untangle.svg @@ -0,0 +1 @@ +Untangle icon diff --git a/resources/svg/untappd.svg b/resources/svg/untappd.svg new file mode 100644 index 0000000..d1ba269 --- /dev/null +++ b/resources/svg/untappd.svg @@ -0,0 +1 @@ +Untappd icon \ No newline at end of file diff --git a/resources/svg/uplabs.svg b/resources/svg/uplabs.svg new file mode 100644 index 0000000..20b9115 --- /dev/null +++ b/resources/svg/uplabs.svg @@ -0,0 +1 @@ +UpLabs icon \ No newline at end of file diff --git a/resources/svg/uploaded.svg b/resources/svg/uploaded.svg new file mode 100644 index 0000000..37142eb --- /dev/null +++ b/resources/svg/uploaded.svg @@ -0,0 +1 @@ +Uploaded icon \ No newline at end of file diff --git a/resources/svg/ups.svg b/resources/svg/ups.svg new file mode 100644 index 0000000..91e2a16 --- /dev/null +++ b/resources/svg/ups.svg @@ -0,0 +1 @@ +UPS icon \ No newline at end of file diff --git a/resources/svg/upwork.svg b/resources/svg/upwork.svg new file mode 100644 index 0000000..f65102b --- /dev/null +++ b/resources/svg/upwork.svg @@ -0,0 +1 @@ +Upwork icon \ No newline at end of file diff --git a/resources/svg/usps.svg b/resources/svg/usps.svg new file mode 100644 index 0000000..168d117 --- /dev/null +++ b/resources/svg/usps.svg @@ -0,0 +1 @@ +USPS icon \ No newline at end of file diff --git a/resources/svg/v.svg b/resources/svg/v.svg new file mode 100644 index 0000000..3a5cec4 --- /dev/null +++ b/resources/svg/v.svg @@ -0,0 +1 @@ +V icon \ No newline at end of file diff --git a/resources/svg/v8.svg b/resources/svg/v8.svg new file mode 100644 index 0000000..37341fc --- /dev/null +++ b/resources/svg/v8.svg @@ -0,0 +1 @@ +V8 icon \ No newline at end of file diff --git a/resources/svg/vaadin.svg b/resources/svg/vaadin.svg new file mode 100644 index 0000000..e1bf9b2 --- /dev/null +++ b/resources/svg/vaadin.svg @@ -0,0 +1 @@ +Vaadin icon \ No newline at end of file diff --git a/resources/svg/vagrant.svg b/resources/svg/vagrant.svg new file mode 100644 index 0000000..db9f67f --- /dev/null +++ b/resources/svg/vagrant.svg @@ -0,0 +1 @@ +Vagrant icon \ No newline at end of file diff --git a/resources/svg/valve.svg b/resources/svg/valve.svg new file mode 100644 index 0000000..b9c7f13 --- /dev/null +++ b/resources/svg/valve.svg @@ -0,0 +1 @@ +Valve icon \ No newline at end of file diff --git a/resources/svg/vapor.svg b/resources/svg/vapor.svg new file mode 100644 index 0000000..ac969c6 --- /dev/null +++ b/resources/svg/vapor.svg @@ -0,0 +1 @@ +Vapor icon \ No newline at end of file diff --git a/resources/svg/vault.svg b/resources/svg/vault.svg new file mode 100644 index 0000000..7a3b29b --- /dev/null +++ b/resources/svg/vault.svg @@ -0,0 +1 @@ +Vault icon \ No newline at end of file diff --git a/resources/svg/vauxhall.svg b/resources/svg/vauxhall.svg new file mode 100644 index 0000000..415ea56 --- /dev/null +++ b/resources/svg/vauxhall.svg @@ -0,0 +1 @@ +Vauxhall icon \ No newline at end of file diff --git a/resources/svg/vbulletin.svg b/resources/svg/vbulletin.svg new file mode 100644 index 0000000..e79ef54 --- /dev/null +++ b/resources/svg/vbulletin.svg @@ -0,0 +1 @@ +vBulletin icon \ No newline at end of file diff --git a/resources/svg/vectorlogozone.svg b/resources/svg/vectorlogozone.svg new file mode 100644 index 0000000..bdf5b4b --- /dev/null +++ b/resources/svg/vectorlogozone.svg @@ -0,0 +1 @@ +Vector Logo Zone icon \ No newline at end of file diff --git a/resources/svg/vectorworks.svg b/resources/svg/vectorworks.svg new file mode 100644 index 0000000..df85cec --- /dev/null +++ b/resources/svg/vectorworks.svg @@ -0,0 +1 @@ +Vectorworks icon diff --git a/resources/svg/veeam.svg b/resources/svg/veeam.svg new file mode 100644 index 0000000..6d88bc8 --- /dev/null +++ b/resources/svg/veeam.svg @@ -0,0 +1 @@ +Veeam icon \ No newline at end of file diff --git a/resources/svg/veepee.svg b/resources/svg/veepee.svg new file mode 100644 index 0000000..80b06f1 --- /dev/null +++ b/resources/svg/veepee.svg @@ -0,0 +1 @@ +Veepee icon \ No newline at end of file diff --git a/resources/svg/venmo.svg b/resources/svg/venmo.svg new file mode 100644 index 0000000..207af18 --- /dev/null +++ b/resources/svg/venmo.svg @@ -0,0 +1 @@ +Venmo icon \ No newline at end of file diff --git a/resources/svg/vercel.svg b/resources/svg/vercel.svg new file mode 100644 index 0000000..38c033c --- /dev/null +++ b/resources/svg/vercel.svg @@ -0,0 +1 @@ +Vercel icon \ No newline at end of file diff --git a/resources/svg/veritas.svg b/resources/svg/veritas.svg new file mode 100644 index 0000000..1f3c13b --- /dev/null +++ b/resources/svg/veritas.svg @@ -0,0 +1 @@ +Veritas icon diff --git a/resources/svg/verizon.svg b/resources/svg/verizon.svg new file mode 100644 index 0000000..00ba909 --- /dev/null +++ b/resources/svg/verizon.svg @@ -0,0 +1 @@ +Verizon icon \ No newline at end of file diff --git a/resources/svg/vfairs.svg b/resources/svg/vfairs.svg new file mode 100644 index 0000000..e93a14f --- /dev/null +++ b/resources/svg/vfairs.svg @@ -0,0 +1 @@ +vFairs icon \ No newline at end of file diff --git a/resources/svg/viadeo.svg b/resources/svg/viadeo.svg new file mode 100644 index 0000000..1742302 --- /dev/null +++ b/resources/svg/viadeo.svg @@ -0,0 +1 @@ +Viadeo icon \ No newline at end of file diff --git a/resources/svg/viber.svg b/resources/svg/viber.svg new file mode 100644 index 0000000..c7a5a98 --- /dev/null +++ b/resources/svg/viber.svg @@ -0,0 +1 @@ +Viber icon \ No newline at end of file diff --git a/resources/svg/vim.svg b/resources/svg/vim.svg new file mode 100644 index 0000000..641ddbb --- /dev/null +++ b/resources/svg/vim.svg @@ -0,0 +1 @@ +Vim icon \ No newline at end of file diff --git a/resources/svg/vimeo.svg b/resources/svg/vimeo.svg new file mode 100644 index 0000000..0eef6ac --- /dev/null +++ b/resources/svg/vimeo.svg @@ -0,0 +1 @@ +Vimeo icon \ No newline at end of file diff --git a/resources/svg/vimeolivestream.svg b/resources/svg/vimeolivestream.svg new file mode 100644 index 0000000..5647ab0 --- /dev/null +++ b/resources/svg/vimeolivestream.svg @@ -0,0 +1 @@ +Vimeo Livestream icon \ No newline at end of file diff --git a/resources/svg/vine.svg b/resources/svg/vine.svg new file mode 100644 index 0000000..33e56d0 --- /dev/null +++ b/resources/svg/vine.svg @@ -0,0 +1 @@ +Vine icon \ No newline at end of file diff --git a/resources/svg/virb.svg b/resources/svg/virb.svg new file mode 100644 index 0000000..bfc9bbe --- /dev/null +++ b/resources/svg/virb.svg @@ -0,0 +1 @@ +Virb icon \ No newline at end of file diff --git a/resources/svg/virtualbox.svg b/resources/svg/virtualbox.svg new file mode 100644 index 0000000..4a23a88 --- /dev/null +++ b/resources/svg/virtualbox.svg @@ -0,0 +1 @@ +VirtualBox icon diff --git a/resources/svg/virustotal.svg b/resources/svg/virustotal.svg new file mode 100644 index 0000000..f11ca62 --- /dev/null +++ b/resources/svg/virustotal.svg @@ -0,0 +1 @@ +VirusTotal icon \ No newline at end of file diff --git a/resources/svg/visa.svg b/resources/svg/visa.svg new file mode 100644 index 0000000..8de502b --- /dev/null +++ b/resources/svg/visa.svg @@ -0,0 +1 @@ +Visa icon \ No newline at end of file diff --git a/resources/svg/visualstudio.svg b/resources/svg/visualstudio.svg new file mode 100644 index 0000000..85d9160 --- /dev/null +++ b/resources/svg/visualstudio.svg @@ -0,0 +1 @@ +Visual Studio icon \ No newline at end of file diff --git a/resources/svg/visualstudiocode.svg b/resources/svg/visualstudiocode.svg new file mode 100644 index 0000000..ebd080c --- /dev/null +++ b/resources/svg/visualstudiocode.svg @@ -0,0 +1 @@ +Visual Studio Code icon \ No newline at end of file diff --git a/resources/svg/vivaldi.svg b/resources/svg/vivaldi.svg new file mode 100644 index 0000000..3b21147 --- /dev/null +++ b/resources/svg/vivaldi.svg @@ -0,0 +1 @@ +Vivaldi icon \ No newline at end of file diff --git a/resources/svg/vivino.svg b/resources/svg/vivino.svg new file mode 100644 index 0000000..3246472 --- /dev/null +++ b/resources/svg/vivino.svg @@ -0,0 +1 @@ +Vivino icon \ No newline at end of file diff --git a/resources/svg/vk.svg b/resources/svg/vk.svg new file mode 100644 index 0000000..417d5b7 --- /dev/null +++ b/resources/svg/vk.svg @@ -0,0 +1 @@ +VK icon \ No newline at end of file diff --git a/resources/svg/vlcmediaplayer.svg b/resources/svg/vlcmediaplayer.svg new file mode 100644 index 0000000..3532ea2 --- /dev/null +++ b/resources/svg/vlcmediaplayer.svg @@ -0,0 +1 @@ +VLC media player icon \ No newline at end of file diff --git a/resources/svg/vmware.svg b/resources/svg/vmware.svg new file mode 100644 index 0000000..cc81ffb --- /dev/null +++ b/resources/svg/vmware.svg @@ -0,0 +1 @@ +VMware icon diff --git a/resources/svg/vodafone.svg b/resources/svg/vodafone.svg new file mode 100644 index 0000000..0ae4e4f --- /dev/null +++ b/resources/svg/vodafone.svg @@ -0,0 +1 @@ +Vodafone icon diff --git a/resources/svg/volkswagen.svg b/resources/svg/volkswagen.svg new file mode 100644 index 0000000..ae79021 --- /dev/null +++ b/resources/svg/volkswagen.svg @@ -0,0 +1 @@ +Volkswagen icon diff --git a/resources/svg/volvo.svg b/resources/svg/volvo.svg new file mode 100644 index 0000000..0a92bdf --- /dev/null +++ b/resources/svg/volvo.svg @@ -0,0 +1 @@ +Volvo icon \ No newline at end of file diff --git a/resources/svg/vonage.svg b/resources/svg/vonage.svg new file mode 100644 index 0000000..2194472 --- /dev/null +++ b/resources/svg/vonage.svg @@ -0,0 +1 @@ +Vonage icon \ No newline at end of file diff --git a/resources/svg/vox.svg b/resources/svg/vox.svg new file mode 100644 index 0000000..abb820f --- /dev/null +++ b/resources/svg/vox.svg @@ -0,0 +1 @@ +VOX icon \ No newline at end of file diff --git a/resources/svg/vsco.svg b/resources/svg/vsco.svg new file mode 100644 index 0000000..1ad6837 --- /dev/null +++ b/resources/svg/vsco.svg @@ -0,0 +1 @@ +VSCO icon \ No newline at end of file diff --git a/resources/svg/vue-dot-js.svg b/resources/svg/vue-dot-js.svg new file mode 100644 index 0000000..41c50c2 --- /dev/null +++ b/resources/svg/vue-dot-js.svg @@ -0,0 +1 @@ +Vue.js icon \ No newline at end of file diff --git a/resources/svg/vuetify.svg b/resources/svg/vuetify.svg new file mode 100644 index 0000000..4e5022a --- /dev/null +++ b/resources/svg/vuetify.svg @@ -0,0 +1 @@ +Vuetify icon \ No newline at end of file diff --git a/resources/svg/vulkan.svg b/resources/svg/vulkan.svg new file mode 100644 index 0000000..0723d3f --- /dev/null +++ b/resources/svg/vulkan.svg @@ -0,0 +1 @@ +Vulkan icon \ No newline at end of file diff --git a/resources/svg/vultr.svg b/resources/svg/vultr.svg new file mode 100644 index 0000000..efd2194 --- /dev/null +++ b/resources/svg/vultr.svg @@ -0,0 +1 @@ +Vultr icon \ No newline at end of file diff --git a/resources/svg/w3c.svg b/resources/svg/w3c.svg new file mode 100644 index 0000000..944cea4 --- /dev/null +++ b/resources/svg/w3c.svg @@ -0,0 +1 @@ +W3C icon \ No newline at end of file diff --git a/resources/svg/wagtail.svg b/resources/svg/wagtail.svg new file mode 100644 index 0000000..903bf39 --- /dev/null +++ b/resources/svg/wagtail.svg @@ -0,0 +1 @@ +Wagtail icon \ No newline at end of file diff --git a/resources/svg/wakatime.svg b/resources/svg/wakatime.svg new file mode 100644 index 0000000..bf1033d --- /dev/null +++ b/resources/svg/wakatime.svg @@ -0,0 +1 @@ +WakaTime icon \ No newline at end of file diff --git a/resources/svg/walkman.svg b/resources/svg/walkman.svg new file mode 100644 index 0000000..18e3da4 --- /dev/null +++ b/resources/svg/walkman.svg @@ -0,0 +1 @@ +WALKMAN icon \ No newline at end of file diff --git a/resources/svg/wappalyzer.svg b/resources/svg/wappalyzer.svg new file mode 100644 index 0000000..3d3a3bd --- /dev/null +++ b/resources/svg/wappalyzer.svg @@ -0,0 +1 @@ +Wappalyzer icon \ No newline at end of file diff --git a/resources/svg/warnerbros-dot.svg b/resources/svg/warnerbros-dot.svg new file mode 100644 index 0000000..09a6c11 --- /dev/null +++ b/resources/svg/warnerbros-dot.svg @@ -0,0 +1 @@ +Warner Bros. icon \ No newline at end of file diff --git a/resources/svg/wattpad.svg b/resources/svg/wattpad.svg new file mode 100644 index 0000000..aa2092a --- /dev/null +++ b/resources/svg/wattpad.svg @@ -0,0 +1 @@ +Wattpad icon \ No newline at end of file diff --git a/resources/svg/waze.svg b/resources/svg/waze.svg new file mode 100644 index 0000000..671f015 --- /dev/null +++ b/resources/svg/waze.svg @@ -0,0 +1 @@ +Waze icon \ No newline at end of file diff --git a/resources/svg/wearos.svg b/resources/svg/wearos.svg new file mode 100644 index 0000000..5568243 --- /dev/null +++ b/resources/svg/wearos.svg @@ -0,0 +1 @@ +Wear OS icon diff --git a/resources/svg/weasyl.svg b/resources/svg/weasyl.svg new file mode 100644 index 0000000..400bb13 --- /dev/null +++ b/resources/svg/weasyl.svg @@ -0,0 +1 @@ +Weasyl icon \ No newline at end of file diff --git a/resources/svg/webassembly.svg b/resources/svg/webassembly.svg new file mode 100644 index 0000000..f00698c --- /dev/null +++ b/resources/svg/webassembly.svg @@ -0,0 +1 @@ +WebAssembly icon \ No newline at end of file diff --git a/resources/svg/webauthn.svg b/resources/svg/webauthn.svg new file mode 100644 index 0000000..f003df3 --- /dev/null +++ b/resources/svg/webauthn.svg @@ -0,0 +1 @@ +WebAuthn icon \ No newline at end of file diff --git a/resources/svg/webcomponents-dot-org.svg b/resources/svg/webcomponents-dot-org.svg new file mode 100644 index 0000000..7d0bcba --- /dev/null +++ b/resources/svg/webcomponents-dot-org.svg @@ -0,0 +1 @@ +webcomponents.org icon \ No newline at end of file diff --git a/resources/svg/webdriverio.svg b/resources/svg/webdriverio.svg new file mode 100644 index 0000000..ea7483a --- /dev/null +++ b/resources/svg/webdriverio.svg @@ -0,0 +1 @@ +WebdriverIO icon \ No newline at end of file diff --git a/resources/svg/webflow.svg b/resources/svg/webflow.svg new file mode 100644 index 0000000..22f6101 --- /dev/null +++ b/resources/svg/webflow.svg @@ -0,0 +1 @@ +Webflow icon \ No newline at end of file diff --git a/resources/svg/webgl.svg b/resources/svg/webgl.svg new file mode 100644 index 0000000..30f2740 --- /dev/null +++ b/resources/svg/webgl.svg @@ -0,0 +1 @@ +WebGL icon \ No newline at end of file diff --git a/resources/svg/webhint.svg b/resources/svg/webhint.svg new file mode 100644 index 0000000..791c592 --- /dev/null +++ b/resources/svg/webhint.svg @@ -0,0 +1 @@ +webhint icon \ No newline at end of file diff --git a/resources/svg/webmin.svg b/resources/svg/webmin.svg new file mode 100644 index 0000000..6ef6615 --- /dev/null +++ b/resources/svg/webmin.svg @@ -0,0 +1 @@ +Webmin icon \ No newline at end of file diff --git a/resources/svg/webmoney.svg b/resources/svg/webmoney.svg new file mode 100644 index 0000000..f9d9384 --- /dev/null +++ b/resources/svg/webmoney.svg @@ -0,0 +1 @@ +WebMoney icon \ No newline at end of file diff --git a/resources/svg/webpack.svg b/resources/svg/webpack.svg new file mode 100644 index 0000000..82b6ba9 --- /dev/null +++ b/resources/svg/webpack.svg @@ -0,0 +1 @@ +Webpack icon \ No newline at end of file diff --git a/resources/svg/webrtc.svg b/resources/svg/webrtc.svg new file mode 100644 index 0000000..53b0450 --- /dev/null +++ b/resources/svg/webrtc.svg @@ -0,0 +1 @@ +WebRTC icon diff --git a/resources/svg/webstorm.svg b/resources/svg/webstorm.svg new file mode 100644 index 0000000..f3c75fd --- /dev/null +++ b/resources/svg/webstorm.svg @@ -0,0 +1 @@ +WebStorm icon \ No newline at end of file diff --git a/resources/svg/wechat.svg b/resources/svg/wechat.svg new file mode 100644 index 0000000..3c29d42 --- /dev/null +++ b/resources/svg/wechat.svg @@ -0,0 +1 @@ +WeChat icon \ No newline at end of file diff --git a/resources/svg/weights-and-biases.svg b/resources/svg/weights-and-biases.svg new file mode 100644 index 0000000..f528ad7 --- /dev/null +++ b/resources/svg/weights-and-biases.svg @@ -0,0 +1 @@ +Weights & Biases icon \ No newline at end of file diff --git a/resources/svg/wemo.svg b/resources/svg/wemo.svg new file mode 100644 index 0000000..40dac98 --- /dev/null +++ b/resources/svg/wemo.svg @@ -0,0 +1 @@ +WEMO icon \ No newline at end of file diff --git a/resources/svg/wetransfer.svg b/resources/svg/wetransfer.svg new file mode 100644 index 0000000..67a7e42 --- /dev/null +++ b/resources/svg/wetransfer.svg @@ -0,0 +1 @@ +WeTransfer icon \ No newline at end of file diff --git a/resources/svg/whatsapp.svg b/resources/svg/whatsapp.svg new file mode 100644 index 0000000..7b49b99 --- /dev/null +++ b/resources/svg/whatsapp.svg @@ -0,0 +1 @@ +WhatsApp icon \ No newline at end of file diff --git a/resources/svg/wheniwork.svg b/resources/svg/wheniwork.svg new file mode 100644 index 0000000..c756c3b --- /dev/null +++ b/resources/svg/wheniwork.svg @@ -0,0 +1 @@ +When I Work icon \ No newline at end of file diff --git a/resources/svg/whitesource.svg b/resources/svg/whitesource.svg new file mode 100644 index 0000000..191c429 --- /dev/null +++ b/resources/svg/whitesource.svg @@ -0,0 +1 @@ +WhiteSource icon \ No newline at end of file diff --git a/resources/svg/wii.svg b/resources/svg/wii.svg new file mode 100644 index 0000000..e34b061 --- /dev/null +++ b/resources/svg/wii.svg @@ -0,0 +1 @@ +Wii icon \ No newline at end of file diff --git a/resources/svg/wiiu.svg b/resources/svg/wiiu.svg new file mode 100644 index 0000000..eafa0fe --- /dev/null +++ b/resources/svg/wiiu.svg @@ -0,0 +1 @@ +Wii U icon \ No newline at end of file diff --git a/resources/svg/wikidata.svg b/resources/svg/wikidata.svg new file mode 100644 index 0000000..973d4a6 --- /dev/null +++ b/resources/svg/wikidata.svg @@ -0,0 +1 @@ +Wikidata icon \ No newline at end of file diff --git a/resources/svg/wikimediacommons.svg b/resources/svg/wikimediacommons.svg new file mode 100644 index 0000000..73d71e4 --- /dev/null +++ b/resources/svg/wikimediacommons.svg @@ -0,0 +1 @@ +Wikimedia Commons icon \ No newline at end of file diff --git a/resources/svg/wikipedia.svg b/resources/svg/wikipedia.svg new file mode 100644 index 0000000..0d0ecf1 --- /dev/null +++ b/resources/svg/wikipedia.svg @@ -0,0 +1 @@ +Wikipedia icon \ No newline at end of file diff --git a/resources/svg/wikiquote.svg b/resources/svg/wikiquote.svg new file mode 100644 index 0000000..96773d8 --- /dev/null +++ b/resources/svg/wikiquote.svg @@ -0,0 +1 @@ +Wikiquote icon \ No newline at end of file diff --git a/resources/svg/wikivoyage.svg b/resources/svg/wikivoyage.svg new file mode 100644 index 0000000..64052c8 --- /dev/null +++ b/resources/svg/wikivoyage.svg @@ -0,0 +1 @@ +Wikivoyage icon diff --git a/resources/svg/windows.svg b/resources/svg/windows.svg new file mode 100644 index 0000000..4346a37 --- /dev/null +++ b/resources/svg/windows.svg @@ -0,0 +1 @@ +Windows icon \ No newline at end of file diff --git a/resources/svg/windows95.svg b/resources/svg/windows95.svg new file mode 100644 index 0000000..dca763c --- /dev/null +++ b/resources/svg/windows95.svg @@ -0,0 +1 @@ +Windows 95 icon \ No newline at end of file diff --git a/resources/svg/windowsterminal.svg b/resources/svg/windowsterminal.svg new file mode 100644 index 0000000..9f727d8 --- /dev/null +++ b/resources/svg/windowsterminal.svg @@ -0,0 +1 @@ +Windows Terminal icon \ No newline at end of file diff --git a/resources/svg/windowsxp.svg b/resources/svg/windowsxp.svg new file mode 100644 index 0000000..9d1279c --- /dev/null +++ b/resources/svg/windowsxp.svg @@ -0,0 +1 @@ +Windows XP icon \ No newline at end of file diff --git a/resources/svg/winmate.svg b/resources/svg/winmate.svg new file mode 100644 index 0000000..bf77fc1 --- /dev/null +++ b/resources/svg/winmate.svg @@ -0,0 +1 @@ +Winmate icon \ No newline at end of file diff --git a/resources/svg/wipro.svg b/resources/svg/wipro.svg new file mode 100644 index 0000000..59a0379 --- /dev/null +++ b/resources/svg/wipro.svg @@ -0,0 +1 @@ +Wipro icon \ No newline at end of file diff --git a/resources/svg/wire.svg b/resources/svg/wire.svg new file mode 100644 index 0000000..f2c04be --- /dev/null +++ b/resources/svg/wire.svg @@ -0,0 +1 @@ +Wire icon \ No newline at end of file diff --git a/resources/svg/wireguard.svg b/resources/svg/wireguard.svg new file mode 100644 index 0000000..ccde49d --- /dev/null +++ b/resources/svg/wireguard.svg @@ -0,0 +1 @@ +WireGuard icon \ No newline at end of file diff --git a/resources/svg/wireshark.svg b/resources/svg/wireshark.svg new file mode 100644 index 0000000..5f3537e --- /dev/null +++ b/resources/svg/wireshark.svg @@ -0,0 +1 @@ +Wireshark icon \ No newline at end of file diff --git a/resources/svg/wish.svg b/resources/svg/wish.svg new file mode 100644 index 0000000..811b242 --- /dev/null +++ b/resources/svg/wish.svg @@ -0,0 +1 @@ +Wish icon \ No newline at end of file diff --git a/resources/svg/wistia.svg b/resources/svg/wistia.svg new file mode 100644 index 0000000..c704f23 --- /dev/null +++ b/resources/svg/wistia.svg @@ -0,0 +1 @@ +Wistia icon \ No newline at end of file diff --git a/resources/svg/wix.svg b/resources/svg/wix.svg new file mode 100644 index 0000000..985fee2 --- /dev/null +++ b/resources/svg/wix.svg @@ -0,0 +1 @@ +Wix icon \ No newline at end of file diff --git a/resources/svg/wizzair.svg b/resources/svg/wizzair.svg new file mode 100644 index 0000000..a88bd79 --- /dev/null +++ b/resources/svg/wizzair.svg @@ -0,0 +1 @@ +Wizz Air icon \ No newline at end of file diff --git a/resources/svg/wolfram.svg b/resources/svg/wolfram.svg new file mode 100644 index 0000000..23c6e7c --- /dev/null +++ b/resources/svg/wolfram.svg @@ -0,0 +1 @@ +Wolfram icon \ No newline at end of file diff --git a/resources/svg/wolframlanguage.svg b/resources/svg/wolframlanguage.svg new file mode 100644 index 0000000..a6c4d1d --- /dev/null +++ b/resources/svg/wolframlanguage.svg @@ -0,0 +1 @@ +Wolfram Language icon \ No newline at end of file diff --git a/resources/svg/wolframmathematica.svg b/resources/svg/wolframmathematica.svg new file mode 100644 index 0000000..1674e61 --- /dev/null +++ b/resources/svg/wolframmathematica.svg @@ -0,0 +1 @@ +Wolfram Mathematica icon \ No newline at end of file diff --git a/resources/svg/woo.svg b/resources/svg/woo.svg new file mode 100644 index 0000000..9c7d312 --- /dev/null +++ b/resources/svg/woo.svg @@ -0,0 +1 @@ +Woo icon diff --git a/resources/svg/woocommerce.svg b/resources/svg/woocommerce.svg new file mode 100644 index 0000000..c2abd7e --- /dev/null +++ b/resources/svg/woocommerce.svg @@ -0,0 +1 @@ +WooCommerce icon diff --git a/resources/svg/wordpress.svg b/resources/svg/wordpress.svg new file mode 100644 index 0000000..97f4031 --- /dev/null +++ b/resources/svg/wordpress.svg @@ -0,0 +1 @@ +WordPress icon \ No newline at end of file diff --git a/resources/svg/workplace.svg b/resources/svg/workplace.svg new file mode 100644 index 0000000..fa6e00d --- /dev/null +++ b/resources/svg/workplace.svg @@ -0,0 +1 @@ +Workplace icon diff --git a/resources/svg/worldhealthorganization.svg b/resources/svg/worldhealthorganization.svg new file mode 100644 index 0000000..d9fff9b --- /dev/null +++ b/resources/svg/worldhealthorganization.svg @@ -0,0 +1 @@ +World Health Organization icon \ No newline at end of file diff --git a/resources/svg/wpengine.svg b/resources/svg/wpengine.svg new file mode 100644 index 0000000..cb4c9d1 --- /dev/null +++ b/resources/svg/wpengine.svg @@ -0,0 +1 @@ +WP Engine icon \ No newline at end of file diff --git a/resources/svg/wprocket.svg b/resources/svg/wprocket.svg new file mode 100644 index 0000000..66a041e --- /dev/null +++ b/resources/svg/wprocket.svg @@ -0,0 +1 @@ +WP Rocket icon diff --git a/resources/svg/write-dot-as.svg b/resources/svg/write-dot-as.svg new file mode 100644 index 0000000..0e55de6 --- /dev/null +++ b/resources/svg/write-dot-as.svg @@ -0,0 +1 @@ +write.as icon \ No newline at end of file diff --git a/resources/svg/wwe.svg b/resources/svg/wwe.svg new file mode 100644 index 0000000..7c4a0d8 --- /dev/null +++ b/resources/svg/wwe.svg @@ -0,0 +1 @@ +WWE icon \ No newline at end of file diff --git a/resources/svg/x-dot-org.svg b/resources/svg/x-dot-org.svg new file mode 100644 index 0000000..ba84aab --- /dev/null +++ b/resources/svg/x-dot-org.svg @@ -0,0 +1 @@ +X.Org icon \ No newline at end of file diff --git a/resources/svg/x-pack.svg b/resources/svg/x-pack.svg new file mode 100644 index 0000000..ea85134 --- /dev/null +++ b/resources/svg/x-pack.svg @@ -0,0 +1 @@ +X-Pack icon \ No newline at end of file diff --git a/resources/svg/xamarin.svg b/resources/svg/xamarin.svg new file mode 100644 index 0000000..238f98a --- /dev/null +++ b/resources/svg/xamarin.svg @@ -0,0 +1 @@ +Xamarin icon diff --git a/resources/svg/xaml.svg b/resources/svg/xaml.svg new file mode 100644 index 0000000..15233b7 --- /dev/null +++ b/resources/svg/xaml.svg @@ -0,0 +1 @@ +XAML icon \ No newline at end of file diff --git a/resources/svg/xampp.svg b/resources/svg/xampp.svg new file mode 100644 index 0000000..2f3f65d --- /dev/null +++ b/resources/svg/xampp.svg @@ -0,0 +1 @@ +XAMPP icon \ No newline at end of file diff --git a/resources/svg/xbox.svg b/resources/svg/xbox.svg new file mode 100644 index 0000000..3cfcc48 --- /dev/null +++ b/resources/svg/xbox.svg @@ -0,0 +1 @@ +Xbox icon \ No newline at end of file diff --git a/resources/svg/xcode.svg b/resources/svg/xcode.svg new file mode 100644 index 0000000..6248df6 --- /dev/null +++ b/resources/svg/xcode.svg @@ -0,0 +1 @@ +Xcode icon \ No newline at end of file diff --git a/resources/svg/xdadevelopers.svg b/resources/svg/xdadevelopers.svg new file mode 100644 index 0000000..bd5a538 --- /dev/null +++ b/resources/svg/xdadevelopers.svg @@ -0,0 +1 @@ +XDA Developers icon diff --git a/resources/svg/xero.svg b/resources/svg/xero.svg new file mode 100644 index 0000000..cb418b7 --- /dev/null +++ b/resources/svg/xero.svg @@ -0,0 +1 @@ +Xero icon \ No newline at end of file diff --git a/resources/svg/xfce.svg b/resources/svg/xfce.svg new file mode 100644 index 0000000..01b33b5 --- /dev/null +++ b/resources/svg/xfce.svg @@ -0,0 +1 @@ +XFCE icon \ No newline at end of file diff --git a/resources/svg/xiaomi.svg b/resources/svg/xiaomi.svg new file mode 100644 index 0000000..9745b1c --- /dev/null +++ b/resources/svg/xiaomi.svg @@ -0,0 +1 @@ +Xiaomi icon \ No newline at end of file diff --git a/resources/svg/xilinx.svg b/resources/svg/xilinx.svg new file mode 100644 index 0000000..6aeae24 --- /dev/null +++ b/resources/svg/xilinx.svg @@ -0,0 +1 @@ +Xilinx icon \ No newline at end of file diff --git a/resources/svg/xing.svg b/resources/svg/xing.svg new file mode 100644 index 0000000..175240c --- /dev/null +++ b/resources/svg/xing.svg @@ -0,0 +1 @@ +Xing icon \ No newline at end of file diff --git a/resources/svg/xmpp.svg b/resources/svg/xmpp.svg new file mode 100644 index 0000000..1b8fad2 --- /dev/null +++ b/resources/svg/xmpp.svg @@ -0,0 +1 @@ +XMPP icon \ No newline at end of file diff --git a/resources/svg/xrp.svg b/resources/svg/xrp.svg new file mode 100644 index 0000000..5cfdc7c --- /dev/null +++ b/resources/svg/xrp.svg @@ -0,0 +1 @@ +XRP icon \ No newline at end of file diff --git a/resources/svg/xsplit.svg b/resources/svg/xsplit.svg new file mode 100644 index 0000000..ae1f5f3 --- /dev/null +++ b/resources/svg/xsplit.svg @@ -0,0 +1 @@ +XSplit icon \ No newline at end of file diff --git a/resources/svg/xstate.svg b/resources/svg/xstate.svg new file mode 100644 index 0000000..7a5278f --- /dev/null +++ b/resources/svg/xstate.svg @@ -0,0 +1 @@ +XState icon \ No newline at end of file diff --git a/resources/svg/yahoo.svg b/resources/svg/yahoo.svg new file mode 100644 index 0000000..fb58508 --- /dev/null +++ b/resources/svg/yahoo.svg @@ -0,0 +1 @@ +Yahoo! icon diff --git a/resources/svg/yale.svg b/resources/svg/yale.svg new file mode 100644 index 0000000..876fe75 --- /dev/null +++ b/resources/svg/yale.svg @@ -0,0 +1 @@ +Yale icon diff --git a/resources/svg/yamahacorporation.svg b/resources/svg/yamahacorporation.svg new file mode 100644 index 0000000..2fc6562 --- /dev/null +++ b/resources/svg/yamahacorporation.svg @@ -0,0 +1 @@ +Yamaha Corporation icon \ No newline at end of file diff --git a/resources/svg/yamahamotorcorporation.svg b/resources/svg/yamahamotorcorporation.svg new file mode 100644 index 0000000..a81f79b --- /dev/null +++ b/resources/svg/yamahamotorcorporation.svg @@ -0,0 +1 @@ +Yamaha Motor Corporation icon \ No newline at end of file diff --git a/resources/svg/yammer.svg b/resources/svg/yammer.svg new file mode 100644 index 0000000..b24b95a --- /dev/null +++ b/resources/svg/yammer.svg @@ -0,0 +1 @@ +Yammer icon \ No newline at end of file diff --git a/resources/svg/yandex.svg b/resources/svg/yandex.svg new file mode 100644 index 0000000..f616d05 --- /dev/null +++ b/resources/svg/yandex.svg @@ -0,0 +1 @@ +Yandex icon \ No newline at end of file diff --git a/resources/svg/yarn.svg b/resources/svg/yarn.svg new file mode 100644 index 0000000..8ac5f53 --- /dev/null +++ b/resources/svg/yarn.svg @@ -0,0 +1 @@ +Yarn icon \ No newline at end of file diff --git a/resources/svg/ycombinator.svg b/resources/svg/ycombinator.svg new file mode 100644 index 0000000..8b5596f --- /dev/null +++ b/resources/svg/ycombinator.svg @@ -0,0 +1 @@ +Y Combinator icon \ No newline at end of file diff --git a/resources/svg/yelp.svg b/resources/svg/yelp.svg new file mode 100644 index 0000000..aa2b778 --- /dev/null +++ b/resources/svg/yelp.svg @@ -0,0 +1 @@ +Yelp icon \ No newline at end of file diff --git a/resources/svg/yoast.svg b/resources/svg/yoast.svg new file mode 100644 index 0000000..6909a29 --- /dev/null +++ b/resources/svg/yoast.svg @@ -0,0 +1 @@ +Yoast icon \ No newline at end of file diff --git a/resources/svg/yourtravel-dot-tv.svg b/resources/svg/yourtravel-dot-tv.svg new file mode 100644 index 0000000..c44fb80 --- /dev/null +++ b/resources/svg/yourtravel-dot-tv.svg @@ -0,0 +1 @@ +YourTravel.TV icon \ No newline at end of file diff --git a/resources/svg/youtube.svg b/resources/svg/youtube.svg new file mode 100644 index 0000000..caca991 --- /dev/null +++ b/resources/svg/youtube.svg @@ -0,0 +1 @@ +YouTube icon \ No newline at end of file diff --git a/resources/svg/youtubegaming.svg b/resources/svg/youtubegaming.svg new file mode 100644 index 0000000..f456587 --- /dev/null +++ b/resources/svg/youtubegaming.svg @@ -0,0 +1 @@ +YouTube Gaming icon diff --git a/resources/svg/youtubemusic.svg b/resources/svg/youtubemusic.svg new file mode 100644 index 0000000..386d0ee --- /dev/null +++ b/resources/svg/youtubemusic.svg @@ -0,0 +1 @@ +YouTube Music icon \ No newline at end of file diff --git a/resources/svg/youtubestudio.svg b/resources/svg/youtubestudio.svg new file mode 100644 index 0000000..c1856bc --- /dev/null +++ b/resources/svg/youtubestudio.svg @@ -0,0 +1 @@ +YouTube Studio icon \ No newline at end of file diff --git a/resources/svg/youtubetv.svg b/resources/svg/youtubetv.svg new file mode 100644 index 0000000..c5a3256 --- /dev/null +++ b/resources/svg/youtubetv.svg @@ -0,0 +1 @@ +YouTube TV icon \ No newline at end of file diff --git a/resources/svg/z-wave.svg b/resources/svg/z-wave.svg new file mode 100644 index 0000000..cb6aaf0 --- /dev/null +++ b/resources/svg/z-wave.svg @@ -0,0 +1 @@ +Z-Wave icon diff --git a/resources/svg/zalando.svg b/resources/svg/zalando.svg new file mode 100644 index 0000000..0ff262d --- /dev/null +++ b/resources/svg/zalando.svg @@ -0,0 +1 @@ +Zalando icon \ No newline at end of file diff --git a/resources/svg/zapier.svg b/resources/svg/zapier.svg new file mode 100644 index 0000000..9572489 --- /dev/null +++ b/resources/svg/zapier.svg @@ -0,0 +1 @@ +Zapier icon \ No newline at end of file diff --git a/resources/svg/zdf.svg b/resources/svg/zdf.svg new file mode 100644 index 0000000..6f4d2bf --- /dev/null +++ b/resources/svg/zdf.svg @@ -0,0 +1 @@ +ZDF icon \ No newline at end of file diff --git a/resources/svg/zelle.svg b/resources/svg/zelle.svg new file mode 100644 index 0000000..3b2c718 --- /dev/null +++ b/resources/svg/zelle.svg @@ -0,0 +1 @@ +Zelle icon \ No newline at end of file diff --git a/resources/svg/zend.svg b/resources/svg/zend.svg new file mode 100644 index 0000000..f8dfed1 --- /dev/null +++ b/resources/svg/zend.svg @@ -0,0 +1 @@ +Zend icon diff --git a/resources/svg/zendesk.svg b/resources/svg/zendesk.svg new file mode 100644 index 0000000..baef2ae --- /dev/null +++ b/resources/svg/zendesk.svg @@ -0,0 +1 @@ +Zendesk icon \ No newline at end of file diff --git a/resources/svg/zendframework.svg b/resources/svg/zendframework.svg new file mode 100644 index 0000000..57934ff --- /dev/null +++ b/resources/svg/zendframework.svg @@ -0,0 +1 @@ +Zend Framework icon diff --git a/resources/svg/zenn.svg b/resources/svg/zenn.svg new file mode 100644 index 0000000..f864cd7 --- /dev/null +++ b/resources/svg/zenn.svg @@ -0,0 +1 @@ +Zenn icon \ No newline at end of file diff --git a/resources/svg/zeromq.svg b/resources/svg/zeromq.svg new file mode 100644 index 0000000..3de6743 --- /dev/null +++ b/resources/svg/zeromq.svg @@ -0,0 +1 @@ +ZeroMQ icon \ No newline at end of file diff --git a/resources/svg/zerply.svg b/resources/svg/zerply.svg new file mode 100644 index 0000000..054d446 --- /dev/null +++ b/resources/svg/zerply.svg @@ -0,0 +1 @@ +Zerply icon \ No newline at end of file diff --git a/resources/svg/zhihu.svg b/resources/svg/zhihu.svg new file mode 100644 index 0000000..9da2c3f --- /dev/null +++ b/resources/svg/zhihu.svg @@ -0,0 +1 @@ +Zhihu icon \ No newline at end of file diff --git a/resources/svg/zigbee.svg b/resources/svg/zigbee.svg new file mode 100644 index 0000000..cf0a0c7 --- /dev/null +++ b/resources/svg/zigbee.svg @@ -0,0 +1 @@ +Zigbee icon diff --git a/resources/svg/zillow.svg b/resources/svg/zillow.svg new file mode 100644 index 0000000..06fb578 --- /dev/null +++ b/resources/svg/zillow.svg @@ -0,0 +1 @@ +Zillow icon \ No newline at end of file diff --git a/resources/svg/zingat.svg b/resources/svg/zingat.svg new file mode 100644 index 0000000..5a295f1 --- /dev/null +++ b/resources/svg/zingat.svg @@ -0,0 +1 @@ +Zingat icon \ No newline at end of file diff --git a/resources/svg/zoho.svg b/resources/svg/zoho.svg new file mode 100644 index 0000000..fa26a1a --- /dev/null +++ b/resources/svg/zoho.svg @@ -0,0 +1 @@ +Zoho icon \ No newline at end of file diff --git a/resources/svg/zoiper.svg b/resources/svg/zoiper.svg new file mode 100644 index 0000000..ef300b1 --- /dev/null +++ b/resources/svg/zoiper.svg @@ -0,0 +1 @@ +Zoiper icon \ No newline at end of file diff --git a/resources/svg/zomato.svg b/resources/svg/zomato.svg new file mode 100644 index 0000000..538aac5 --- /dev/null +++ b/resources/svg/zomato.svg @@ -0,0 +1 @@ +Zomato icon \ No newline at end of file diff --git a/resources/svg/zoom.svg b/resources/svg/zoom.svg new file mode 100644 index 0000000..b045068 --- /dev/null +++ b/resources/svg/zoom.svg @@ -0,0 +1 @@ +Zoom icon \ No newline at end of file diff --git a/resources/svg/zorin.svg b/resources/svg/zorin.svg new file mode 100644 index 0000000..c3fd8bb --- /dev/null +++ b/resources/svg/zorin.svg @@ -0,0 +1 @@ +Zorin icon \ No newline at end of file diff --git a/resources/svg/zotero.svg b/resources/svg/zotero.svg new file mode 100644 index 0000000..3708594 --- /dev/null +++ b/resources/svg/zotero.svg @@ -0,0 +1 @@ +Zotero icon \ No newline at end of file diff --git a/resources/svg/zulip.svg b/resources/svg/zulip.svg new file mode 100644 index 0000000..de28f4d --- /dev/null +++ b/resources/svg/zulip.svg @@ -0,0 +1 @@ +Zulip icon \ No newline at end of file diff --git a/src/BladeSimpleIconsServiceProvider.php b/src/BladeSimpleIconsServiceProvider.php new file mode 100644 index 0000000..a47ced8 --- /dev/null +++ b/src/BladeSimpleIconsServiceProvider.php @@ -0,0 +1,30 @@ +callAfterResolving(Factory::class, function (Factory $factory) { + $factory->add('simple-icons', [ + 'path' => __DIR__ . '/../resources/svg', + 'prefix' => 'simpleicon', + ]); + }); + } + + public function boot(): void + { + if ($this->app->runningInConsole()) { + $this->publishes([ + __DIR__ . '/../resources/svg' => public_path('vendor/blade-simple-icons'), + ], 'blade-simple-icons'); + } + } +} diff --git a/tests/CompilesIconsTest.php b/tests/CompilesIconsTest.php new file mode 100644 index 0000000..2d853b1 --- /dev/null +++ b/tests/CompilesIconsTest.php @@ -0,0 +1,54 @@ +toHtml(); + + $expected = <<<'SVG' + Laravel icon + SVG; + + $this->assertSame($expected, $result); + } + + /** @test */ + public function it_can_add_classes_to_icons() + { + $result = svg('simpleicon-laravel', 'w-6 h-6 text-gray-500')->toHtml(); + + $expected = <<<'SVG' + Laravel icon + SVG; + + $this->assertSame($expected, $result); + } + + /** @test */ + public function it_can_add_styles_to_icons() + { + $result = svg('simpleicon-laravel', ['style' => 'color: #555'])->toHtml(); + + $expected = <<<'SVG' + Laravel icon + SVG; + + $this->assertSame($expected, $result); + } + + protected function getPackageProviders($app) + { + return [ + BladeIconsServiceProvider::class, + BladeSimpleIconsServiceProvider::class, + ]; + } +}