
      import React, { Component } from 'react';

      export default class PersonPlusIcon 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-person-plus-icon ${this.props.className}`}><path d="M1 10h3V7h2v3h3v2H6v3H4v-3H1v-2zm14-6a4 4 0 1 1 0 8 4 4 0 0 1 0-8zm8 13v3H7v-3c0-1.657 3.582-3 8-3s8 1.343 8 3z"/></svg>
          )
        }
      }