adds kebab

This commit is contained in:
Tessa Kelly 2022-08-10 11:21:31 -07:00
parent f91595c227
commit 4e669e85a7
2 changed files with 31 additions and 2 deletions

View File

@ -1,5 +1,5 @@
module Nri.Ui.UiIcon.V1 exposing module Nri.Ui.UiIcon.V1 exposing
( seeMore, openClose, download, sort, gear, flipper, hamburger ( seeMore, openClose, download, sort, gear, flipper, hamburger, kebab
, archive, unarchive , archive, unarchive
, playInCircle, pauseInCircle, stopInCircle , playInCircle, pauseInCircle, stopInCircle
, play, skip , play, skip
@ -34,7 +34,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> {-| 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 archive, unarchive
@docs playInCircle, pauseInCircle, stopInCircle @docs playInCircle, pauseInCircle, stopInCircle
@docs play, skip @docs play, skip
@ -963,6 +963,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 : Nri.Ui.Svg.V1.Svg
equals = equals =

View File

@ -59,6 +59,7 @@ all =
, ( "sort", UiIcon.sort, [] ) , ( "sort", UiIcon.sort, [] )
, ( "gear", UiIcon.gear, [] ) , ( "gear", UiIcon.gear, [] )
, ( "hamburger", UiIcon.hamburger, [] ) , ( "hamburger", UiIcon.hamburger, [] )
, ( "kebab", UiIcon.kebab, [] )
] ]
) )
, ( "Archive & Unarchive" , ( "Archive & Unarchive"