wrdx / heroicons
Generate svg icons from heroicons.com with PHP
v1.0.4
2024-11-19 16:32 UTC
Requires
- php: ^8.1
- ext-simplexml: *
- meyfa/php-svg: ^0.14.7
Requires (Dev)
- ext-mbstring: *
- pestphp/pest: ^2.33
- symfony/var-dumper: ^6.4
README
Installation
Install the package via composer
composer require wrdx/heroicons
Usage
use Wrdx\Heroicons\Hero; echo Hero::icon('academic-cap')->svg();
A bit more control
use Wrdx\Heroicons\Hero; use Wrdx\Heroicons\Enums\Type; $icon = new Hero('academic-cap'); $icon->type(Type::micro); $icon->class('my-class', 'my-second-class'); $icon->attr('id','my-id'); echo $icon->svg();
Use the heroicon()
helper function
use Wrdx\Heroicons\Enums\Type; echo heroicon('academic-cap', Type::mini, ['id' => 'my-id']);
Development
Run tests
composer test
Update heroicons.com svg files
composer heroicons:update