
      import React, { Component } from 'react';

      export default class GoogleDriveIcon 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-drive-icon ${this.props.className}`}><path d="M7.71 3.519L1.15 14.998l3.426 5.993 6.559-11.466m-1.403 5.473l-3.432 6h13.119l3.429-6m-.572-1l-6.857-12h-6.84l-.004.008 6.853 11.992h6.848z"/></svg>
          )
        }
      }