40 lines
1.5 KiB
XML
40 lines
1.5 KiB
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round">
|
||
|
|
<defs>
|
||
|
|
<!-- Define a single blade upright (pointing North) -->
|
||
|
|
<!-- Blade width: 20px (-10 to 10) -->
|
||
|
|
<!-- Blade length: extends to -44px -->
|
||
|
|
<!-- Base starts at -8px to ensure corners are hidden by the center circle -->
|
||
|
|
<g id="blade">
|
||
|
|
<!-- Main Page Outline -->
|
||
|
|
<path d="M -10 -8
|
||
|
|
L -10 -44
|
||
|
|
L 4 -44
|
||
|
|
L 10 -38
|
||
|
|
L 10 -8
|
||
|
|
Z"
|
||
|
|
fill="white"/>
|
||
|
|
|
||
|
|
<!-- The Dog-Ear Fold (Top Right corner) -->
|
||
|
|
<path d="M 4 -44 L 4 -38 L 10 -38" fill="white"/>
|
||
|
|
|
||
|
|
<!-- Text Lines (Centered) -->
|
||
|
|
<line x1="-6" y1="-30" x2="6" y2="-30" />
|
||
|
|
<line x1="-6" y1="-23" x2="6" y2="-23" />
|
||
|
|
<line x1="-6" y1="-16" x2="6" y2="-16" />
|
||
|
|
</g>
|
||
|
|
</defs>
|
||
|
|
|
||
|
|
<!-- Rotate the blade 4 times around the center (50,50) -->
|
||
|
|
<!-- 45° (Top Right) -->
|
||
|
|
<use href="#blade" transform="translate(50, 50) rotate(45)" />
|
||
|
|
<!-- 135° (Bottom Right) -->
|
||
|
|
<use href="#blade" transform="translate(50, 50) rotate(135)" />
|
||
|
|
<!-- 225° (Bottom Left) -->
|
||
|
|
<use href="#blade" transform="translate(50, 50) rotate(225)" />
|
||
|
|
<!-- 315° (Top Left) -->
|
||
|
|
<use href="#blade" transform="translate(50, 50) rotate(315)" />
|
||
|
|
|
||
|
|
<!-- Center Hub Circle -->
|
||
|
|
<!-- Radius 13 ensures it covers the blade corners (sqrt(10^2 + 8^2) ≈ 12.8) -->
|
||
|
|
<circle cx="50" cy="50" r="13" fill="white" />
|
||
|
|
</svg>
|