blob: 1bf3b884703abc6827090135878a0cb9b169c103 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="40"
height="40">
<defs>
<g id="arrow">
<path d="M2,0 h36" fill="none" stroke="#3465a4"
stroke-width="2px" stroke-linejoin="round" stroke-linecap="round" />
<polygon points="38,0 30,-5 30,5" fill="#3465a4" stroke="#3465a4"
stroke-width="2px" stroke-linejoin="round" stroke-linecap="round" />
</g>
</defs>
<use xlink:href="#arrow" transform="translate(0, 10)" />
<use xlink:href="#arrow" transform="translate(40, 30) rotate(180)" />
</svg>
|