File size: 445 Bytes
05c5ed5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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>
  );
}