17 lines
550 B
XML
17 lines
550 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 128 128" aria-label="Icon AB square">
|
|
<defs>
|
|
<style>
|
|
.bg { fill: #111827; rx: 20; }
|
|
.letters { fill: #f9fafb; font-family: "Inter", "Segoe UI", Roboto, sans-serif; font-weight: 800; font-size: 56px; }
|
|
</style>
|
|
</defs>
|
|
|
|
<!-- rounded square background -->
|
|
<rect class="bg" width="128" height="128" rx="20" ry="20"/>
|
|
|
|
<!-- letters -->
|
|
<text class="letters" x="64" y="78" text-anchor="middle" dominant-baseline="middle">mcp</text>
|
|
</svg>
|
|
|
|
|