
      import React, { Component } from 'react';

      export default class VectorLineIcon 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-vector-line-icon ${this.props.className}`}><path fillRule="evenodd" d="M15 2.998v4.59L7.588 15h-4.59v6.001h6v-4.585L16.417 9h4.585V2.998M17.003 5h1.996v2.003h-1.996M5 17.003h2.003v1.996H5"/></svg>
          )
        }
      }