diff --git a/src/Nri/Ui/Logo/V1.elm b/src/Nri/Ui/Logo/V1.elm index f6b1a736..08684662 100644 --- a/src/Nri/Ui/Logo/V1.elm +++ b/src/Nri/Ui/Logo/V1.elm @@ -1,14 +1,20 @@ module Nri.Ui.Logo.V1 exposing ( noredink - , facebook, twitter, clever, cleverC, googleClassroom, googleG - , canvas, schoology + , clever, cleverC, cleverLibrary + , googleClassroom, googleG + , canvas + , schoology + , facebook, twitter ) {-| @docs noredink -@docs facebook, twitter, clever, cleverC, googleClassroom, googleG -@docs canvas, schoology +@docs clever, cleverC, cleverLibrary +@docs googleClassroom, googleG +@docs canvas +@docs schoology +@docs facebook, twitter -} @@ -112,6 +118,31 @@ cleverC = |> Nri.Ui.Svg.V1.fromHtml +{-| -} +cleverLibrary : Nri.Ui.Svg.V1.Svg +cleverLibrary = + Svg.svg + [ Attributes.width "100%" + , Attributes.height "100%" + , Attributes.viewBox "0 0 580 198" + ] + [ Svg.g [ Attributes.stroke "none", Attributes.strokeWidth "1", Attributes.fill "none", Attributes.fillRule "evenodd" ] + [ Svg.g [ Attributes.transform "translate(0.591000, 0.620000)" ] + [ Svg.rect [ Attributes.fill "#004E95", Attributes.x "0", Attributes.y "0", Attributes.width "579", Attributes.height "197", Attributes.rx "20" ] [] + , Svg.g [ Attributes.transform "translate(72.226665, 38.500000)", Attributes.fill "#FFFFFF" ] + [ Svg.path [ Attributes.d "M-7.10542736e-15,60.9449215 C-7.10542736e-15,27.9721331 24.6067124,1.233515 59.8755314,1.233515 C81.528854,1.233515 94.4878507,8.45157562 105.149957,18.9504166 L89.0743052,37.4870838 C80.2158544,29.4492577 71.1941379,24.5280871 59.7114065,24.5280871 C40.3541146,24.5280871 26.4103682,40.6037392 26.4103682,60.2884217 C26.4103682,80.301354 40.0258647,96.7061154 59.7114065,96.7061154 C72.8345281,96.7061154 80.8723542,91.4566949 89.89493,83.2547438 L105.970582,99.4945209 C94.1596008,112.125268 81.0364791,119.999828 58.8907817,119.999828 C25.0982279,119.999828 -7.10542736e-15,93.9168505 -7.10542736e-15,60.9449215 Z" ] [] + , Svg.polygon [ Attributes.points "108.264894 119.750204 133.198997 119.750204 133.198997 0 108.264894 0" ] [] + , Svg.path [ Attributes.d "M179.45654,48.4776122 C169.121824,48.4776122 162.396138,55.8597978 160.427498,67.1784043 L197.993207,67.1784043 C196.516942,56.0239227 189.955381,48.4776122 179.45654,48.4776122 M221.94342,82.7625408 L160.755748,82.7625408 C163.216763,94.0811473 171.090464,99.9862083 182.245805,99.9862083 C190.611022,99.9862083 196.681067,97.3619277 203.570878,90.9644919 L217.842015,103.596098 C209.640064,113.76583 197.829082,120 181.917555,120 C155.506328,120 135.98577,101.463333 135.98577,74.5605898 L135.98577,74.2323399 C135.98577,49.134112 153.865937,28.4646798 179.45654,28.4646798 C208.820298,28.4646798 222.27167,51.2668771 222.27167,76.20098 L222.27167,76.5292299 C222.27167,78.9893856 222.107545,80.4656508 221.94342,82.7625408" ] [] + , Svg.polygon [ Attributes.points "269.693641 119.546723 247.056428 119.546723 212.443249 30.9647926 238.853617 30.9647926 258.539159 89.8555743 278.387966 30.9647926 304.306819 30.9647926" ] [] + , Svg.path [ Attributes.d "M336.615718,48.4776122 C326.281002,48.4776122 319.555316,55.8597978 317.586676,67.1784043 L355.152385,67.1784043 C353.67612,56.0239227 347.114559,48.4776122 336.615718,48.4776122 M379.102597,82.7625408 L317.914926,82.7625408 C320.375941,94.0811473 328.249642,99.9862083 339.404983,99.9862083 C347.770199,99.9862083 353.840245,97.3619277 360.730055,90.9644919 L375.001192,103.596098 C366.799241,113.76583 354.98826,120 339.076733,120 C312.665505,120 293.144948,101.463333 293.144948,74.5605898 L293.144948,74.2323399 C293.144948,49.134112 311.025115,28.4646798 336.615718,28.4646798 C365.979476,28.4646798 379.430847,51.2668771 379.430847,76.20098 L379.430847,76.5292299 C379.430847,78.9893856 379.266722,80.4656508 379.102597,82.7625408" ] [] + , Svg.path [ Attributes.d "M433.234529,56.2657277 C416.666502,56.2657277 406.495911,66.2721939 406.495911,87.269876 L406.495911,119.74943 L381.561808,119.74943 L381.561808,31.8239996 L406.495911,31.8239996 L406.495911,49.540042 C411.581206,37.4008107 419.783157,29.5271096 434.546669,30.1827501 L434.546669,56.2657277 L433.234529,56.2657277 Z" ] [] + ] + ] + ] + ] + |> Nri.Ui.Svg.V1.fromHtml + + {-| -} twitter : Nri.Ui.Svg.V1.Svg twitter = diff --git a/styleguide-app/Examples/Logo.elm b/styleguide-app/Examples/Logo.elm index 75fb60fe..f6682581 100644 --- a/styleguide-app/Examples/Logo.elm +++ b/styleguide-app/Examples/Logo.elm @@ -71,6 +71,13 @@ example = ] ) , ( "cleverC", Logo.cleverC, defaults ) + , ( "cleverLibrary" + , Logo.cleverLibrary + , [ Css.height (Css.px 25) + , Css.width (Css.px 100) + , Css.margin (Css.px 4) + ] + ) ] , IconExamples.viewWithCustomStyles "Google" [ ( "googleClassroom"