UNPKG

@elevyg/react-native-ionicons

Version:
8 lines (6 loc) 724 B
import * as React from "react"; import Svg, { Rect, Circle, Path } from "react-native-svg"; function SvgImageOutline(props) { return <Svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512" {...props}><Rect x={48} y={80} width={416} height={352} rx={48} ry={48} fill="none" stroke={props.fill} strokeLinejoin="round" strokeWidth={32} /><Circle cx={336} cy={176} r={32} fill="none" stroke={props.fill} strokeMiterlimit={10} strokeWidth={32} /><Path d="M304 335.79l-90.66-90.49a32 32 0 00-43.87-1.3L48 352M224 432l123.34-123.34a32 32 0 0143.11-2L464 368" fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} /></Svg>; } export default SvgImageOutline;