mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-21 18:08:25 +00:00
Initial outline for managing spaces
This commit is contained in:
@ -19,6 +19,8 @@ module Data.Icons exposing
|
||||
, organizationIcon
|
||||
, person
|
||||
, personIcon
|
||||
, space
|
||||
, spaceIcon
|
||||
, tag
|
||||
, tagIcon
|
||||
, tags
|
||||
@ -29,6 +31,16 @@ import Html exposing (Html, i)
|
||||
import Html.Attributes exposing (class)
|
||||
|
||||
|
||||
space : String
|
||||
space =
|
||||
"folder outline icon"
|
||||
|
||||
|
||||
spaceIcon : String -> Html msg
|
||||
spaceIcon classes =
|
||||
i [ class (space ++ " " ++ classes) ] []
|
||||
|
||||
|
||||
concerned : String
|
||||
concerned =
|
||||
"crosshairs icon"
|
||||
|
Reference in New Issue
Block a user