
      import React, { Component } from 'react';

      export default class MonitorMultipleIcon 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-monitor-multiple-icon ${this.props.className}`}><path d="M22 17V7H6v10h16zm0-12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-6v2h2v2h-8v-2h2v-2H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h16zM2 3.002v12H0v-12a2 2 0 0 1 2-2h18v2H2z"/></svg>
          )
        }
      }