This commit is contained in:
Stephan Raabe
2024-06-21 10:10:22 +02:00
parent 2fe54cd465
commit 1f693c84a2
8 changed files with 50 additions and 16 deletions

View File

@@ -2,7 +2,7 @@
<!-- Define the mask for the cutouts -->
<mask id="cutoutMask">
<!-- Circle -->
<circle fill="#ffffff" cx="120" cy="120" r="120" />
<circle fill="white" cx="120" cy="120" r="120" />
<!-- Big L Shape -->
<rect x="60" y="165" width="120" height="15" rx="4" ry="4" fill="black"/>
@@ -14,5 +14,5 @@
</mask>
<!-- Circle with cutouts -->
<circle fill="#ffffff" cx="120" cy="120" r="120" mask="url(#cutoutMask)" />
<circle fill="black" cx="120" cy="120" r="120" mask="url(#cutoutMask)" />
</svg>

Before

Width:  |  Height:  |  Size: 732 B

After

Width:  |  Height:  |  Size: 728 B

View File

@@ -0,0 +1,18 @@
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" role="img">
<!-- Define the mask for the cutouts -->
<mask id="cutoutMask">
<!-- Circle -->
<circle fill="white" cx="120" cy="120" r="120" />
<!-- Big L Shape -->
<rect x="60" y="165" width="120" height="15" rx="4" ry="4" fill="black"/>
<rect x="60" y="60" width="15" height="120" rx="4" ry="4" fill="black"/>
<!-- Little L Shape -->
<rect x="110" y="120" width="75" height="15" rx="4" ry="4" fill="black"/>
<rect x="110" y="55" width="15" height="80" rx="4" ry="4" fill="black"/>
</mask>
<!-- Circle with cutouts -->
<circle fill="white" cx="120" cy="120" r="120" mask="url(#cutoutMask)" />
</svg>

After

Width:  |  Height:  |  Size: 728 B