docspell/website/elm/Icons.elm

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
893 B
Elm
Raw Normal View History

2020-07-27 20:13:22 +00:00
module Icons exposing (..)
import Html exposing (..)
import Html.Attributes exposing (..)
copyright : Html msg
copyright =
2022-01-27 19:23:15 +00:00
i [ class "fa fa-copyright font-thin" ] []
2020-07-27 20:13:22 +00:00
infoSquared : Html msg
infoSquared =
img [ src "icons/info-square-40.svg" ] []
refresh : Html msg
refresh =
img [ src "icons/refresh-40.svg" ] []
logo : Html msg
logo =
2020-07-31 13:13:07 +00:00
img [ src "icons/logo-only-36.svg" ] []
2020-07-27 20:13:22 +00:00
logoMC : Html msg
logoMC =
img [ src "icons/logo-only-mc.svg" ] []
logoWidth : Int -> Html msg
logoWidth w =
img [ src "icons/logo-only.svg", width w ] []
home : Html msg
home =
2022-01-27 19:23:15 +00:00
i [ class "fa fa-home" ] []
2020-07-27 20:13:22 +00:00
docs : Html msg
docs =
2022-01-27 19:23:15 +00:00
i [ class "fa fa-book" ] []
2020-07-27 20:13:22 +00:00
github : Html msg
github =
2022-01-27 19:23:15 +00:00
i [ class "fab fa-github-alt" ] []
2020-07-27 20:13:22 +00:00
githubGreen : Html msg
githubGreen =
img [ src "/icons/github-40-green.svg" ] []
2022-01-27 19:23:15 +00:00
blog : Html msg
blog =
i [ class "fa fa-blog" ] []