
      import React, { Component } from 'react';

      export default class PeopleIcon 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-people-icon ${this.props.className}`}><path d="M8 5a3 3 0 1 1 0 6 3 3 0 0 1 0-6zm8 0a3 3 0 1 1 0 6 3 3 0 0 1 0-6zm-8 8c3.866 0 7 1.343 7 3v3H1v-3c0-1.657 3.134-3 7-3zm8 0c3.866 0 7 1.343 7 3v3h-6v-3c0-1.117-.66-2.15-1.775-2.982L16 13z"/></svg>
          )
        }
      }