Download the PHP package kravcik/nette-macro-fontawesome without Composer
On this page you can find all versions of the php package kravcik/nette-macro-fontawesome. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download kravcik/nette-macro-fontawesome
More information about kravcik/nette-macro-fontawesome
Files in kravcik/nette-macro-fontawesome
Package nette-macro-fontawesome
Short Description Simple macro for Nette framework, which allow short entry of font-awesome icons.
License MIT
Homepage https://github.com/kravcik/nette-macro-fontawesome
Informations about the package nette-macro-fontawesome
This repo is discontinued - for Latte3 and PHP8.1 you should look here: https://github.com/kravcik/latte-font-awesome-icon
Simple macro for generating Font Awesome icons. First parameter is required. Parameters can be set in order or randomly with string keys (macro detects if it's getting an associative array).
Version 2.0.0
It's compatible with FontAwesome 5, but default style is set to light
. Best option would be to create multiple macros or a static variable to set default style. Send me a PR or create an issue if you need this.
Thanks to @peldax it's also possible to change the html element. Default is span.
Register to config.neon
Parameters
icon
- icon name withoutfa-
color
- color (blue, red-dark, etc.)size
- number (generatesfa-{size}x
) or sm, lg, etc.fw
- if TRUE, disablefa-fw
style
-fas
/far
/fal
/fab
Examples
{icon star, 'el' => 'i'}
-> <i class="fal fa-star fa-fw"></i>
{icon star}
-> <span class="fal fa-star fa-fw"></span>
{icon star, red}
-> <span class="fal fa-star color-red fa-fw"></span>
{icon star, NULL, lg}
-> <span class="fal fa-star fa-lg fa-fw"></span>
{icon star, yellow, 2}
-> <span class="fal fa-star color-yellow fa-2x fa-fw"></span>
{icon star, blue, 2, TRUE, far}
-> <span class="far fa-star color-blue fa-2x"></span>
{icon star, size => 2, fw => TRUE, color => 'green-light', style => 'fas'}
-> <span class="fas fa-star color-green-light fa-2x"></span>
Versions
Package | PHP | Nette | Font Awesome | Bootstrap |
---|---|---|---|---|
v4 | >=8.0 | >=3.0 | 5 | 4 |
v3 | >=7.3 | >=3.0 | 5 | 4 |
v2 | >=7.1 | >=2.4 | 5 | 3 |
v1 | >=5.6 | >=2.4 | 4 | 3 |