
      import React, { Component } from 'react';

      export default class WeatherWindyVariantIcon 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-windy-variant-icon ${this.props.className}`}><path d="M6 6l.69.06A5.5 5.5 0 0 1 17.5 7.5l-.082.95A3 3 0 1 1 19 14H6a4 4 0 0 1 0-8zm0 2a2 2 0 0 0 0 4h13a1 1 0 1 0 0-2h-3.5V7.5a3.5 3.5 0 0 0-7 0V8H6zm12 10H4a1 1 0 1 1 0-2h14a3 3 0 1 1-2.121 5.121 1 1 0 1 1 1.414-1.414A1 1 0 1 0 18 18z"/></svg>
          )
        }
      }