UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 1.03 kB
import React, { Component } from 'react'; export default class WeatherSunsetUpIcon 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-sunset-up-icon ${this.props.className}`}><path d="M3 12h4a5 5 0 1 1 10 0h4a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2zm12 0a3 3 0 0 0-6 0h6zM12 2l2.394 3.42A6.987 6.987 0 0 0 12 5c-.84 0-1.647.148-2.394.42L12 2zM3.345 7.009l4.159-.363a6.987 6.987 0 0 0-1.561 1.863c-.42.728-.695 1.5-.833 2.283L3.345 7.01zm17.301-.005l-1.765 3.783a6.987 6.987 0 0 0-.833-2.283 6.987 6.987 0 0 0-1.56-1.863l4.158.363zm-7.933 9.291l3.11 3.111a1 1 0 0 1-1.413 1.415L12 18.41l-2.41 2.41a1 1 0 0 1-1.414-1.415l3.111-3.11a.997.997 0 0 1 .713-.294.997.997 0 0 1 .713.293z"/></svg> ) } }