26 lines
645 B
XML
26 lines
645 B
XML
|
|
<svg
|
||
|
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
|
width="24"
|
||
|
|
height="24"
|
||
|
|
viewBox="0 0 24 24"
|
||
|
|
fill="none"
|
||
|
|
stroke="currentColor"
|
||
|
|
stroke-width="2"
|
||
|
|
stroke-linecap="round"
|
||
|
|
stroke-linejoin="round"
|
||
|
|
>
|
||
|
|
<!-- Center agent -->
|
||
|
|
<circle cx="12" cy="12" r="3" />
|
||
|
|
|
||
|
|
<!-- Sub-agents -->
|
||
|
|
<circle cx="5" cy="5" r="2" />
|
||
|
|
<circle cx="19" cy="5" r="2" />
|
||
|
|
<circle cx="5" cy="19" r="2" />
|
||
|
|
<circle cx="19" cy="19" r="2" />
|
||
|
|
|
||
|
|
<!-- Connections -->
|
||
|
|
<line x1="9.5" y1="9.5" x2="6.5" y2="6.5" />
|
||
|
|
<line x1="14.5" y1="9.5" x2="17.5" y2="6.5" />
|
||
|
|
<line x1="9.5" y1="14.5" x2="6.5" y2="17.5" />
|
||
|
|
<line x1="14.5" y1="14.5" x2="17.5" y2="17.5" />
|
||
|
|
</svg>
|