diff --git a/src/Nri/Ui/PremiumCheckbox/V5.elm b/src/Nri/Ui/PremiumCheckbox/V5.elm index 6e82a948..c12e30b4 100644 --- a/src/Nri/Ui/PremiumCheckbox/V5.elm +++ b/src/Nri/Ui/PremiumCheckbox/V5.elm @@ -131,3 +131,28 @@ premiumFlag = ] ] ] + + +premiumWithWriting : Svg msg +premiumWithWriting = + svg + [ Svg.Attributes.width "25" + , Svg.Attributes.height "18" + , Svg.Attributes.viewBox "0 0 25 18" + ] + [ g + [ Svg.Attributes.fill "none" + , fillRule "evenodd" + ] + [ Svg.path + [ Svg.Attributes.fill "#FEC709" + , d "M12.662 0H0v17.5h24.777l-5.384-9.423L24.777 0z" + ] + [] + , Svg.path + [ Svg.Attributes.fill "#146AFF" + , d "M2.5 3.75h4.249c1.054 0 1.874.254 2.461.763.587.509.88 1.203.88 2.083 0 .88-.296 1.577-.887 2.09-.591.514-1.41.77-2.454.77H4.274v4.084H2.5V3.75zm4.043 4.331c.614 0 1.079-.126 1.395-.378.316-.252.474-.616.474-1.093 0-.486-.155-.855-.467-1.107-.312-.252-.78-.378-1.402-.378h-2.27v2.956h2.27zM12.85 7h1.31c.152 0 .278.127.278.288V9.57h2.283c.152 0 .279.127.279.28v1.31a.281.281 0 0 1-.279.278h-2.283v2.283a.281.281 0 0 1-.278.279h-1.31a.281.281 0 0 1-.28-.279v-2.283h-2.282A.283.283 0 0 1 10 11.16V9.85c0-.153.127-.28.288-.28h2.282V7.288c0-.161.127-.288.28-.288z" + ] + [] + ] + ]