react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 473 B
JavaScript
import React from 'react';
export default function ThermometerPlusIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-thermometer-plus ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M19 11V8h-2v3h-3v2h3v3h2v-3h3v-2m-11 2V5c0-1.66-1.34-3-3-3S5 3.34 5 5v8c-2.21 1.66-2.66 4.79-1 7s4.79 2.66 7 1 2.66-4.79 1-7a4.74 4.74 0 0 0-1-1M8 4c.55 0 1 .45 1 1v3H7V5c0-.55.45-1 1-1z" />
</svg>
);
}