UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 589 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgServiceFill(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M14.121 10.48a1 1 0 00-1.414 0l-.707.706a2 2 0 11-2.828-2.828l5.63-5.632a6.5 6.5 0 016.377 10.568l-2.108 2.135-4.95-4.95zM3.161 4.468a6.503 6.503 0 018.009-.938L7.757 6.944a4 4 0 005.513 5.794l.144-.137 4.243 4.242-4.243 4.243a2 2 0 01-2.828 0L3.16 13.66a6.5 6.5 0 010-9.192z" /> </Svg> ); } export default SvgServiceFill;