
      import React, { Component } from 'react';

      export default class AccountMultipleIcon 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-multiple-icon ${this.props.className}`}><path d="M16 12.998c-.29 0-.618.018-.966.054 1.16.837 1.965 1.963 1.965 3.446v2.5h6v-2.5c0-2.332-4.667-3.5-7-3.5zm-8 0c-2.335 0-7 1.168-7 3.5v2.5h14v-2.5c0-2.332-4.668-3.5-7-3.5zm0-2a2.992 2.992 0 0 0 2.99-3c0-1.656-1.334-3-2.99-3a3 3 0 0 0 0 6zm8 0a2.992 2.992 0 0 0 2.99-3c0-1.656-1.334-3-2.99-3a3 3 0 0 0 0 6z"/></svg>
          )
        }
      }