mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-11-23 08:27:11 +03:00
commit
f038618a20
@ -1,5 +1,5 @@
|
||||
module Nri.Ui.UiIcon.V1 exposing
|
||||
( seeMore, openClose, download, sort, gear, flipper, hamburger
|
||||
( seeMore, openClose, download, sort, gear, flipper, hamburger, kebab
|
||||
, archive, unarchive
|
||||
, playInCircle, pauseInCircle, stopInCircle
|
||||
, play, skip
|
||||
@ -35,7 +35,7 @@ module Nri.Ui.UiIcon.V1 exposing
|
||||
|
||||
{-| How to add new icons: <https://paper.dropbox.com/doc/How-to-create-a-new-SVG-icon-for-use-in-Elm--Ay9uhSLfGUAix0ERIiJ0Dm8dAg-8WNqtARdr4EgjmYEHPeYD>
|
||||
|
||||
@docs seeMore, openClose, download, sort, gear, flipper, hamburger
|
||||
@docs seeMore, openClose, download, sort, gear, flipper, hamburger, kebab
|
||||
@docs archive, unarchive
|
||||
@docs playInCircle, pauseInCircle, stopInCircle
|
||||
@docs play, skip
|
||||
@ -965,6 +965,34 @@ hamburger =
|
||||
]
|
||||
|
||||
|
||||
{-| -}
|
||||
kebab : Nri.Ui.Svg.V1.Svg
|
||||
kebab =
|
||||
Nri.Ui.Svg.V1.init "0 0 100 100"
|
||||
[ Svg.circle
|
||||
[ Attributes.cx "50"
|
||||
, Attributes.cy "13.7"
|
||||
, Attributes.r "12"
|
||||
, Attributes.fill "currentcolor"
|
||||
]
|
||||
[]
|
||||
, Svg.circle
|
||||
[ Attributes.cx "50"
|
||||
, Attributes.cy "50"
|
||||
, Attributes.r "12"
|
||||
, Attributes.fill "currentcolor"
|
||||
]
|
||||
[]
|
||||
, Svg.circle
|
||||
[ Attributes.cx "50"
|
||||
, Attributes.cy "86.3"
|
||||
, Attributes.r "12"
|
||||
, Attributes.fill "currentcolor"
|
||||
]
|
||||
[]
|
||||
]
|
||||
|
||||
|
||||
{-| -}
|
||||
equals : Nri.Ui.Svg.V1.Svg
|
||||
equals =
|
||||
|
@ -59,6 +59,7 @@ all =
|
||||
, ( "sort", UiIcon.sort, [] )
|
||||
, ( "gear", UiIcon.gear, [] )
|
||||
, ( "hamburger", UiIcon.hamburger, [] )
|
||||
, ( "kebab", UiIcon.kebab, [] )
|
||||
]
|
||||
)
|
||||
, ( "Archive & Unarchive"
|
||||
|
Loading…
Reference in New Issue
Block a user