blob: 96fa6fffef3c6267eb444647d9f5d2b1e46ecc66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
module Icons exposing (..)
import FeatherIcons exposing (toHtml, withSize)
import Html
import Html.Styled exposing (..)
import Html.Styled.Attributes exposing (..)
import Html.Styled.Events exposing (..)
convert =
Html.Styled.fromUnstyled << toHtml [] << withSize 14
loginIcon =
convert FeatherIcons.logIn
starIcon =
convert FeatherIcons.star
|