/elm-font-awesome

font awesome css helpers and icons

Primary LanguageElmBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

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 ]