Merge pull request #1025 from NoRedInk/tessa/kebab

Adds UiIcon.kebab
This commit is contained in:
Tessa 2022-08-10 16:14:49 -07:00 committed by GitHub
commit f038618a20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 2 deletions

View File

@ -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 =

View File

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