1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<!-- Vertical clip: outer wall down the left, around the open bottom loop,
back up the inner wall. One closed subpath, so it fills solid with no
even-odd rule to depend on. -->
<path fill="currentColor" d="M 10.4,1.1
C 8.75,1.1 7.4,2.45 7.4,4.1
V 11.6
a 1.1,1.1 0 0 0 2.2,0
V 4.6
a 0.85,0.85 0 0 1 1.7,0
V 11.7
a 2.75,2.75 0 0 1 -5.5,0
V 4.35
a 1.1,1.1 0 0 0 -2.2,0
V 11.7
C 3.6,14.4 5.8,16 8.35,16
10.9,16 13.1,14.4 13.1,11.7
V 4.1
C 13.1,2.45 11.9,1.1 10.4,1.1
Z"/>
</svg>
|