This Magento 2 module adds the option to use FeatherIcons in your Hyva frontend.
This requires that you have a working Hyva frontend, this icon pack was made specifically for Hyva Themes and will not work out of the box with any other frontend.
If you are looking for a Luma based option checkout this icon pack instead.
Install the package via;
composer require siteation/magento2-hyva-icons-feather
bin/magento setup:upgrade
This Module requires Magento 2.4 or higher and requires Hyva! For more requirements see the
composer.json
.
By default this module loads nothing.
To use this icon pack instead of the default Hyva icons, add the following to your phtml file;
<?php
use Hyva\Theme\Model\ViewModelRegistry;
use Siteation\HyvaIconsFeather\ViewModel\FeatherIcons;
/** @var ViewModelRegistry $viewModels */
/** @var FeatherIcons $featherIcons */
$featherIcons = $viewModels->require(FeatherIcons::class);
and use the FeatherIcons just as the HeroIcons in Hyva;
<?= $featherIcons->menuHtml('') ?>