react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 804 B
JSX
import React, { Component } from 'react';
export default class WhiteBalanceAutoIcon 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-auto-icon ${this.props.className}`}><path d="M10.3 15.998l-.7-2H6.4l-.7 2H3.8l3.2-9h2l3.2 9m9.8-9l-1.204 6.292L19.3 6.998h-1.6l-1.49 6.292L15 6.998h-.761a7.98 7.98 0 0 0-6.24-3 8 8 0 0 0-8 8 7.995 7.995 0 1 0 15.153 3.568l.098.432H17l1.5-6.1 1.5 6.1h1.75l2.05-9m-16.95 5.65h2.3L8 8.998l-1.15 3.65z"/></svg>
)
}
}