13 lines
337 B
TypeScript
13 lines
337 B
TypeScript
import { FC, SVGProps } from 'react';
|
|
|
|
export const MicrosoftIcon: FC<SVGProps<SVGSVGElement>> = (props) => (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 24 24"
|
|
fill="currentColor"
|
|
{...props}
|
|
>
|
|
<path d="M0 0h11.42v11.42H0Zm12.58 0v11.42H24V0ZM0 12.58V24h11.42V12.58Zm12.58 0V24H24V12.58Z" />
|
|
</svg>
|
|
);
|