10 lines
406 B
Plaintext
10 lines
406 B
Plaintext
package icons
|
|
|
|
templ LogoIcon(class string) {
|
|
<svg xmlns="http://www.w3.org/2000/svg" class={ class } viewBox="0 0 32 32" width="32" height="32" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linejoin="miter">
|
|
<!-- clean, superminimal, abstract logo without border-radius -->
|
|
<rect x="6" y="10" width="12" height="12"></rect>
|
|
<rect x="14" y="6" width="12" height="12"></rect>
|
|
</svg>
|
|
}
|