
      import React, { Component } from 'react';

      export default class GoogleGlassIcon 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-google-glass-icon ${this.props.className}`}><path d="M13 10.998v2.5h5.868c-.613 3.507-3.36 6-6.869 6-4.136 0-7.5-3.364-7.5-7.5s3.364-7.5 7.5-7.5c2.087 0 3.9.888 5.16 2.341l1.775-1.776C17.244 3.176 14.826 1.998 12 1.998c-5.523 0-10 4.477-10 10s4.477 10 10 10c5.522 0 9.5-4.477 9.5-10v-1H13z"/></svg>
          )
        }
      }