aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/Icons.elm
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/Icons.elm')
-rw-r--r--frontend/src/Icons.elm8
1 files changed, 6 insertions, 2 deletions
diff --git a/frontend/src/Icons.elm b/frontend/src/Icons.elm
index d3b862f..96fa6ff 100644
--- a/frontend/src/Icons.elm
+++ b/frontend/src/Icons.elm
@@ -1,6 +1,6 @@
1module Icons exposing (..) 1module Icons exposing (..)
2 2
3import FeatherIcons exposing (toHtml) 3import FeatherIcons exposing (toHtml, withSize)
4import Html 4import Html
5import Html.Styled exposing (..) 5import Html.Styled exposing (..)
6import Html.Styled.Attributes exposing (..) 6import Html.Styled.Attributes exposing (..)
@@ -8,8 +8,12 @@ import Html.Styled.Events exposing (..)
8 8
9 9
10convert = 10convert =
11 Html.Styled.fromUnstyled << toHtml [] 11 Html.Styled.fromUnstyled << toHtml [] << withSize 14
12 12
13 13
14loginIcon = 14loginIcon =
15 convert FeatherIcons.logIn 15 convert FeatherIcons.logIn
16
17
18starIcon =
19 convert FeatherIcons.star