
      import React, { Component } from 'react';

      export default class WorkerIcon 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-worker-icon ${this.props.className}`}><path d="M12 15c-4.42 0-8 1.79-8 4v2h16v-2c0-2.21-3.58-4-8-4zM8 9a4 4 0 0 0 8 0m-4.5-7c-.305 0-.5.21-.5.5v3h-1V3s-2.25.859-2.25 3.75c0 0-.75.142-.75 1.25h10c-.05-1.108-.75-1.25-.75-1.25C16.25 3.859 14 3 14 3v2.5h-1v-3c0-.29-.195-.5-.5-.5h-1z"/></svg>
          )
        }
      }