PHP code example of macgyer / yii2-icon
1. Go to this page and download the library: Download macgyer/yii2-icon library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
macgyer / yii2-icon example snippets
// via named magical method
echo FontawesomeIconHelper::faUser()->regular()->size(8)->render();
// via instance by icon name and additional config
echo FontawesomeIconHelper::getInstance('user', ['flipVertical' => true])->regular()->render();