mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-11-24 00:42:29 +03:00
Adds empty calendar
This commit is contained in:
parent
86a108b8c9
commit
5d54ab0e2a
@ -10,7 +10,7 @@ module Nri.Ui.UiIcon.V1 exposing
|
||||
, hat, keychain
|
||||
, sprout, sapling, tree
|
||||
, person, couple, class, leaderboard, performance
|
||||
, calendar, clock
|
||||
, emptyCalendar, calendar, clock
|
||||
, missingDocument, document, documents, newspaper, openBook, openBooks
|
||||
, edit, pen, highlighter
|
||||
, speechBalloon, mail
|
||||
@ -42,7 +42,7 @@ module Nri.Ui.UiIcon.V1 exposing
|
||||
@docs hat, keychain
|
||||
@docs sprout, sapling, tree
|
||||
@docs person, couple, class, leaderboard, performance
|
||||
@docs calendar, clock
|
||||
@docs emptyCalendar, calendar, clock
|
||||
@docs missingDocument, document, documents, newspaper, openBook, openBooks
|
||||
@docs edit, pen, highlighter
|
||||
@docs speechBalloon, mail
|
||||
@ -315,6 +315,34 @@ sort =
|
||||
|> Nri.Ui.Svg.V1.fromHtml
|
||||
|
||||
|
||||
{-| -}
|
||||
emptyCalendar : Nri.Ui.Svg.V1.Svg
|
||||
emptyCalendar =
|
||||
Svg.svg
|
||||
[ Attributes.width "100%"
|
||||
, Attributes.height "100%"
|
||||
, Attributes.viewBox "0 0 23 25"
|
||||
]
|
||||
[ Svg.g
|
||||
[ Attributes.stroke "none"
|
||||
, Attributes.strokeWidth "1"
|
||||
, Attributes.fill "none"
|
||||
, Attributes.fillRule "evenodd"
|
||||
]
|
||||
[ Svg.g
|
||||
[ Attributes.transform "translate(-1.000000, 0.000000)"
|
||||
, Attributes.fill "currentcolor"
|
||||
]
|
||||
[ Svg.path
|
||||
[ Attributes.d "M24,6.06748352 L24,22.38807 C23.8127484,23.6415842 22.9490956,24.6604992 21.8248757,25 L3.21296367,25 C1.93924203,24.615352 1,23.3585754 1,21.876587 L1,6.57896739 C1,4.79325 2.36367767,3.33452174 4.0330319,3.33452174 L7.14841914,3.33452174 L7.14841914,0.86348913 C7.14841914,0.387695652 7.51085533,0 7.95564466,0 C8.40043508,0 8.76287128,0.387695652 8.76287128,0.86348913 L8.76287128,3.33452174 L16.2749681,3.33452174 L16.2749681,0.86348913 C16.2749681,0.387695652 16.6374043,0 17.0821914,0 C17.5269786,0 17.8894147,0.387695652 17.8894147,0.86348913 L17.8894147,3.33452174 L21.0048086,3.33452174 C22.5115487,3.33452174 23.7692689,4.52290311 24,6.06748352 Z M4.0330319,5.05952174 L7.14841914,5.05952174 L7.14841914,6.25 C7.14841914,6.72619565 7.51085533,7.11348913 7.95564466,7.11348913 C8.40043508,7.11348913 8.76287128,6.72619565 8.76287128,6.25 L8.76287128,5.05952174 L16.2475214,5.05952174 L16.2475214,6.25 C16.2475214,6.72619565 16.6095852,7.11348913 17.0547447,7.11348913 C17.4995319,7.11348913 17.8615957,6.72619565 17.8615957,6.25 L17.8615957,5.05952174 L20.9773509,5.05952174 C21.7567552,5.05952174 22.3959362,5.74483696 22.3959362,6.57738043 L22.3959362,9.46348913 L2.61445214,9.46348913 L2.61445214,6.57738043 C2.61445214,5.74483696 3.25325852,5.05952174 4.0330319,5.05952174 Z M21.0048086,23.3944446 L4.0330319,23.3944446 C3.25325852,23.3944446 2.61445214,22.7091272 2.61445214,21.876587 L2.61445214,11.2214239 L22.4233828,11.2214239 L22.4233828,21.876587 C22.4233828,22.7091272 21.7845852,23.3944446 21.0048086,23.3944446 Z"
|
||||
]
|
||||
[]
|
||||
]
|
||||
]
|
||||
]
|
||||
|> Nri.Ui.Svg.V1.fromHtml
|
||||
|
||||
|
||||
{-| -}
|
||||
calendar : Nri.Ui.Svg.V1.Svg
|
||||
calendar =
|
||||
|
@ -106,7 +106,8 @@ example =
|
||||
, ( "leaderboard", UiIcon.leaderboard )
|
||||
]
|
||||
, viewExampleSection "Time"
|
||||
[ ( "calendar", UiIcon.calendar )
|
||||
[ ( "emptyCalendar", UiIcon.emptyCalendar )
|
||||
, ( "calendar", UiIcon.calendar )
|
||||
, ( "clock", UiIcon.clock )
|
||||
]
|
||||
, viewExampleSection "Texts"
|
||||
|
Loading…
Reference in New Issue
Block a user