buddhaCode / blade-iconoir

A package to easily make use of Iconoir in your Laravel Blade views.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Blade Iconoir

A package to easily make use of Iconoir in your Laravel Blade views.

Latest Version on Packagist Software License Build Status Style CI Total Downloads

For a full list of available icons see the resources/svg directory or search

Requirements

  • PHP 7.4 or higher
  • Laravel 8.0 or higher

Install

composer require andreiio/blade-iconoir

Usage

Icons can be used a self-closing Blade components which will be compiled to SVG icons:

<x-iconoir-regular-bookmark />

You can also pass classes to your icon components:

<x-iconoir-regular-mail class="w-6 h-6 text-gray-500 fill-current" />

And even use inline styles:

<x-iconoir-solid-warning-triangle style="fill: #F00" />

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-iconoir --force

Then use them in your views like:

<img src="{{ asset('vendor/blade-iconoir/regular-bicycle.svg') }}" width="10" height="10"/>

Blade Icons

Blade Iconoir uses Blade Icons under the hood. Please refer to the Blade Icons readme for additional functionality.

Testing

composer test

Credits

License

This project is licensed under the MIT License (MIT) – see the LICENSE file for details.

About

A package to easily make use of Iconoir in your Laravel Blade views.

License:MIT License


Languages

Language:PHP 100.0%