UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 849 B
import React, { Component } from 'react'; export default class WhiteBalanceIrradescentIcon 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-white-balance-irradescent-icon ${this.props.className}`}><path d="M4.962 19.95l1.795-1.795-1.414-1.414-1.795 1.794m0-14.074l1.795 1.795 1.414-1.414-1.795-1.795m15.489 15.488l-1.795-1.794-1.414 1.414 1.795 1.795m-6.038 2.498v-2.95h-2v2.95c.316.002 2 0 2 0zm6.038-19.401l-1.795 1.795 1.414 1.414 1.795-1.795m-9.452-.963h2V.548h-2m-6 13.95h14v-6h-14v6z"/></svg> ) } }