
      import React, { Component } from 'react';

      export default class AccountBoxOutlineIcon 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-box-outline-icon ${this.props.className}`}><path d="M19 18.998L5 19V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-14a2 2 0 0 0-2-2zm-2.5 13.25c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25v.75h9m-4.5-4.75a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5z"/></svg>
          )
        }
      }