
      import React, { Component } from 'react';

      export default class Signal4gIcon 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-signal4g-icon ${this.props.className}`}><path d="M22 16.5v-6h-4.5v3H19v3h-3v-9h6v-3h-6a3 3 0 0 0-3 3v9c0 1.657 1.343 2.973 3 3h3a3 3 0 0 0 3-3zm-14 3h3v-15H8v6H5v-6H2v9h6v6z"/></svg>
          )
        }
      }