
      import React, { Component } from 'react';

      export default class WeatherLightningRainyIcon 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-weather-lightning-rainy-icon ${this.props.className}`}><path d="M4.5 13.595a1 1 0 0 1-.998 1.732l-.002.004A5 5 0 0 1 5.999 6a6.502 6.502 0 0 1 12.484 2.032L19 8a4 4 0 0 1 0 8 1 1 0 1 1 0-2 2 2 0 1 0 0-4h-2V9a5 5 0 0 0-9.935-.806 3 3 0 0 0-2.566 5.404l.002-.003zM9.5 11h3l-2 4h2l-3.75 7 .75-5H7l2.5-6zm8 7.672c0 1.285-1.007 2.328-2.25 2.328S13 19.957 13 18.672c0-1.553 2.25-4.172 2.25-4.172s2.25 2.62 2.25 4.172z"/></svg>
          )
        }
      }