modcomms/frontend/components/icons/MicrosoftLogo.tsx
2025-12-18 16:51:27 +00:00

11 lines
384 B
TypeScript
Executable file

import React from 'react';
export const MicrosoftLogo: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 23" {...props}>
<path fill="#f35325" d="M1 1h10v10H1z"/>
<path fill="#81bc06" d="M12 1h10v10H12z"/>
<path fill="#05a6f0" d="M1 12h10v10H1z"/>
<path fill="#ffba08" d="M12 12h10v10H12z"/>
</svg>
);