
      import React, { Component } from 'react';

      export default class AccountPlusIcon 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-account-plus-icon ${this.props.className}`}><path d="M15 13.998c-2.668 0-8 1.335-8 4v2h16v-2c0-2.665-5.334-4-8-4zm-9-4v-3H4v3H1v2h3v3h2v-3h3v-2m6 2c2.207 0 4-1.793 4-4 0-2.208-1.793-4-4-4-2.209 0-4 1.792-4 4 0 2.207 1.791 4 4 4z"/></svg>
          )
        }
      }