
      import React, { Component } from 'react';

      export default class AutoUploadIcon 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-auto-upload-icon ${this.props.className}`}><path d="M5.35 12.648l1.15-3.65 1.15 3.65M5.5 6.998l-3.2 9h1.9l.7-2h3.2l.7 2h1.9l-3.2-9m3.5 13h11v-2H11m3-2h5v-5h3l-5.5-5.5-5.5 5.5h3v5z"/></svg>
          )
        }
      }