Font Awesome extension for Yii2
The preferred way to install this extension is through composer.
Either run
php composer.phar require powerkernel/yii2-fontawesome "~2.0"
or add
"powerkernel/yii2-fontawesome": "~2.0"
to the require section of your composer.json
file.
Once the extension is installed, simply use it in your code by :
<?=
\powerkernel\fontawesome\Icon::widget([
'prefix'=>'fas', // Optional, can be fab, fas, far or fal
'name' => 'address-book', // icon name
'size'=>'fa-5x', // Optional
'styling'=>'fa-spin' // Optional
])
?>
For more details about how to use, see: https://fontawesome.com/how-to-use
Comments