File size: 959 Bytes
ab38bab |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
<?xml version="1.0" encoding="UTF-8"?>
<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg">
<style>
.bg {
fill: #4a6cf7;
}
.letter {
fill: white;
font-family: 'Arial', sans-serif;
font-weight: bold;
font-size: 20px;
text-anchor: middle;
dominant-baseline: central;
}
.connection {
stroke: white;
stroke-width: 2;
fill: none;
}
</style>
<!-- Background -->
<rect width="32" height="32" rx="6" ry="6" class="bg" />
<!-- MCP Letters -->
<text x="16" y="16" class="letter">M</text>
<!-- Connection Lines -->
<line x1="8" y1="24" x2="24" y2="24" class="connection" />
<line x1="8" y1="24" x2="8" y2="10" class="connection" />
<line x1="24" y1="24" x2="24" y2="10" class="connection" />
</svg> |