modernkernel/yii2-fontawesome

Font Awesome extension for Yii2


Keywords
extension, yii2, font-awesome-5
License
Apache-2.0

Documentation

Yii2 Font Awesome

Font Awesome extension for Yii2

Latest Stable Version Total Downloads Build Status

Installation

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.

Usage

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