UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 632 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgRadarFill(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.368 4.398l-3.484 6.035 1.732 1L16.1 5.398c4.17 2.772 6.306 7.08 4.56 10.102-1.86 3.222-7.189 3.355-11.91.63C4.029 13.402 1.48 8.721 3.34 5.5c1.745-3.023 6.543-3.327 11.028-1.102zm1.516-2.625l1.732 1-1.5 2.598-1.732-1 1.5-2.598zM6.732 20H17v2H5.017a.995.995 0 01-.883-.5 1.005 1.005 0 010-1l2.25-3.897 1.732 1L6.732 20z" /> </Svg> ); } export default SvgRadarFill;