mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-02 03:15:05 -05:00
9dad06222d
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
16 lines
454 B
TypeScript
16 lines
454 B
TypeScript
export const MicrosoftIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => {
|
|
return (
|
|
<svg
|
|
stroke="currentColor"
|
|
fill="currentColor"
|
|
strokeWidth="0"
|
|
viewBox="0 0 448 512"
|
|
height="1em"
|
|
width="1em"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
{...props}>
|
|
<path d="M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z"></path>
|
|
</svg>
|
|
);
|
|
};
|