UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 692 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgThermometerFill(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-9.192 9.192L9.95 14.05l2.121 2.122 1.414-1.415-2.121-2.121zm2.828-2.828l-1.414 1.414 2.121 2.121 1.415-1.414-2.122-2.121zm2.829-2.829l-1.414 1.414 2.12 2.122L19.143 9.1l-2.121-2.122z" /> </Svg> ); } export default SvgThermometerFill;