mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
66 lines
945 B
Elm
66 lines
945 B
Elm
module Data.Icons exposing
|
|
( addFiles
|
|
, addFilesIcon
|
|
, concerned
|
|
, concernedIcon
|
|
, correspondent
|
|
, correspondentIcon
|
|
, dueDate
|
|
, dueDateIcon
|
|
, editNotes
|
|
, editNotesIcon
|
|
)
|
|
|
|
import Html exposing (Html, i)
|
|
import Html.Attributes exposing (class)
|
|
|
|
|
|
concerned : String
|
|
concerned =
|
|
"crosshairs icon"
|
|
|
|
|
|
concernedIcon : Html msg
|
|
concernedIcon =
|
|
i [ class concerned ] []
|
|
|
|
|
|
correspondent : String
|
|
correspondent =
|
|
"address card outline icon"
|
|
|
|
|
|
correspondentIcon : Html msg
|
|
correspondentIcon =
|
|
i [ class correspondent ] []
|
|
|
|
|
|
dueDate : String
|
|
dueDate =
|
|
"bell icon"
|
|
|
|
|
|
dueDateIcon : Html msg
|
|
dueDateIcon =
|
|
i [ class dueDate ] []
|
|
|
|
|
|
editNotes : String
|
|
editNotes =
|
|
"comment alternate outline icon"
|
|
|
|
|
|
editNotesIcon : Html msg
|
|
editNotesIcon =
|
|
i [ class editNotes ] []
|
|
|
|
|
|
addFiles : String
|
|
addFiles =
|
|
"file plus icon"
|
|
|
|
|
|
addFilesIcon : Html msg
|
|
addFilesIcon =
|
|
i [ class addFiles ] []
|