18 lines
923 B
XML
18 lines
923 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
<!-- Background: rounded square in blue-600 -->
|
|
<rect width="32" height="32" rx="7" fill="#2563eb"/>
|
|
|
|
<!-- Connection lines: hub to agents -->
|
|
<line x1="16" y1="16" x2="16" y2="7" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-opacity="0.55"/>
|
|
<line x1="16" y1="16" x2="8.5" y2="23" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-opacity="0.55"/>
|
|
<line x1="16" y1="16" x2="23.5" y2="23" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-opacity="0.55"/>
|
|
|
|
<!-- Agent nodes (outer) -->
|
|
<circle cx="16" cy="7" r="2.5" fill="white" fill-opacity="0.8"/>
|
|
<circle cx="8.5" cy="23" r="2.5" fill="white" fill-opacity="0.8"/>
|
|
<circle cx="23.5" cy="23" r="2.5" fill="white" fill-opacity="0.8"/>
|
|
|
|
<!-- Orchestrator hub (center, larger) -->
|
|
<circle cx="16" cy="16" r="3.5" fill="white"/>
|
|
</svg>
|