mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-21 18:08:25 +00:00
Use cards for viewing items
This commit is contained in:
41
modules/webapp/src/main/elm/Data/Icons.elm
Normal file
41
modules/webapp/src/main/elm/Data/Icons.elm
Normal file
@ -0,0 +1,41 @@
|
||||
module Data.Icons exposing
|
||||
( concerned
|
||||
, concernedIcon
|
||||
, correspondent
|
||||
, correspondentIcon
|
||||
, dueDate
|
||||
, dueDateIcon
|
||||
)
|
||||
|
||||
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 ] []
|
Reference in New Issue
Block a user