UNPKG

@elevyg/react-native-ionicons

Version:
8 lines (6 loc) 655 B
import * as React from "react"; import Svg, { Path, Circle } from "react-native-svg"; function SvgSunnyOutline(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" strokeMiterlimit={10} strokeWidth={32} d="M256 48v48M256 416v48M403.08 108.92l-33.94 33.94M142.86 369.14l-33.94 33.94M464 256h-48M96 256H48M403.08 403.08l-33.94-33.94M142.86 142.86l-33.94-33.94" /><Circle cx={256} cy={256} r={80} fill="none" stroke={props.fill} strokeLinecap="round" strokeMiterlimit={10} strokeWidth={32} /></Svg>; } export default SvgSunnyOutline;