Merge pull request #615 from NoRedInk/kraken/co-teach-icon

Adds couple for coteacher icon
This commit is contained in:
Ju Liu 2020-09-29 11:23:23 +01:00 committed by GitHub
commit 2295949a6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 2 deletions

View File

@ -5,7 +5,7 @@ module Nri.Ui.UiIcon.V1 exposing
, footsteps, compass, speedometer, bulb, help, checklist
, hat, keychain
, sprout, sapling, tree
, person, class, leaderboard, performance
, person, couple, class, leaderboard, performance
, calendar, clock
, missingDocument, document, documents, newspaper, openBook
, edit, pen
@ -29,7 +29,7 @@ module Nri.Ui.UiIcon.V1 exposing
@docs footsteps, compass, speedometer, bulb, help, checklist
@docs hat, keychain
@docs sprout, sapling, tree
@docs person, class, leaderboard, performance
@docs person, couple, class, leaderboard, performance
@docs calendar, clock
@docs missingDocument, document, documents, newspaper, openBook
@docs edit, pen
@ -438,6 +438,25 @@ person =
|> Nri.Ui.Svg.V1.fromHtml
{-| -}
couple : Nri.Ui.Svg.V1.Svg
couple =
Svg.svg
[ Attributes.width "100%"
, Attributes.height "100%"
, Attributes.fill "currentcolor"
, Attributes.viewBox "0 0 100 100"
]
[ Svg.g []
[ Svg.path [ Attributes.d "m43 30.398c0 8.5625-6.9414 15.5-15.5 15.5s-15.5-6.9375-15.5-15.5c0-8.5586 6.9414-15.5 15.5-15.5s15.5 6.9414 15.5 15.5" ] []
, Svg.path [ Attributes.d "m85.699 40.301c0 7.9531-6.4453 14.398-14.398 14.398s-14.402-6.4453-14.402-14.398 6.4492-14.402 14.402-14.402 14.398 6.4492 14.398 14.402" ] []
, Svg.path [ Attributes.d "m90.102 48.699c-0.60156-0.30078-1.1992-0.39844-1.8008-0.19922-0.60156 0.19922-1.1016 0.69922-1.3984 1.1992-2.7031 6.3008-8.9023 10.301-15.602 10.301-6.8008 0-12.898-4-15.602-10.301-0.30078-0.60156-0.80078-1-1.3984-1.1992-0.60156-0.19922-1.3008-0.10156-1.8008 0.19922-5 3.1016-8 8.3984-8 14.199v5.5c0 9.2031 7.5 16.602 16.699 16.602h20.199c9.1016 0 16.602-7.3984 16.602-16.602v-5.5c0-5.7969-3-11.098-7.8984-14.199z" ] []
, Svg.path [ Attributes.d "m40.102 67.301v-5.5c0-6.6016 3.3984-12.602 9-16.102 0.30078-0.19922 0.5-0.30078 0.80078-0.39844-0.90234-1.3008-1.9023-2.5-3.2031-3.5-0.69922-0.60156-1.8984-0.39844-2.3008 0.5-3.1992 6-9.6016 10.102-16.898 10.102-7.3008 0-13.602-4.1016-16.898-10.102-0.5-0.80078-1.6016-1.1016-2.3008-0.5-3.1992 2.5977-5.3008 6.5977-5.3008 11.199v4c0 8.8008 7.1992 16 16 16h18.602c0.5 0 1 0 1.5-0.10156 0.89844-0.10156 1.5-0.89844 1.3008-1.8008-0.20312-1.2969-0.30078-2.4961-0.30078-3.7969z" ] []
]
]
|> Nri.Ui.Svg.V1.fromHtml
{-| -}
clock : Nri.Ui.Svg.V1.Svg
clock =

View File

@ -64,6 +64,7 @@ example =
]
, IconExamples.view "Humans & Class"
[ ( "person", UiIcon.person )
, ( "couple", UiIcon.couple )
, ( "class", UiIcon.class )
, ( "leaderboard", UiIcon.leaderboard )
, ( "performance", UiIcon.performance )