From a4d3448b47213844c092bb4165560e7b9a747387 Mon Sep 17 00:00:00 2001 From: James Gary Date: Wed, 4 Apr 2018 09:34:42 -0700 Subject: [PATCH] Add skip icon --- src/Nri/Ui/Icon/V2.elm | 8 ++++++++ styleguide-app/Assets.elm | 2 ++ styleguide-app/Examples/Icon.elm | 1 + 3 files changed, 11 insertions(+) diff --git a/src/Nri/Ui/Icon/V2.elm b/src/Nri/Ui/Icon/V2.elm index 577278ab..6feafca9 100644 --- a/src/Nri/Ui/Icon/V2.elm +++ b/src/Nri/Ui/Icon/V2.elm @@ -68,6 +68,7 @@ module Nri.Ui.Icon.V2 , revising , seeMore , share + , skip , sort , sortArrow , speedometer @@ -146,6 +147,7 @@ module Nri.Ui.Icon.V2 @docs quickWrite @docs seeMore @docs share +@docs skip @docs sort @docs sortArrow @docs speedometer @@ -651,6 +653,12 @@ share assets = SvgIcon assets.share +{-| -} +skip : { r | skip : String } -> IconType +skip assets = + SvgIcon assets.skip + + {-| -} sort : { r | sort : String } -> IconType sort assets = diff --git a/styleguide-app/Assets.elm b/styleguide-app/Assets.elm index 3174a0d1..733580d6 100644 --- a/styleguide-app/Assets.elm +++ b/styleguide-app/Assets.elm @@ -61,6 +61,7 @@ type alias Assets = , quiz : String , seemore : String , share : String + , skip : String , smallCheckmark_png : Asset , sort : String , sortArrow : String @@ -138,6 +139,7 @@ assets = , quiz = "" , seemore = "" , share = "" + , skip = "" , smallCheckmark_png = Asset "" , sort = "" , sortArrow = "" diff --git a/styleguide-app/Examples/Icon.elm b/styleguide-app/Examples/Icon.elm index 1f3b677b..5209a5d1 100644 --- a/styleguide-app/Examples/Icon.elm +++ b/styleguide-app/Examples/Icon.elm @@ -134,6 +134,7 @@ svgIcons = , { icon = Icon.preview assets, background = Light, alt = "Preview" } , { icon = Icon.seeMore assets, background = Light, alt = "See More" } , { icon = Icon.share assets, background = Light, alt = "Share" } + , { icon = Icon.skip assets, background = Light, alt = "Skip" } , { icon = Icon.sort assets, background = Light, alt = "Sort" } , { icon = Icon.sortArrow assets, background = Light, alt = "SortArrow" } , { icon = Icon.speedometer assets, background = Light, alt = "Speedometer" }