Fresheyeball/elm-font-awesome

Font Awesome CSS helpers


License
BSD-3-Clause
Install
elm-package install Fresheyeball/elm-font-awesome 2.0.2

Documentation

Elm Font Awesome

If you are using FontAwesome CSS, then this library will make your life slightly nicer. Easily integrate FontAwesome icons into your Elm project without fear of typos.

import Html
import FontAwesome.Web as Icon

Html.div []
    [ Html.i [Attr.class "fa fa-check-circle"] [] ]
-- becomes
Html.div []
    [ Icon.check_circle ]