rickiezera / icons
Pacote de Blade Icons pronto para uso
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/rickiezera/icons
Requires
- php: ^8.0
- blade-ui-kit/blade-icons: ^1.8
README
A simple package to easily use custom Blade Icons in your Laravel views.
All icons are preconfigured and ready to use.
For a full list of available icons, check the SVG directory.
Requirements
- PHP 8.0 or higher
- Laravel 8.0 or higher
Installation
composer require rickiezera/icons
Blade Icons
Blade LucideIcons uses Blade Icons under the hood. Please refer to the Blade Icons readme for additional functionality. We also recommend to enable icon caching with this library.
Configuration
If you want to customize the SVGs, publish them to your project:
php artisan vendor:publish --tag=icons
They will be available in:
resources/vendor/icons/svg
Usage
Icons can be used as self-closing Blade components which will be compiled to SVG icons:
<x-icons-user />
You can also pass classes to your icon components:
<x-icons-album class="w-6 h-6 text-gray-500"/>
And even use inline styles:
<x-icons-anchor style="color: #555"/>
The solid icons can be referenced like this:
<x-icons-user />
Raw SVG Icons
If you want to use the raw SVG icons as assets, you can publish them using:
php artisan vendor:publish --tag=blade-lucide-icons --force
Then use them in your views like:
<img src="{{ asset('vendor/blade-lucide-icons/cloud-moon.svg') }}" width="10" height="10"/>
Changelog
Check out the CHANGELOG in this repository for all the recent changes.