
      import React, { Component } from 'react';

      export default class MicrosoftIcon extends Component {
        static defaultProps = {
          className: ''
        };

        constructor(props) {
          super(props);
        }

        render() {
          return (
            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-microsoft-icon ${this.props.className}`}><path d="M2 3h9v9H2V3zm9 19H2v-9h9v9zM21 3v9h-9V3h9zm0 19h-9v-9h9v9z"/></svg>
          )
        }
      }