react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 780 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgThermometerLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M20.556 3.444a4 4 0 010 5.657l-8.2 8.2a3.999 3.999 0 01-2.387 1.147l-3.378.374-2.298 2.3a1 1 0 01-1.414-1.415l2.298-2.299.375-3.377c.1-.903.505-1.745 1.147-2.387l8.2-8.2a4 4 0 015.657 0zm-4.242 1.414l-8.2 8.2a1.995 1.995 0 00-.574 1.193l-.276 2.485 2.485-.276c.45-.05.872-.252 1.193-.573l.422-.423L9.95 14.05l1.414-1.414 1.414 1.414 1.414-1.414-1.414-1.414 1.414-1.414 1.415 1.414 1.414-1.415-1.414-1.414L17.02 6.98l1.414 1.414.707-.707a2 2 0 10-2.828-2.828z" />
</Svg>
);
}
export default SvgThermometerLine;