
      import React, { Component } from 'react';

      export default class SourcePullIcon 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-source-pull-icon ${this.props.className}`}><path d="M6 3a3 3 0 0 1 1 5.83v6.34a3.001 3.001 0 1 1-2 0V8.83A3.001 3.001 0 0 1 6 3zm0 2a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm0 12a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm15 1a3 3 0 1 1-4-2.83V7h-2v3.25L10.75 6 15 1.75V5h2a2 2 0 0 1 2 2v8.17c1.165.412 2 1.524 2 2.83zm-3-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/></svg>
          )
        }
      }