@elevyg/react-native-ionicons
Version:
Ionicons 5 for React Native
8 lines (6 loc) • 580 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgFlagOutline(props) {
return <Svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512" {...props}><Path d="M80 464V68.14a8 8 0 014-6.9C91.81 56.66 112.92 48 160 48c64 0 145 48 192 48a199.53 199.53 0 0077.23-15.77 2 2 0 012.77 1.85v219.36a4 4 0 01-2.39 3.65C421.37 308.7 392.33 320 352 320c-48 0-128-32-192-32s-80 16-80 16" fill="none" stroke={props.fill} strokeLinecap="round" strokeMiterlimit={10} strokeWidth={32} /></Svg>;
}
export default SvgFlagOutline;