25 lines
784 B
XML
25 lines
784 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<svg xmlns="http://www.w3.org/2000/svg"
|
|
width="15" height="15" viewBox="0 0 100 91.21">
|
|
|
|
<defs>
|
|
<linearGradient id="gradient" y1="100%" y2="0%">
|
|
<stop offset="20%" stop-color="hsl(60 90% 95%)" />
|
|
<stop offset="100%" stop-color="hsl(60 80% 90%)" />
|
|
</linearGradient>
|
|
|
|
<linearGradient id="fade">
|
|
<stop offset="25%" stop-color="white" />
|
|
<stop offset="87%" stop-color="black" />
|
|
</linearGradient>
|
|
|
|
<mask id="mask">
|
|
<rect fill="url(#fade)" x="30" y="80" width="70" height="20" />
|
|
</mask>
|
|
</defs>
|
|
|
|
<g fill="url(#gradient)">
|
|
<path id="pencil" d="M 70,0 l -70,70 v 21.21 h 21.21 l 70,-70 z" />
|
|
<path id="line" mask="url(#mask)" d="M 30,91.21 h 70 v -10 h -60 z" />
|
|
</g>
|
|
</svg>
|