Spaces:
Runtime error
Runtime error
| export function MicrosoftIcon({ className }: { className?: string }) { | |
| return ( | |
| <svg | |
| aria-hidden="true" | |
| viewBox="0 0 23 23" | |
| className={className} | |
| data-view-component="true" | |
| > | |
| <path fill="currentColor" d="M1 1h10v10H1z" /> | |
| <path fill="currentColor" d="M12 1h10v10H12z" /> | |
| <path fill="currentColor" d="M1 12h10v10H1z" /> | |
| <path fill="currentColor" d="M12 12h10v10H12z" /> | |
| </svg> | |
| ); | |
| } | |