This package doesn't have any WireUI dependency.
WireUI Heroicons is a library of icons components to empower your Laravel and Livewire application development.
Stop creating all icons components from scratch. Get all WireUI Heroicons for free.
A set of free MIT-licensed high-quality SVG icons for UI development made by
TailwindLabs.
See all
Heroicons.
Requirements
First, you need to install the package via Composer.
1composer require wireui/heroicons
Publish the configuration and views. It's optional.
1php artisan vendor:publish --tag="wireui.heroicons.config"2php artisan vendor:publish --tag="wireui.heroicons.views"
You can find a list of all icons and variants on the Heroicons website.
Available variants:
- mini.solid
- solid
- outline
1<x-icon name="user" />2<x-icon name="user" solid />3<x-icon name="user" solid mini />4<x-icon name="user" variant="solid" />5<x-icon class="w-5 h-5 text-teal-600" name="user" />6 7<x-heroicons::outline.user />8<x-heroicons::solid.user />9<x-heroicons::mini.solid.user class="w-5 h-5" />