adding svg agent_icon

This commit is contained in:
its-a-feature
2026-02-05 09:22:22 -06:00
parent 038c0b9ea8
commit b1e7ed1771
+36
View File
@@ -0,0 +1,36 @@
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<!-- Browser window -->
<rect x="10" y="20" width="180" height="160" rx="8" fill="none" stroke="#2196F3" stroke-width="4"/>
<!-- Browser title bar -->
<rect x="10" y="20" width="180" height="35" rx="8" fill="#2196F3" opacity="0.2"/>
<line x1="10" y1="55" x2="190" y2="55" stroke="#2196F3" stroke-width="4"/>
<!-- Window control buttons -->
<circle cx="25" cy="37" r="5" fill="#FF5F56"/>
<circle cx="42" cy="37" r="5" fill="#FFBD2E"/>
<circle cx="59" cy="37" r="5" fill="#27C93F"/>
<!-- Address bar -->
<rect x="20" y="70" width="160" height="40" rx="6" fill="none" stroke="#2196F3" stroke-width="3"/>
<!-- Lock icon (unlocked for HTTP) -->
<g transform="translate(32, 82)">
<rect x="0" y="7" width="14" height="12" rx="1.5" fill="none" stroke="#FF5722" stroke-width="2.5"/>
<path d="M 2 7 L 2 4 Q 2 0, 7 0 Q 12 0, 12 4 L 12 5.5" fill="none" stroke="#FF5722" stroke-width="2.5" stroke-linecap="round"/>
</g>
<!-- http:// text -->
<text x="55" y="96" font-family="monospace" font-size="22" font-weight="bold" fill="#2196F3">http://</text>
<!-- Cursor blink -->
<rect x="163" y="80" width="3" height="22" fill="#2196F3">
<animate attributeName="opacity" values="1;0;1" dur="1.2s" repeatCount="indefinite"/>
</rect>
<!-- Browser content area representation -->
<rect x="30" y="125" width="140" height="45" rx="3" fill="#2196F3" opacity="0.1"/>
<line x1="40" y1="138" x2="100" y2="138" stroke="#2196F3" stroke-width="2.5" opacity="0.3"/>
<line x1="40" y1="150" x2="140" y2="150" stroke="#2196F3" stroke-width="2.5" opacity="0.3"/>
<line x1="40" y1="162" x2="120" y2="162" stroke="#2196F3" stroke-width="2.5" opacity="0.3"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB