react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 836 B
JSX
import React, { Component } from 'react';
export default class ThermometerLinesIcon 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-thermometer-lines-icon ${this.props.className}`}><path d="M17 3h4v2h-4V3zm0 4h4v2h-4V7zm0 4h4v2h-3.255L17 12.101V11zm4 4v2h-2c0-.695-.101-1.366-.29-2H21zm-4 2a5 5 0 1 1-8-4V5a3 3 0 1 1 6 0v8c1.214.912 2 2.364 2 4zm-6-9v6.17a3.001 3.001 0 1 0 2 0V8h-2zM7 3v2H3V3h4zm0 4v2H3V7h4zm0 4v1.101L6.255 13H3v-2h4zm-4 4h2.29A7.001 7.001 0 0 0 5 17H3v-2z"/></svg>
)
}
}