25 lines
1012 B
XML
25 lines
1012 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="20">
|
||
|
<linearGradient id="b" x2="0" y2="100%">
|
||
|
<stop offset="0" stop-color="#bbb" stop-opacity=".1"/>
|
||
|
<stop offset="1" stop-opacity=".1"/>
|
||
|
</linearGradient>
|
||
|
<mask id="a">
|
||
|
<rect width="100" height="20" rx="3" fill="#fff"/>
|
||
|
</mask>
|
||
|
<g mask="url(#a)">
|
||
|
<path fill="#555" d="M0 0h34v20H0z"/>
|
||
|
<path fill="#54a9eb" d="M34 0h68v20H34z"/>
|
||
|
<path fill="url(#b)" d="M0 0h92v20H0z"/>
|
||
|
</g>
|
||
|
<g fill="#fff" text-anchor="middle"
|
||
|
font-family="HelveticaNeue-Light,Helvetica Neue Light, Helvetica Light,Helvetica,Arial,Verdana,sans-serif"
|
||
|
font-size="11" color="#fff" font-weight="bold">
|
||
|
<text x="16" y="15" fill="#010101" fill-opacity=".3">chat</text>
|
||
|
<text x="16" y="14">chat</text>
|
||
|
<text x="67" y="15" fill="#010101" fill-opacity=".3">on telegram</text>
|
||
|
<text x="67" y="14">on telegram</text>
|
||
|
</g>
|
||
|
|
||
|
</svg>
|