This package adds a convenient way of using Font Awesome SVGs with your Phoenix, Phoenix LiveView and Surface applications.
You can find the original docs here and repo here.
Current FontAwesome version: 6.2.0
Add ex_fontawesome
to the list of dependencies in mix.exs
:
def deps do
[
{:ex_fontawesome, "~> 0.7.2"}
]
end
Then run mix deps.get
.
<%= FontAwesome.icon("address-book", type: "regular", class: "h-4 w-4") %>
<FontAwesome.LiveView.icon name="address-book" type="regular" class="h-4 w-4" />
<FontAwesome.Surface.Icon name="address-book" type="regular" class="h-4 w-4" />
Defaults can be set in the FontAwesome
application configuration.
config :ex_fontawesome, type: "regular"
MIT. See LICENSE for more details.