mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-12-25 22:53:34 +03:00
Add skip icon
This commit is contained in:
parent
1d1085ce68
commit
a4d3448b47
@ -68,6 +68,7 @@ module Nri.Ui.Icon.V2
|
|||||||
, revising
|
, revising
|
||||||
, seeMore
|
, seeMore
|
||||||
, share
|
, share
|
||||||
|
, skip
|
||||||
, sort
|
, sort
|
||||||
, sortArrow
|
, sortArrow
|
||||||
, speedometer
|
, speedometer
|
||||||
@ -146,6 +147,7 @@ module Nri.Ui.Icon.V2
|
|||||||
@docs quickWrite
|
@docs quickWrite
|
||||||
@docs seeMore
|
@docs seeMore
|
||||||
@docs share
|
@docs share
|
||||||
|
@docs skip
|
||||||
@docs sort
|
@docs sort
|
||||||
@docs sortArrow
|
@docs sortArrow
|
||||||
@docs speedometer
|
@docs speedometer
|
||||||
@ -651,6 +653,12 @@ share assets =
|
|||||||
SvgIcon assets.share
|
SvgIcon assets.share
|
||||||
|
|
||||||
|
|
||||||
|
{-| -}
|
||||||
|
skip : { r | skip : String } -> IconType
|
||||||
|
skip assets =
|
||||||
|
SvgIcon assets.skip
|
||||||
|
|
||||||
|
|
||||||
{-| -}
|
{-| -}
|
||||||
sort : { r | sort : String } -> IconType
|
sort : { r | sort : String } -> IconType
|
||||||
sort assets =
|
sort assets =
|
||||||
|
@ -61,6 +61,7 @@ type alias Assets =
|
|||||||
, quiz : String
|
, quiz : String
|
||||||
, seemore : String
|
, seemore : String
|
||||||
, share : String
|
, share : String
|
||||||
|
, skip : String
|
||||||
, smallCheckmark_png : Asset
|
, smallCheckmark_png : Asset
|
||||||
, sort : String
|
, sort : String
|
||||||
, sortArrow : String
|
, sortArrow : String
|
||||||
@ -138,6 +139,7 @@ assets =
|
|||||||
, quiz = ""
|
, quiz = ""
|
||||||
, seemore = ""
|
, seemore = ""
|
||||||
, share = ""
|
, share = ""
|
||||||
|
, skip = ""
|
||||||
, smallCheckmark_png = Asset ""
|
, smallCheckmark_png = Asset ""
|
||||||
, sort = ""
|
, sort = ""
|
||||||
, sortArrow = ""
|
, sortArrow = ""
|
||||||
|
@ -134,6 +134,7 @@ svgIcons =
|
|||||||
, { icon = Icon.preview assets, background = Light, alt = "Preview" }
|
, { icon = Icon.preview assets, background = Light, alt = "Preview" }
|
||||||
, { icon = Icon.seeMore assets, background = Light, alt = "See More" }
|
, { icon = Icon.seeMore assets, background = Light, alt = "See More" }
|
||||||
, { icon = Icon.share assets, background = Light, alt = "Share" }
|
, { 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.sort assets, background = Light, alt = "Sort" }
|
||||||
, { icon = Icon.sortArrow assets, background = Light, alt = "SortArrow" }
|
, { icon = Icon.sortArrow assets, background = Light, alt = "SortArrow" }
|
||||||
, { icon = Icon.speedometer assets, background = Light, alt = "Speedometer" }
|
, { icon = Icon.speedometer assets, background = Light, alt = "Speedometer" }
|
||||||
|
Loading…
Reference in New Issue
Block a user