UNPKG

@elevyg/react-native-ionicons

Version:
8 lines (6 loc) 943 B
import * as React from "react"; import Svg, { Path, Circle } from "react-native-svg"; function SvgAnalyticsOutline(props) { return <Svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512" {...props}><Path fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} d="M344 280l88-88M232 216l64 64M80 320l104-104" /><Circle cx={456} cy={168} r={24} fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} /><Circle cx={320} cy={304} r={24} fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} /><Circle cx={208} cy={192} r={24} fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} /><Circle cx={56} cy={344} r={24} fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} /></Svg>; } export default SvgAnalyticsOutline;