Basic management of shares

This commit is contained in:
eikek
2021-10-02 15:16:02 +02:00
parent de1baf725f
commit c7d587bea4
27 changed files with 1551 additions and 20 deletions

View File

@ -58,11 +58,11 @@ module Data.Icons exposing
, personIcon2
, search
, searchIcon
, share
, shareIcon
, showQr
, showQrIcon
, source
, source2
, sourceIcon
, sourceIcon2
, tag
, tag2
@ -79,9 +79,14 @@ import Html exposing (Html, i)
import Html.Attributes exposing (class)
source : String
source =
"upload icon"
share : String
share =
"fa fa-share-alt"
shareIcon : String -> Html msg
shareIcon classes =
i [ class (classes ++ " " ++ share) ] []
source2 : String
@ -89,11 +94,6 @@ source2 =
"fa fa-upload"
sourceIcon : String -> Html msg
sourceIcon classes =
i [ class (source ++ " " ++ classes) ] []
sourceIcon2 : String -> Html msg
sourceIcon2 classes =
i [ class (source2 ++ " " ++ classes) ] []