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

1.0.4 2025-10-01 02:31 UTC

This package is auto-updated.

Last update: 2025-12-31 00:23:01 UTC


README

Tests Latest Stable Version Total Downloads

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.