32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
<!-- Background gradient -->
|
|
<defs>
|
|
<linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#3b82f6;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#1e40af;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
|
|
<!-- Rounded square background -->
|
|
<rect width="100" height="100" rx="20" fill="url(#grad)"/>
|
|
|
|
<!-- Clock circle -->
|
|
<circle cx="50" cy="50" r="30" fill="none" stroke="white" stroke-width="3"/>
|
|
|
|
<!-- Clock hands -->
|
|
<!-- Hour hand (pointing to 10) -->
|
|
<line x1="50" y1="50" x2="50" y2="32" stroke="white" stroke-width="4" stroke-linecap="round"/>
|
|
|
|
<!-- Minute hand (pointing to 2) -->
|
|
<line x1="50" y1="50" x2="64" y2="42" stroke="white" stroke-width="3" stroke-linecap="round"/>
|
|
|
|
<!-- Center dot -->
|
|
<circle cx="50" cy="50" r="3" fill="white"/>
|
|
|
|
<!-- Clock markers (12, 3, 6, 9) -->
|
|
<circle cx="50" cy="23" r="2" fill="white"/>
|
|
<circle cx="77" cy="50" r="2" fill="white"/>
|
|
<circle cx="50" cy="77" r="2" fill="white"/>
|
|
<circle cx="23" cy="50" r="2" fill="white"/>
|
|
</svg>
|