diff --git a/.commit b/.commit new file mode 100644 index 0000000..c73a8a5 --- /dev/null +++ b/.commit @@ -0,0 +1 @@ +0aa64f6ce8b892a83aeeafa42c74fb9c1f22ec84 diff --git a/.env b/.env new file mode 100644 index 0000000..74cb0b0 --- /dev/null +++ b/.env @@ -0,0 +1,2 @@ +REPOSITORY=stephenhutchings/Humbleicons.font +BRANCH=master diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..73c0d66 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,13 @@ +* text=auto + +/.github export-ignore +/bin export-ignore +/dist export-ignore +/tests export-ignore +.gitattributes export-ignore +.gitignore export-ignore +.php_cs.dist export-ignore +CHANGELOG.md export-ignore +phpunit.xml.dist export-ignore +README.md export-ignore +UPGRADE.md export-ignore diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..a061ad6 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +github: swapnilsarwe diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml new file mode 100644 index 0000000..a9aee78 --- /dev/null +++ b/.github/workflows/auto-update.yml @@ -0,0 +1,82 @@ +name: Auto Update Icons + +on: + schedule: + - cron: '0 12 * * 1' + +jobs: + generate: + runs-on: ubuntu-latest + + strategy: + fail-fast: true + matrix: + php: [8.2] + laravel: [^8.2] + + name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} + + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + ref: ${{ github.head_ref }} + + - name: Read DotEnv File + uses: c-py/action-dotenv-to-setenv@v2 + with: + env-file: .env + + - name: Checkout dependent repo + uses: actions/checkout@v3 + with: + repository: ${{ env.REPOSITORY }} + ref: ${{ env.BRANCH }} + path: ./dist + + - id: latest-commit + name: Get the latest commit + run: | + echo 'LATEST_COMMIT<> $GITHUB_ENV + cd ./dist && git log --format="%H" -n 1 >> $GITHUB_ENV + echo 'EOF' >> $GITHUB_ENV + + - id: current-commit + name: Get current commot + uses: juliangruber/read-file-action@v1 + with: + path: ./.commit + + - name: Add versions to environment + run: | + echo "CURRENT_COMMIT=${{ steps.current-commit.outputs.content }}" >> $GITHUB_ENV + + - name: Output versions + run: | + echo "Current commit: ${{ env.CURRENT_COMMIT }}" + echo "Latest commit: ${{ env.LATEST_COMMIT }}" + + - name: Install dependencies + run: composer update --no-interaction --no-progress --dev + + - name: Compile icons to resources directory + if: env.CURRENT_COMMIT != env.LATEST_COMMIT + run: ./vendor/bin/blade-icons-generate + + - name: Update commit hash in ".commit" + if: env.CURRENT_COMMIT != env.LATEST_COMMIT + run: echo ${{ env.LATEST_COMMIT }}>./.commit + + - name: Create PR for latest version + if: env.CURRENT_COMMIT != env.LATEST_COMMIT + uses: peter-evans/create-pull-request@v3 + with: + commit-message: "auto-update: update icons with the latest commit ${{ env.LATEST_COMMIT }}" + committer: GitHub Action + author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> + title: "chore: update icons with the latest commit v${{ env.LATEST_COMMIT }}" + body: | + This updates from [${{ env.CURRENT_COMMIT }}](https://github.com/${{ env.REPOSITORY }}/commit/${{ env.CURRENT_COMMIT }}) to [${{ env.LATEST_COMMIT }}](https://github.com/${{ env.REPOSITORY }}/commit/${{ env.LATEST_COMMIT }}). + Check out the differences: [`${{ env.CURRENT_COMMIT }}` ... `${{ env.LATEST_COMMIT }}`](https://github.com/${{ env.REPOSITORY }}/compare/${{ env.CURRENT_COMMIT }}...${{ env.LATEST_COMMIT }}) + branch: feature/update-${{ env.LATEST_COMMIT }} + diff --git a/.github/workflows/php-cs-fixer.yml b/.github/workflows/php-cs-fixer.yml new file mode 100644 index 0000000..aaeaedb --- /dev/null +++ b/.github/workflows/php-cs-fixer.yml @@ -0,0 +1,40 @@ +name: Check & fix styling + +on: [push] + +jobs: + php-cs-fixer: + runs-on: ubuntu-latest + + strategy: + fail-fast: true + matrix: + php: [8.1] + laravel: [^10.0] + + name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} + + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + ref: ${{ github.head_ref }} + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: dom, curl, libxml, mbstring, zip + coverage: none + + - name: Install dependencies + run: composer update --prefer-dist --no-interaction --no-progress + + - name: Run PHP CS Fixer + run: vendor/bin/php-cs-fixer fix + + - name: Commit changes + uses: stefanzweifel/git-auto-commit-action@v4 + with: + commit_message: Fix styling + diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..f893afe --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,55 @@ +name: Tests + +on: + pull_request: + +jobs: + tests: + runs-on: ubuntu-latest + + strategy: + fail-fast: true + matrix: + php: [7.4, '8.0', 8.1, 8.2, 8.3] + laravel: [8, 9, 10, 11] + exclude: + - php: 7.4 + laravel: 9 + - php: 7.4 + laravel: 10 + - php: 7.4 + laravel: 11 + - php: '8.0' + laravel: 10 + - php: '8.0' + laravel: 11 + - php: 8.1 + laravel: 11 + - php: 8.2 + laravel: 8 + - php: 8.3 + laravel: 8 + - php: 8.3 + laravel: 9 + + name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} + + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: dom, curl, libxml, mbstring, zip + coverage: none + + - name: Install dependencies + run: | + composer require "illuminate/contracts=^${{ matrix.laravel }}" --prefer-dist --no-interaction --no-update + composer update --prefer-dist --no-interaction --no-progress + + - name: Execute tests + run: vendor/bin/phpunit diff --git a/.github/workflows/update-changelog.yaml b/.github/workflows/update-changelog.yaml new file mode 100644 index 0000000..b20f3b6 --- /dev/null +++ b/.github/workflows/update-changelog.yaml @@ -0,0 +1,28 @@ +name: "Update Changelog" + +on: + release: + types: [released] + +jobs: + update: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + ref: main + + - name: Update Changelog + uses: stefanzweifel/changelog-updater-action@v1 + with: + latest-version: ${{ github.event.release.name }} + release-notes: ${{ github.event.release.body }} + + - name: Commit updated CHANGELOG + uses: stefanzweifel/git-auto-commit-action@v4 + with: + branch: main + commit_message: Update CHANGELOG + file_pattern: CHANGELOG.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..53a0e13 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +dist/ +composer.lock +phpunit.xml +vendor +.php-cs-fixer.cache +.phpunit.result.cache diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php new file mode 100644 index 0000000..403dfac --- /dev/null +++ b/.php-cs-fixer.dist.php @@ -0,0 +1,13 @@ +notPath('vendor') + ->in(getcwd(). '/src') + ->name('*.php') + ->ignoreDotFiles(true) + ->ignoreVCS(true); + +return Codeat3\styles($finder); + diff --git a/.styleci.yml b/.styleci.yml new file mode 100644 index 0000000..2c536b2 --- /dev/null +++ b/.styleci.yml @@ -0,0 +1,4 @@ +preset: laravel +enabled: + - heredoc_indentation + - trailing_comma_in_multiline_call diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e69de29 diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..d4b79b5 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Swapnil Sarwe + +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..e1554c1 --- /dev/null +++ b/README.md @@ -0,0 +1,92 @@ +

+ +

+ +# Blade Humbleicons + + + Tests + + + Latest Stable Version + + + Total Downloads + + +A package to easily make use of [Humbleicons](https://github.com/zraly/humbleicons) in your Laravel Blade views. + +For a full list of available icons see [the SVG directory](resources/svg) or preview them at [humbleicons.com](https://humbleicons.com/). + +## Requirements + +- PHP 7.4 or higher +- Laravel 8.0 or higher + +## Installation + +```bash +composer require codeat3/blade-humbleicons +``` + +## Updating + +Please refer to [`the upgrade guide`](UPGRADE.md) when updating the library. + +## Blade Icons + +Blade Humbleicons uses Blade Icons under the hood. Please refer to [the Blade Icons readme](https://github.com/blade-ui-kit/blade-icons) for additional functionality. We also recommend to [enable icon caching](https://github.com/blade-ui-kit/blade-icons#caching) with this library. + +## Configuration + +Blade Humbleicons also offers the ability to use features from Blade Icons like default classes, default attributes, etc. If you'd like to configure these, publish the `blade-humbleicons.php` config file: + +```bash +php artisan vendor:publish --tag=blade-humbleicons-config +``` + +## 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-humbleicons --force +``` + +Then use them in your views like: + +```blade + +``` + +## Changelog + +Check out the [CHANGELOG](CHANGELOG.md) in this repository for all the recent changes. + +## Maintainers + +Blade Humbleicons is developed and maintained by [Swapnil Sarwe](https://swapnilsarwe.com). + +## License + +Blade Humbleicons is open-sourced software licensed under [the MIT license](LICENSE.md). diff --git a/UPGRADE.md b/UPGRADE.md new file mode 100644 index 0000000..13ca6b0 --- /dev/null +++ b/UPGRADE.md @@ -0,0 +1,23 @@ +# Upgrade Guide + +General steps for every update: + +- Run `php artisan view:clear` + +## Upgrading from Blade Icons + +If you're upgrading from the original Blade Icons package there's very little steps you would need to take. The syntax for the Blade components has remained the same. + +### Raw Icons + +If you were using the raw exported icons you'll need to re-publish them with: + +```bash +php artisan vendor:publish --tag=blade-humbleicons --force +``` + +The new way to reference them is: + +```blade + +``` diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..bcdf397 --- /dev/null +++ b/composer.json @@ -0,0 +1,54 @@ +{ + "name": "codeat3/blade-humbleicons", + "description": "A package to easily make use of \"Humbleicons\" in your Laravel Blade views.", + "keywords": ["Blade", "Humbleicons", "Laravel"], + "homepage": "https://github.com/codeat3/blade-humbleicons", + "license": "MIT", + "authors": [ + { + "name": "Swapnil Sarwe", + "homepage": "https://swapnilsarwe.com" + }, + { + "name": "Dries Vints", + "homepage": "https://driesvints.com" + } + ], + "require": { + "php": "^7.4|^8.0", + "blade-ui-kit/blade-icons": "^1.1", + "illuminate/support": "^8.0|^9.0|^10.0|^11.0" + }, + "require-dev": { + "codeat3/blade-icon-generation-helpers": "^0.8", + "codeat3/phpcs-styles": "^1.0", + "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0", + "phpunit/phpunit": "^9.0|^10.5|^11.0" + }, + "autoload": { + "psr-4": { + "Codeat3\\BladeHumbleicons\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "Tests\\": "tests" + } + }, + "extra": { + "laravel": { + "providers": [ + "Codeat3\\BladeHumbleicons\\BladeHumbleiconsServiceProvider" + ] + } + }, + "config": { + "sort-packages": true + }, + "minimum-stability": "dev", + "prefer-stable": true, + "scripts": { + "test": "vendor/bin/phpunit", + "format": "vendor/bin/php-cs-fixer fix" + } +} diff --git a/config/blade-humbleicons.php b/config/blade-humbleicons.php new file mode 100644 index 0000000..0ad9852 --- /dev/null +++ b/config/blade-humbleicons.php @@ -0,0 +1,57 @@ + 'humble', + + /* + |----------------------------------------------------------------- + | Fallback Icon + |----------------------------------------------------------------- + | + | This config option allows you to define a fallback + | icon when an icon in this set cannot be found. + | + */ + + 'fallback' => '', + + /* + |----------------------------------------------------------------- + | Default Set Classes + |----------------------------------------------------------------- + | + | This config option allows you to define some classes which + | will be applied by default to all icons within this set. + | + */ + + 'class' => '', + + /* + |----------------------------------------------------------------- + | Default Set Attributes + |----------------------------------------------------------------- + | + | This config option allows you to define some attributes which + | will be applied by default to all icons within this set. + | + */ + + 'attributes' => [ + // 'width' => 50, + // 'height' => 50, + ], + +]; diff --git a/config/generation.php b/config/generation.php new file mode 100644 index 0000000..045f76d --- /dev/null +++ b/config/generation.php @@ -0,0 +1,31 @@ +optimize() + ->save(); +}; + +return [ + [ + // Define a source directory for the sets like a node_modules/ or vendor/ directory... + 'source' => __DIR__ . '/../dist/icons', + + // Define a destination directory for your icons. The below is a good default... + 'destination' => __DIR__ . '/../resources/svg', + + // Enable "safe" mode which will prevent deletion of old icons... + 'safe' => false, + + // Call an optional callback to manipulate the icon + // with the pathname of the icon and the settings from above... + 'after' => $svgNormalization, + + 'is-solid' => true, + ], +]; diff --git a/phpunit.xml.dist b/phpunit.xml.dist new file mode 100644 index 0000000..7ea1887 --- /dev/null +++ b/phpunit.xml.dist @@ -0,0 +1,17 @@ + + + + + tests + + + + + src/ + + + diff --git a/resources/svg/activity.svg b/resources/svg/activity.svg new file mode 100644 index 0000000..176ca57 --- /dev/null +++ b/resources/svg/activity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/adjustments.svg b/resources/svg/adjustments.svg new file mode 100644 index 0000000..798ae5f --- /dev/null +++ b/resources/svg/adjustments.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/aid.svg b/resources/svg/aid.svg new file mode 100644 index 0000000..552293a --- /dev/null +++ b/resources/svg/aid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/align-objects-bottom.svg b/resources/svg/align-objects-bottom.svg new file mode 100644 index 0000000..9d45db6 --- /dev/null +++ b/resources/svg/align-objects-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/align-objects-center.svg b/resources/svg/align-objects-center.svg new file mode 100644 index 0000000..5ede71c --- /dev/null +++ b/resources/svg/align-objects-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/align-objects-left.svg b/resources/svg/align-objects-left.svg new file mode 100644 index 0000000..5dfb112 --- /dev/null +++ b/resources/svg/align-objects-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/align-objects-middle.svg b/resources/svg/align-objects-middle.svg new file mode 100644 index 0000000..816a180 --- /dev/null +++ b/resources/svg/align-objects-middle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/align-objects-right.svg b/resources/svg/align-objects-right.svg new file mode 100644 index 0000000..4a4f594 --- /dev/null +++ b/resources/svg/align-objects-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/align-objects-top.svg b/resources/svg/align-objects-top.svg new file mode 100644 index 0000000..0f7b2bf --- /dev/null +++ b/resources/svg/align-objects-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/align-text-center.svg b/resources/svg/align-text-center.svg new file mode 100644 index 0000000..f29657e --- /dev/null +++ b/resources/svg/align-text-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/align-text-justify.svg b/resources/svg/align-text-justify.svg new file mode 100644 index 0000000..c540b2e --- /dev/null +++ b/resources/svg/align-text-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/align-text-left.svg b/resources/svg/align-text-left.svg new file mode 100644 index 0000000..0be27ec --- /dev/null +++ b/resources/svg/align-text-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/align-text-right.svg b/resources/svg/align-text-right.svg new file mode 100644 index 0000000..0b1a1da --- /dev/null +++ b/resources/svg/align-text-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/archive.svg b/resources/svg/archive.svg new file mode 100644 index 0000000..9198cb4 --- /dev/null +++ b/resources/svg/archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrow-down.svg b/resources/svg/arrow-down.svg new file mode 100644 index 0000000..801fca6 --- /dev/null +++ b/resources/svg/arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrow-go-back.svg b/resources/svg/arrow-go-back.svg new file mode 100644 index 0000000..1a4dd03 --- /dev/null +++ b/resources/svg/arrow-go-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrow-go-forward.svg b/resources/svg/arrow-go-forward.svg new file mode 100644 index 0000000..9fa4f7b --- /dev/null +++ b/resources/svg/arrow-go-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrow-join.svg b/resources/svg/arrow-join.svg new file mode 100644 index 0000000..869c5cc --- /dev/null +++ b/resources/svg/arrow-join.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrow-left-down.svg b/resources/svg/arrow-left-down.svg new file mode 100644 index 0000000..b100454 --- /dev/null +++ b/resources/svg/arrow-left-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrow-left-up.svg b/resources/svg/arrow-left-up.svg new file mode 100644 index 0000000..258ecac --- /dev/null +++ b/resources/svg/arrow-left-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrow-left.svg b/resources/svg/arrow-left.svg new file mode 100644 index 0000000..fa73c3c --- /dev/null +++ b/resources/svg/arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrow-main-split-side.svg b/resources/svg/arrow-main-split-side.svg new file mode 100644 index 0000000..6ec1187 --- /dev/null +++ b/resources/svg/arrow-main-split-side.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrow-right-down.svg b/resources/svg/arrow-right-down.svg new file mode 100644 index 0000000..438efe1 --- /dev/null +++ b/resources/svg/arrow-right-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrow-right-up.svg b/resources/svg/arrow-right-up.svg new file mode 100644 index 0000000..414857c --- /dev/null +++ b/resources/svg/arrow-right-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrow-right.svg b/resources/svg/arrow-right.svg new file mode 100644 index 0000000..01d0cc0 --- /dev/null +++ b/resources/svg/arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrow-side-join-main.svg b/resources/svg/arrow-side-join-main.svg new file mode 100644 index 0000000..33faf7d --- /dev/null +++ b/resources/svg/arrow-side-join-main.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrow-split.svg b/resources/svg/arrow-split.svg new file mode 100644 index 0000000..3a89722 --- /dev/null +++ b/resources/svg/arrow-split.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrow-up.svg b/resources/svg/arrow-up.svg new file mode 100644 index 0000000..3212c77 --- /dev/null +++ b/resources/svg/arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrows-horizontal.svg b/resources/svg/arrows-horizontal.svg new file mode 100644 index 0000000..7e04246 --- /dev/null +++ b/resources/svg/arrows-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrows-right-left.svg b/resources/svg/arrows-right-left.svg new file mode 100644 index 0000000..0d2a4d8 --- /dev/null +++ b/resources/svg/arrows-right-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrows-up-down.svg b/resources/svg/arrows-up-down.svg new file mode 100644 index 0000000..52de055 --- /dev/null +++ b/resources/svg/arrows-up-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrows-vertical.svg b/resources/svg/arrows-vertical.svg new file mode 100644 index 0000000..3dc9d87 --- /dev/null +++ b/resources/svg/arrows-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/arrows.svg b/resources/svg/arrows.svg new file mode 100644 index 0000000..17bfae5 --- /dev/null +++ b/resources/svg/arrows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/asterisk-simple.svg b/resources/svg/asterisk-simple.svg new file mode 100644 index 0000000..2304d59 --- /dev/null +++ b/resources/svg/asterisk-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/at-symbol.svg b/resources/svg/at-symbol.svg new file mode 100644 index 0000000..df4dff5 --- /dev/null +++ b/resources/svg/at-symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/ban.svg b/resources/svg/ban.svg new file mode 100644 index 0000000..1efa201 --- /dev/null +++ b/resources/svg/ban.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/bandage.svg b/resources/svg/bandage.svg new file mode 100644 index 0000000..4f4cd99 --- /dev/null +++ b/resources/svg/bandage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/bars.svg b/resources/svg/bars.svg new file mode 100644 index 0000000..bf3efc8 --- /dev/null +++ b/resources/svg/bars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/basket.svg b/resources/svg/basket.svg new file mode 100644 index 0000000..61d4e9c --- /dev/null +++ b/resources/svg/basket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/battery-charging.svg b/resources/svg/battery-charging.svg new file mode 100644 index 0000000..77bbaed --- /dev/null +++ b/resources/svg/battery-charging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/battery-full.svg b/resources/svg/battery-full.svg new file mode 100644 index 0000000..93d94ee --- /dev/null +++ b/resources/svg/battery-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/battery-half.svg b/resources/svg/battery-half.svg new file mode 100644 index 0000000..3865880 --- /dev/null +++ b/resources/svg/battery-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/battery.svg b/resources/svg/battery.svg new file mode 100644 index 0000000..9587db5 --- /dev/null +++ b/resources/svg/battery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/bell-off.svg b/resources/svg/bell-off.svg new file mode 100644 index 0000000..4516587 --- /dev/null +++ b/resources/svg/bell-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/bell.svg b/resources/svg/bell.svg new file mode 100644 index 0000000..63607b0 --- /dev/null +++ b/resources/svg/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/bike.svg b/resources/svg/bike.svg new file mode 100644 index 0000000..5c182b5 --- /dev/null +++ b/resources/svg/bike.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/bold.svg b/resources/svg/bold.svg new file mode 100644 index 0000000..552111c --- /dev/null +++ b/resources/svg/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/book-open.svg b/resources/svg/book-open.svg new file mode 100644 index 0000000..919142e --- /dev/null +++ b/resources/svg/book-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/book.svg b/resources/svg/book.svg new file mode 100644 index 0000000..b5e3823 --- /dev/null +++ b/resources/svg/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/bookmark.svg b/resources/svg/bookmark.svg new file mode 100644 index 0000000..25b8215 --- /dev/null +++ b/resources/svg/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/box.svg b/resources/svg/box.svg new file mode 100644 index 0000000..bce0455 --- /dev/null +++ b/resources/svg/box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/brand-facebook.svg b/resources/svg/brand-facebook.svg new file mode 100644 index 0000000..c40b119 --- /dev/null +++ b/resources/svg/brand-facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/brand-github.svg b/resources/svg/brand-github.svg new file mode 100644 index 0000000..76139b8 --- /dev/null +++ b/resources/svg/brand-github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/brand-instagram.svg b/resources/svg/brand-instagram.svg new file mode 100644 index 0000000..7ea5f58 --- /dev/null +++ b/resources/svg/brand-instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/brand-twitter.svg b/resources/svg/brand-twitter.svg new file mode 100644 index 0000000..0ec9162 --- /dev/null +++ b/resources/svg/brand-twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/brand-x.svg b/resources/svg/brand-x.svg new file mode 100644 index 0000000..89f8b14 --- /dev/null +++ b/resources/svg/brand-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/briefcase.svg b/resources/svg/briefcase.svg new file mode 100644 index 0000000..fefbbb3 --- /dev/null +++ b/resources/svg/briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/brush-big.svg b/resources/svg/brush-big.svg new file mode 100644 index 0000000..dfa861d --- /dev/null +++ b/resources/svg/brush-big.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/building.svg b/resources/svg/building.svg new file mode 100644 index 0000000..b9c329e --- /dev/null +++ b/resources/svg/building.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/bulb-off.svg b/resources/svg/bulb-off.svg new file mode 100644 index 0000000..07a9f1e --- /dev/null +++ b/resources/svg/bulb-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/bulb.svg b/resources/svg/bulb.svg new file mode 100644 index 0000000..92ba08a --- /dev/null +++ b/resources/svg/bulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/calendar.svg b/resources/svg/calendar.svg new file mode 100644 index 0000000..190598d --- /dev/null +++ b/resources/svg/calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/camera-off.svg b/resources/svg/camera-off.svg new file mode 100644 index 0000000..1ffc3ab --- /dev/null +++ b/resources/svg/camera-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/camera-video-off.svg b/resources/svg/camera-video-off.svg new file mode 100644 index 0000000..69601ad --- /dev/null +++ b/resources/svg/camera-video-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/camera-video.svg b/resources/svg/camera-video.svg new file mode 100644 index 0000000..dd9ac80 --- /dev/null +++ b/resources/svg/camera-video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/camera.svg b/resources/svg/camera.svg new file mode 100644 index 0000000..cca1d7c --- /dev/null +++ b/resources/svg/camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/car.svg b/resources/svg/car.svg new file mode 100644 index 0000000..66b0f91 --- /dev/null +++ b/resources/svg/car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/cart.svg b/resources/svg/cart.svg new file mode 100644 index 0000000..6db3398 --- /dev/null +++ b/resources/svg/cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/certificate-off.svg b/resources/svg/certificate-off.svg new file mode 100644 index 0000000..5118494 --- /dev/null +++ b/resources/svg/certificate-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/certificate.svg b/resources/svg/certificate.svg new file mode 100644 index 0000000..b5f63c6 --- /dev/null +++ b/resources/svg/certificate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/chart.svg b/resources/svg/chart.svg new file mode 100644 index 0000000..7386358 --- /dev/null +++ b/resources/svg/chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/chat.svg b/resources/svg/chat.svg new file mode 100644 index 0000000..8b2868b --- /dev/null +++ b/resources/svg/chat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/chats.svg b/resources/svg/chats.svg new file mode 100644 index 0000000..0fa4b23 --- /dev/null +++ b/resources/svg/chats.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/check-circle.svg b/resources/svg/check-circle.svg new file mode 100644 index 0000000..066fcd6 --- /dev/null +++ b/resources/svg/check-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/check.svg b/resources/svg/check.svg new file mode 100644 index 0000000..d972550 --- /dev/null +++ b/resources/svg/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/chevron-down.svg b/resources/svg/chevron-down.svg new file mode 100644 index 0000000..a497674 --- /dev/null +++ b/resources/svg/chevron-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/chevron-left.svg b/resources/svg/chevron-left.svg new file mode 100644 index 0000000..7a74195 --- /dev/null +++ b/resources/svg/chevron-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/chevron-right.svg b/resources/svg/chevron-right.svg new file mode 100644 index 0000000..9db1792 --- /dev/null +++ b/resources/svg/chevron-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/chevron-up.svg b/resources/svg/chevron-up.svg new file mode 100644 index 0000000..54c814f --- /dev/null +++ b/resources/svg/chevron-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/circle.svg b/resources/svg/circle.svg new file mode 100644 index 0000000..aceb7bf --- /dev/null +++ b/resources/svg/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/clipboard.svg b/resources/svg/clipboard.svg new file mode 100644 index 0000000..0d87624 --- /dev/null +++ b/resources/svg/clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/clock.svg b/resources/svg/clock.svg new file mode 100644 index 0000000..ea6750e --- /dev/null +++ b/resources/svg/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/cloud-sun.svg b/resources/svg/cloud-sun.svg new file mode 100644 index 0000000..a197e2a --- /dev/null +++ b/resources/svg/cloud-sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/cloud.svg b/resources/svg/cloud.svg new file mode 100644 index 0000000..9fc88ab --- /dev/null +++ b/resources/svg/cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/code.svg b/resources/svg/code.svg new file mode 100644 index 0000000..935b48c --- /dev/null +++ b/resources/svg/code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/coffee.svg b/resources/svg/coffee.svg new file mode 100644 index 0000000..40eddaf --- /dev/null +++ b/resources/svg/coffee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/cog.svg b/resources/svg/cog.svg new file mode 100644 index 0000000..31ad2ea --- /dev/null +++ b/resources/svg/cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/coins.svg b/resources/svg/coins.svg new file mode 100644 index 0000000..b3a9e2f --- /dev/null +++ b/resources/svg/coins.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/columns-one-two-thirds.svg b/resources/svg/columns-one-two-thirds.svg new file mode 100644 index 0000000..31bf7d2 --- /dev/null +++ b/resources/svg/columns-one-two-thirds.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/columns-three-thirds.svg b/resources/svg/columns-three-thirds.svg new file mode 100644 index 0000000..83aa583 --- /dev/null +++ b/resources/svg/columns-three-thirds.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/columns-two-halfs.svg b/resources/svg/columns-two-halfs.svg new file mode 100644 index 0000000..90d6a93 --- /dev/null +++ b/resources/svg/columns-two-halfs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/corner-down-left.svg b/resources/svg/corner-down-left.svg new file mode 100644 index 0000000..8d6d2f1 --- /dev/null +++ b/resources/svg/corner-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/corner-down-right.svg b/resources/svg/corner-down-right.svg new file mode 100644 index 0000000..8f92fc6 --- /dev/null +++ b/resources/svg/corner-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/corner-left-down.svg b/resources/svg/corner-left-down.svg new file mode 100644 index 0000000..56faedf --- /dev/null +++ b/resources/svg/corner-left-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/corner-left-up.svg b/resources/svg/corner-left-up.svg new file mode 100644 index 0000000..1e7eba0 --- /dev/null +++ b/resources/svg/corner-left-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/corner-right-down.svg b/resources/svg/corner-right-down.svg new file mode 100644 index 0000000..31a9861 --- /dev/null +++ b/resources/svg/corner-right-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/corner-right-up.svg b/resources/svg/corner-right-up.svg new file mode 100644 index 0000000..e72a02f --- /dev/null +++ b/resources/svg/corner-right-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/corner-top-left.svg b/resources/svg/corner-top-left.svg new file mode 100644 index 0000000..2031863 --- /dev/null +++ b/resources/svg/corner-top-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/corner-up-right.svg b/resources/svg/corner-up-right.svg new file mode 100644 index 0000000..891b7de --- /dev/null +++ b/resources/svg/corner-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/cpu.svg b/resources/svg/cpu.svg new file mode 100644 index 0000000..5536676 --- /dev/null +++ b/resources/svg/cpu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/creative-commons-by.svg b/resources/svg/creative-commons-by.svg new file mode 100644 index 0000000..ff7bc61 --- /dev/null +++ b/resources/svg/creative-commons-by.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/creative-commons-nd.svg b/resources/svg/creative-commons-nd.svg new file mode 100644 index 0000000..e74d29b --- /dev/null +++ b/resources/svg/creative-commons-nd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/creative-commons-sa.svg b/resources/svg/creative-commons-sa.svg new file mode 100644 index 0000000..c33baa2 --- /dev/null +++ b/resources/svg/creative-commons-sa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/creative-commons.svg b/resources/svg/creative-commons.svg new file mode 100644 index 0000000..9d40fb2 --- /dev/null +++ b/resources/svg/creative-commons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/credit-card.svg b/resources/svg/credit-card.svg new file mode 100644 index 0000000..9ac0c7b --- /dev/null +++ b/resources/svg/credit-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/crop.svg b/resources/svg/crop.svg new file mode 100644 index 0000000..e08c3d7 --- /dev/null +++ b/resources/svg/crop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/crown.svg b/resources/svg/crown.svg new file mode 100644 index 0000000..ce1d689 --- /dev/null +++ b/resources/svg/crown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/currency-dollar-circle.svg b/resources/svg/currency-dollar-circle.svg new file mode 100644 index 0000000..bb853db --- /dev/null +++ b/resources/svg/currency-dollar-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/currency-euro-circle.svg b/resources/svg/currency-euro-circle.svg new file mode 100644 index 0000000..eed80c3 --- /dev/null +++ b/resources/svg/currency-euro-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/currency-pound-circle.svg b/resources/svg/currency-pound-circle.svg new file mode 100644 index 0000000..17330c4 --- /dev/null +++ b/resources/svg/currency-pound-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/dashboard.svg b/resources/svg/dashboard.svg new file mode 100644 index 0000000..b1bc993 --- /dev/null +++ b/resources/svg/dashboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/database.svg b/resources/svg/database.svg new file mode 100644 index 0000000..afa7bae --- /dev/null +++ b/resources/svg/database.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/desktop.svg b/resources/svg/desktop.svg new file mode 100644 index 0000000..c84e14a --- /dev/null +++ b/resources/svg/desktop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/document-add.svg b/resources/svg/document-add.svg new file mode 100644 index 0000000..cdf5ccc --- /dev/null +++ b/resources/svg/document-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/document-remove.svg b/resources/svg/document-remove.svg new file mode 100644 index 0000000..3aa6a46 --- /dev/null +++ b/resources/svg/document-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/document.svg b/resources/svg/document.svg new file mode 100644 index 0000000..b43fa48 --- /dev/null +++ b/resources/svg/document.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/documents.svg b/resources/svg/documents.svg new file mode 100644 index 0000000..6508906 --- /dev/null +++ b/resources/svg/documents.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/dots-horizontal.svg b/resources/svg/dots-horizontal.svg new file mode 100644 index 0000000..8092912 --- /dev/null +++ b/resources/svg/dots-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/dots-vertical.svg b/resources/svg/dots-vertical.svg new file mode 100644 index 0000000..33a607e --- /dev/null +++ b/resources/svg/dots-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/download-alt.svg b/resources/svg/download-alt.svg new file mode 100644 index 0000000..3b48af3 --- /dev/null +++ b/resources/svg/download-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/download.svg b/resources/svg/download.svg new file mode 100644 index 0000000..a227c8d --- /dev/null +++ b/resources/svg/download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/droplet.svg b/resources/svg/droplet.svg new file mode 100644 index 0000000..c3635d4 --- /dev/null +++ b/resources/svg/droplet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/duplicate.svg b/resources/svg/duplicate.svg new file mode 100644 index 0000000..bdf3a3d --- /dev/null +++ b/resources/svg/duplicate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/exchange-horizontal.svg b/resources/svg/exchange-horizontal.svg new file mode 100644 index 0000000..08f2c58 --- /dev/null +++ b/resources/svg/exchange-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/exchange-vertical.svg b/resources/svg/exchange-vertical.svg new file mode 100644 index 0000000..77b3360 --- /dev/null +++ b/resources/svg/exchange-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/exclamation-triangle.svg b/resources/svg/exclamation-triangle.svg new file mode 100644 index 0000000..b7c5bfc --- /dev/null +++ b/resources/svg/exclamation-triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/exclamation.svg b/resources/svg/exclamation.svg new file mode 100644 index 0000000..95ec3aa --- /dev/null +++ b/resources/svg/exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/expand.svg b/resources/svg/expand.svg new file mode 100644 index 0000000..f70f7bd --- /dev/null +++ b/resources/svg/expand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/external-link.svg b/resources/svg/external-link.svg new file mode 100644 index 0000000..cbdc8f2 --- /dev/null +++ b/resources/svg/external-link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/eye-close.svg b/resources/svg/eye-close.svg new file mode 100644 index 0000000..aa672af --- /dev/null +++ b/resources/svg/eye-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/eye-off.svg b/resources/svg/eye-off.svg new file mode 100644 index 0000000..59ffd6c --- /dev/null +++ b/resources/svg/eye-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/eye.svg b/resources/svg/eye.svg new file mode 100644 index 0000000..1f28f15 --- /dev/null +++ b/resources/svg/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/fast-forward.svg b/resources/svg/fast-forward.svg new file mode 100644 index 0000000..771fe4f --- /dev/null +++ b/resources/svg/fast-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/fingerprint.svg b/resources/svg/fingerprint.svg new file mode 100644 index 0000000..98b21e3 --- /dev/null +++ b/resources/svg/fingerprint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/flag.svg b/resources/svg/flag.svg new file mode 100644 index 0000000..95463c3 --- /dev/null +++ b/resources/svg/flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/flash.svg b/resources/svg/flash.svg new file mode 100644 index 0000000..67f80b4 --- /dev/null +++ b/resources/svg/flash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/flask.svg b/resources/svg/flask.svg new file mode 100644 index 0000000..55eda7c --- /dev/null +++ b/resources/svg/flask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/folder-add.svg b/resources/svg/folder-add.svg new file mode 100644 index 0000000..160f120 --- /dev/null +++ b/resources/svg/folder-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/folder-open.svg b/resources/svg/folder-open.svg new file mode 100644 index 0000000..b7458fd --- /dev/null +++ b/resources/svg/folder-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/folder-remove.svg b/resources/svg/folder-remove.svg new file mode 100644 index 0000000..73ad009 --- /dev/null +++ b/resources/svg/folder-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/folder.svg b/resources/svg/folder.svg new file mode 100644 index 0000000..77080ca --- /dev/null +++ b/resources/svg/folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/fork-knife.svg b/resources/svg/fork-knife.svg new file mode 100644 index 0000000..d3a9fde --- /dev/null +++ b/resources/svg/fork-knife.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/funnel.svg b/resources/svg/funnel.svg new file mode 100644 index 0000000..aacccbc --- /dev/null +++ b/resources/svg/funnel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/gift.svg b/resources/svg/gift.svg new file mode 100644 index 0000000..e9a799c --- /dev/null +++ b/resources/svg/gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/globe.svg b/resources/svg/globe.svg new file mode 100644 index 0000000..f3ce775 --- /dev/null +++ b/resources/svg/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/heading.svg b/resources/svg/heading.svg new file mode 100644 index 0000000..53b36b0 --- /dev/null +++ b/resources/svg/heading.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/heart.svg b/resources/svg/heart.svg new file mode 100644 index 0000000..c99a2ab --- /dev/null +++ b/resources/svg/heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/home.svg b/resources/svg/home.svg new file mode 100644 index 0000000..6dfe2e7 --- /dev/null +++ b/resources/svg/home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/humbleicon.svg b/resources/svg/humbleicon.svg new file mode 100644 index 0000000..daaf8ee --- /dev/null +++ b/resources/svg/humbleicon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/image.svg b/resources/svg/image.svg new file mode 100644 index 0000000..51838f8 --- /dev/null +++ b/resources/svg/image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/images.svg b/resources/svg/images.svg new file mode 100644 index 0000000..761a859 --- /dev/null +++ b/resources/svg/images.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/incognito-2.svg b/resources/svg/incognito-2.svg new file mode 100644 index 0000000..b6534b0 --- /dev/null +++ b/resources/svg/incognito-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/incognito.svg b/resources/svg/incognito.svg new file mode 100644 index 0000000..2ed2528 --- /dev/null +++ b/resources/svg/incognito.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/info-circle.svg b/resources/svg/info-circle.svg new file mode 100644 index 0000000..2870f8e --- /dev/null +++ b/resources/svg/info-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/italic.svg b/resources/svg/italic.svg new file mode 100644 index 0000000..075d25f --- /dev/null +++ b/resources/svg/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/key.svg b/resources/svg/key.svg new file mode 100644 index 0000000..879b693 --- /dev/null +++ b/resources/svg/key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/layers.svg b/resources/svg/layers.svg new file mode 100644 index 0000000..b852be7 --- /dev/null +++ b/resources/svg/layers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/link.svg b/resources/svg/link.svg new file mode 100644 index 0000000..97e7c45 --- /dev/null +++ b/resources/svg/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/location.svg b/resources/svg/location.svg new file mode 100644 index 0000000..929bb44 --- /dev/null +++ b/resources/svg/location.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/lock-open.svg b/resources/svg/lock-open.svg new file mode 100644 index 0000000..e6a1fa1 --- /dev/null +++ b/resources/svg/lock-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/lock.svg b/resources/svg/lock.svg new file mode 100644 index 0000000..cd7857c --- /dev/null +++ b/resources/svg/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/logout.svg b/resources/svg/logout.svg new file mode 100644 index 0000000..e1e26ea --- /dev/null +++ b/resources/svg/logout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/mail-open.svg b/resources/svg/mail-open.svg new file mode 100644 index 0000000..9e87f9e --- /dev/null +++ b/resources/svg/mail-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/mail.svg b/resources/svg/mail.svg new file mode 100644 index 0000000..6cadfc6 --- /dev/null +++ b/resources/svg/mail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/map.svg b/resources/svg/map.svg new file mode 100644 index 0000000..78da9ac --- /dev/null +++ b/resources/svg/map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/maximize.svg b/resources/svg/maximize.svg new file mode 100644 index 0000000..bf24eda --- /dev/null +++ b/resources/svg/maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/microphone-off.svg b/resources/svg/microphone-off.svg new file mode 100644 index 0000000..1577cab --- /dev/null +++ b/resources/svg/microphone-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/microphone.svg b/resources/svg/microphone.svg new file mode 100644 index 0000000..9b89323 --- /dev/null +++ b/resources/svg/microphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/minus-circle.svg b/resources/svg/minus-circle.svg new file mode 100644 index 0000000..be38d65 --- /dev/null +++ b/resources/svg/minus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/minus.svg b/resources/svg/minus.svg new file mode 100644 index 0000000..8fa4911 --- /dev/null +++ b/resources/svg/minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/mobile.svg b/resources/svg/mobile.svg new file mode 100644 index 0000000..d4caa4e --- /dev/null +++ b/resources/svg/mobile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/money.svg b/resources/svg/money.svg new file mode 100644 index 0000000..c9eb674 --- /dev/null +++ b/resources/svg/money.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/moon.svg b/resources/svg/moon.svg new file mode 100644 index 0000000..a9f4d07 --- /dev/null +++ b/resources/svg/moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/moustache.svg b/resources/svg/moustache.svg new file mode 100644 index 0000000..70f856e --- /dev/null +++ b/resources/svg/moustache.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/music-note.svg b/resources/svg/music-note.svg new file mode 100644 index 0000000..0bfe915 --- /dev/null +++ b/resources/svg/music-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/navigation.svg b/resources/svg/navigation.svg new file mode 100644 index 0000000..4db9731 --- /dev/null +++ b/resources/svg/navigation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/package.svg b/resources/svg/package.svg new file mode 100644 index 0000000..ff9a15a --- /dev/null +++ b/resources/svg/package.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/pause.svg b/resources/svg/pause.svg new file mode 100644 index 0000000..dc252a1 --- /dev/null +++ b/resources/svg/pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/pencil.svg b/resources/svg/pencil.svg new file mode 100644 index 0000000..0929ae3 --- /dev/null +++ b/resources/svg/pencil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/phone-call.svg b/resources/svg/phone-call.svg new file mode 100644 index 0000000..fc3dad3 --- /dev/null +++ b/resources/svg/phone-call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/phone-forward.svg b/resources/svg/phone-forward.svg new file mode 100644 index 0000000..5a64a2c --- /dev/null +++ b/resources/svg/phone-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/phone-incoming.svg b/resources/svg/phone-incoming.svg new file mode 100644 index 0000000..2475b06 --- /dev/null +++ b/resources/svg/phone-incoming.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/phone-missed.svg b/resources/svg/phone-missed.svg new file mode 100644 index 0000000..8fdfd22 --- /dev/null +++ b/resources/svg/phone-missed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/phone-off.svg b/resources/svg/phone-off.svg new file mode 100644 index 0000000..573ddca --- /dev/null +++ b/resources/svg/phone-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/phone-outgoing.svg b/resources/svg/phone-outgoing.svg new file mode 100644 index 0000000..56cce82 --- /dev/null +++ b/resources/svg/phone-outgoing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/phone.svg b/resources/svg/phone.svg new file mode 100644 index 0000000..a7dd441 --- /dev/null +++ b/resources/svg/phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/pie-chart.svg b/resources/svg/pie-chart.svg new file mode 100644 index 0000000..ebd927a --- /dev/null +++ b/resources/svg/pie-chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/play.svg b/resources/svg/play.svg new file mode 100644 index 0000000..771cd67 --- /dev/null +++ b/resources/svg/play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/plus-circle.svg b/resources/svg/plus-circle.svg new file mode 100644 index 0000000..a701fa9 --- /dev/null +++ b/resources/svg/plus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/plus.svg b/resources/svg/plus.svg new file mode 100644 index 0000000..6d4dba8 --- /dev/null +++ b/resources/svg/plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/power.svg b/resources/svg/power.svg new file mode 100644 index 0000000..b9fef82 --- /dev/null +++ b/resources/svg/power.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/print.svg b/resources/svg/print.svg new file mode 100644 index 0000000..c716992 --- /dev/null +++ b/resources/svg/print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/prompt.svg b/resources/svg/prompt.svg new file mode 100644 index 0000000..e30cd2c --- /dev/null +++ b/resources/svg/prompt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/radio.svg b/resources/svg/radio.svg new file mode 100644 index 0000000..b02350a --- /dev/null +++ b/resources/svg/radio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/rain.svg b/resources/svg/rain.svg new file mode 100644 index 0000000..00e2d0a --- /dev/null +++ b/resources/svg/rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/refresh.svg b/resources/svg/refresh.svg new file mode 100644 index 0000000..d4860cf --- /dev/null +++ b/resources/svg/refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/rewind.svg b/resources/svg/rewind.svg new file mode 100644 index 0000000..8104f9f --- /dev/null +++ b/resources/svg/rewind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/rocket.svg b/resources/svg/rocket.svg new file mode 100644 index 0000000..5ab16a5 --- /dev/null +++ b/resources/svg/rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/rss.svg b/resources/svg/rss.svg new file mode 100644 index 0000000..02a2ec6 --- /dev/null +++ b/resources/svg/rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/save.svg b/resources/svg/save.svg new file mode 100644 index 0000000..e60cfea --- /dev/null +++ b/resources/svg/save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/scissors.svg b/resources/svg/scissors.svg new file mode 100644 index 0000000..d7a0ac3 --- /dev/null +++ b/resources/svg/scissors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/search.svg b/resources/svg/search.svg new file mode 100644 index 0000000..85a1932 --- /dev/null +++ b/resources/svg/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/share-alt.svg b/resources/svg/share-alt.svg new file mode 100644 index 0000000..9bf7883 --- /dev/null +++ b/resources/svg/share-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/share.svg b/resources/svg/share.svg new file mode 100644 index 0000000..ad8b854 --- /dev/null +++ b/resources/svg/share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/ship.svg b/resources/svg/ship.svg new file mode 100644 index 0000000..cc5e0d8 --- /dev/null +++ b/resources/svg/ship.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/skip-backward.svg b/resources/svg/skip-backward.svg new file mode 100644 index 0000000..db518b5 --- /dev/null +++ b/resources/svg/skip-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/skip-forward.svg b/resources/svg/skip-forward.svg new file mode 100644 index 0000000..af19fa2 --- /dev/null +++ b/resources/svg/skip-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/snow.svg b/resources/svg/snow.svg new file mode 100644 index 0000000..efddd23 --- /dev/null +++ b/resources/svg/snow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/spinner-dots.svg b/resources/svg/spinner-dots.svg new file mode 100644 index 0000000..01907be --- /dev/null +++ b/resources/svg/spinner-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/spinner-earring.svg b/resources/svg/spinner-earring.svg new file mode 100644 index 0000000..b993825 --- /dev/null +++ b/resources/svg/spinner-earring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/spinner-planet.svg b/resources/svg/spinner-planet.svg new file mode 100644 index 0000000..6824667 --- /dev/null +++ b/resources/svg/spinner-planet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/square.svg b/resources/svg/square.svg new file mode 100644 index 0000000..b783142 --- /dev/null +++ b/resources/svg/square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/star.svg b/resources/svg/star.svg new file mode 100644 index 0000000..8efd9d2 --- /dev/null +++ b/resources/svg/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/storm.svg b/resources/svg/storm.svg new file mode 100644 index 0000000..ccd8aa8 --- /dev/null +++ b/resources/svg/storm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/sun.svg b/resources/svg/sun.svg new file mode 100644 index 0000000..e71d185 --- /dev/null +++ b/resources/svg/sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/support.svg b/resources/svg/support.svg new file mode 100644 index 0000000..012b8ce --- /dev/null +++ b/resources/svg/support.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/switch-off.svg b/resources/svg/switch-off.svg new file mode 100644 index 0000000..848ba7f --- /dev/null +++ b/resources/svg/switch-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/switch-on.svg b/resources/svg/switch-on.svg new file mode 100644 index 0000000..fa31efa --- /dev/null +++ b/resources/svg/switch-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/tag.svg b/resources/svg/tag.svg new file mode 100644 index 0000000..f43b101 --- /dev/null +++ b/resources/svg/tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/tags.svg b/resources/svg/tags.svg new file mode 100644 index 0000000..4b7b73e --- /dev/null +++ b/resources/svg/tags.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/text.svg b/resources/svg/text.svg new file mode 100644 index 0000000..5b44007 --- /dev/null +++ b/resources/svg/text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/times-circle.svg b/resources/svg/times-circle.svg new file mode 100644 index 0000000..14fe0ad --- /dev/null +++ b/resources/svg/times-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/times.svg b/resources/svg/times.svg new file mode 100644 index 0000000..9340607 --- /dev/null +++ b/resources/svg/times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/trash.svg b/resources/svg/trash.svg new file mode 100644 index 0000000..dc40269 --- /dev/null +++ b/resources/svg/trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/trending-down.svg b/resources/svg/trending-down.svg new file mode 100644 index 0000000..aaba5da --- /dev/null +++ b/resources/svg/trending-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/trending-up.svg b/resources/svg/trending-up.svg new file mode 100644 index 0000000..0812413 --- /dev/null +++ b/resources/svg/trending-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/triangle.svg b/resources/svg/triangle.svg new file mode 100644 index 0000000..2004cf7 --- /dev/null +++ b/resources/svg/triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/truck.svg b/resources/svg/truck.svg new file mode 100644 index 0000000..5576994 --- /dev/null +++ b/resources/svg/truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/underline.svg b/resources/svg/underline.svg new file mode 100644 index 0000000..0c6b3b1 --- /dev/null +++ b/resources/svg/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/upload.svg b/resources/svg/upload.svg new file mode 100644 index 0000000..81b2ea6 --- /dev/null +++ b/resources/svg/upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/user-add.svg b/resources/svg/user-add.svg new file mode 100644 index 0000000..ed0883f --- /dev/null +++ b/resources/svg/user-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/user-asking.svg b/resources/svg/user-asking.svg new file mode 100644 index 0000000..c9cdeee --- /dev/null +++ b/resources/svg/user-asking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/user-remove.svg b/resources/svg/user-remove.svg new file mode 100644 index 0000000..9c06b6c --- /dev/null +++ b/resources/svg/user-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/user.svg b/resources/svg/user.svg new file mode 100644 index 0000000..f4280a5 --- /dev/null +++ b/resources/svg/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/users.svg b/resources/svg/users.svg new file mode 100644 index 0000000..612f4bd --- /dev/null +++ b/resources/svg/users.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/verified.svg b/resources/svg/verified.svg new file mode 100644 index 0000000..77ec263 --- /dev/null +++ b/resources/svg/verified.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/view-grid.svg b/resources/svg/view-grid.svg new file mode 100644 index 0000000..f7027dd --- /dev/null +++ b/resources/svg/view-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/view-list.svg b/resources/svg/view-list.svg new file mode 100644 index 0000000..6436ba6 --- /dev/null +++ b/resources/svg/view-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/volume-1.svg b/resources/svg/volume-1.svg new file mode 100644 index 0000000..b4ab1b1 --- /dev/null +++ b/resources/svg/volume-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/volume-2.svg b/resources/svg/volume-2.svg new file mode 100644 index 0000000..9b3022e --- /dev/null +++ b/resources/svg/volume-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/volume-off.svg b/resources/svg/volume-off.svg new file mode 100644 index 0000000..5c8bc61 --- /dev/null +++ b/resources/svg/volume-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/volume.svg b/resources/svg/volume.svg new file mode 100644 index 0000000..8bd44df --- /dev/null +++ b/resources/svg/volume.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/wifi-off.svg b/resources/svg/wifi-off.svg new file mode 100644 index 0000000..ea13d2a --- /dev/null +++ b/resources/svg/wifi-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/wifi.svg b/resources/svg/wifi.svg new file mode 100644 index 0000000..582427b --- /dev/null +++ b/resources/svg/wifi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/wind.svg b/resources/svg/wind.svg new file mode 100644 index 0000000..7ba70fd --- /dev/null +++ b/resources/svg/wind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/zoom-in.svg b/resources/svg/zoom-in.svg new file mode 100644 index 0000000..3a272f3 --- /dev/null +++ b/resources/svg/zoom-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/svg/zoom-out.svg b/resources/svg/zoom-out.svg new file mode 100644 index 0000000..27fbfdf --- /dev/null +++ b/resources/svg/zoom-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/socialcard-blade-humbleicons.png b/socialcard-blade-humbleicons.png new file mode 100644 index 0000000..1bc7579 Binary files /dev/null and b/socialcard-blade-humbleicons.png differ diff --git a/src/BladeHumbleiconsServiceProvider.php b/src/BladeHumbleiconsServiceProvider.php new file mode 100644 index 0000000..46bdca9 --- /dev/null +++ b/src/BladeHumbleiconsServiceProvider.php @@ -0,0 +1,41 @@ +registerConfig(); + + $this->callAfterResolving(Factory::class, function (Factory $factory, Container $container) { + $config = $container->make('config')->get('blade-humbleicons', []); + + $factory->add('humbleicons', array_merge(['path' => __DIR__ . '/../resources/svg'], $config)); + }); + } + + private function registerConfig(): void + { + $this->mergeConfigFrom(__DIR__ . '/../config/blade-humbleicons.php', 'blade-humbleicons'); + } + + public function boot(): void + { + if ($this->app->runningInConsole()) { + $this->publishes([ + __DIR__ . '/../resources/svg' => public_path('vendor/blade-humbleicons'), + ], 'blade-humbleicons'); // TDOO: update this alias to `blade-humbleicons` in next major release + + $this->publishes([ + __DIR__ . '/../config/blade-humbleicons.php' => $this->app->configPath('blade-humbleicons.php'), + ], 'blade-humbleicons-config'); + } + } +} diff --git a/tests/CompilesIconsTest.php b/tests/CompilesIconsTest.php new file mode 100644 index 0000000..5ec7ca4 --- /dev/null +++ b/tests/CompilesIconsTest.php @@ -0,0 +1,86 @@ +toHtml(); + + // Note: the empty class here seems to be a Blade components bug. + $expected = <<<'SVG' + + SVG; + + $this->assertSame($expected, $result); + } + + /** @test */ + public function it_can_add_classes_to_icons() + { + $result = svg('humble-aid', 'w-6 h-6 text-gray-500')->toHtml(); + + $expected = <<<'SVG' + + SVG; + + $this->assertSame($expected, $result); + } + + /** @test */ + public function it_can_add_styles_to_icons() + { + $result = svg('humble-aid', ['style' => 'color: #555'])->toHtml(); + + $expected = <<<'SVG' + + SVG; + + $this->assertSame($expected, $result); + } + + /** @test */ + public function it_can_add_default_class_from_config() + { + Config::set('blade-humbleicons.class', 'awesome'); + + $result = svg('humble-aid')->toHtml(); + + $expected = <<<'SVG' + + SVG; + + $this->assertSame($expected, $result); + } + + /** @test */ + public function it_can_merge_default_class_from_config() + { + Config::set('blade-humbleicons.class', 'awesome'); + + $result = svg('humble-aid', 'w-6 h-6')->toHtml(); + + $expected = <<<'SVG' + + SVG; + + $this->assertSame($expected, $result); + } + + protected function getPackageProviders($app) + { + return [ + BladeIconsServiceProvider::class, + BladeHumbleiconsServiceProvider::class, + ]; + } +}