17 lines
937 B
XML
17 lines
937 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
|
||
|
|
<!-- Calendar body - rounded rectangle inspired by GB logo -->
|
||
|
|
<rect x="3" y="4" width="18" height="18" rx="3" ry="3"/>
|
||
|
|
<!-- Calendar header binding rings -->
|
||
|
|
<line x1="8" y1="2" x2="8" y2="6"/>
|
||
|
|
<line x1="16" y1="2" x2="16" y2="6"/>
|
||
|
|
<!-- Header separator -->
|
||
|
|
<line x1="3" y1="10" x2="21" y2="10"/>
|
||
|
|
<!-- Calendar grid dots - representing dates -->
|
||
|
|
<circle cx="8" cy="14" r="1" fill="currentColor" stroke="none"/>
|
||
|
|
<circle cx="12" cy="14" r="1" fill="currentColor" stroke="none"/>
|
||
|
|
<circle cx="16" cy="14" r="1" fill="currentColor" stroke="none"/>
|
||
|
|
<circle cx="8" cy="18" r="1" fill="currentColor" stroke="none"/>
|
||
|
|
<circle cx="12" cy="18" r="1" fill="currentColor" stroke="none"/>
|
||
|
|
<circle cx="16" cy="18" r="1" fill="currentColor" stroke="none"/>
|
||
|
|
</svg>
|