UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 796 B
import React, { Component } from 'react'; export default class WeatherWindyIcon 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-icon ${this.props.className}`}><path d="M4 10a1 1 0 1 1 0-2h8a2 2 0 1 0-1.414-3.414 1 1 0 0 1-1.414-1.414A4 4 0 1 1 12 10H4zm15 2a1 1 0 1 0-.707-1.707 1 1 0 0 1-1.414-1.414A3 3 0 1 1 19 14H5a1 1 0 1 1 0-2h14zm-1 6H4a1 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> ) } }