snowpurple / yii2-feathericons
An asset bundle of Feather Icons, a beautiful opensource icon set, made for use with Yii2.
Installs: 1 707
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:JavaScript
Type:yii2-extension
Requires
- yiisoft/yii2: ~2.0.0
This package is auto-updated.
Last update: 2022-08-11 15:50:59 UTC
README
An asset bundle of Feather Icons, a beautiful open source icon set, made for use with Yii2.
Installation
The preferred way to install this extension is through Composer.
Either run
php composer.phar require basepodapps/yii2-feathericons:^1.0.0
or add
"basepodapps/yii2-feathericons": "^1.0.0"
to the require section of your composer.json
file.
Usage
Once the extension is installed, create a custom asset bundle and use it in your app:
<?php namespace app\assets; use yii\web\AssetBundle; class FeatherIconsAsset extends AssetBundle { public $depends = [ 'basepodapps\feathericons\FeatherIconsAsset' ]; }
Or, directly register the asset bundle in your views:
use app\assets\AppAsset; use basepodapps\feathericons\FeatherIconsAsset; AppAsset::register($this); FeatherIconsAsset::register($this);
You can also use it together with Krajee's Yii2-Icons extension in your views:
use kartik\icons\Icon; Icon::map($this); // Add 'Feather Icons' as custom icon framework Icon::addFramework('feather', [ 'class' => '\basepodapps\feathericons\FeatherIconsAsset', 'prefix' => 'feather-icon-', ]); Icon::map($this, 'feather'); --- // Sample usage <?= Icon::show('users', [ 'class'=>'page-header-icon', 'data-feather' => 'users', 'framework' => 'feather' ]) ?>
feather-icons@4.29.0