react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 569 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgInfraredThermometerLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M21 2v9h-3.001L18 12c0 2.21-1.79 4-4 4h-1.379l-.613 3.111.911 1.321A1 1 0 0112.096 22H3l2.313-10.024L3 11l4-9h14zm-2 2H8.3L5.655 9.95l1.985.837L5.514 20h4.678l-.309-.448L11.96 9H19V4zm-3.001 7h-2.394l-.591 3H14a2 2 0 002-2l-.001-1z" />
</Svg>
);
}
export default SvgInfraredThermometerLine;