diff options
author | Joris Guyonvarch | 2015-07-19 00:45:42 +0200 |
---|---|---|
committer | Joris Guyonvarch | 2015-07-19 00:45:42 +0200 |
commit | a6727f104f808e533052f2bd83bc89cd6bfa0522 (patch) | |
tree | 2c7b8b16d377c04e9e9a32b74102666f6dae16cf /src/client/View/Icon.elm | |
parent | 3486644b442a0800f645ec9ae7f3ce8fe2b3c9cd (diff) |
Adding UI to sign in and sign out
Diffstat (limited to 'src/client/View/Icon.elm')
-rw-r--r-- | src/client/View/Icon.elm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/client/View/Icon.elm b/src/client/View/Icon.elm new file mode 100644 index 0000000..f22c1a2 --- /dev/null +++ b/src/client/View/Icon.elm @@ -0,0 +1,12 @@ +module View.Icon + ( renderIcon + ) where + +import Html exposing (..) +import Html.Attributes exposing (..) + +renderIcon : String -> Html +renderIcon iconClass = + i + [ class <| "fa fa-fw fa-" ++ iconClass ] + [] |