module View.Icon ( renderIcon ) where import Html exposing (..) import Html.Attributes exposing (..) renderIcon : String -> Html renderIcon iconClass = i [ class <| "fa fa-fw fa-" ++ iconClass ] []