UNPKG

@elevyg/react-native-ionicons

Version:
8 lines (6 loc) 580 B
import * as React from "react"; import Svg, { Circle, Path } from "react-native-svg"; function SvgPinOutline(props) { return <Svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512" {...props}><Circle cx={256} cy={96} r={64} fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} /><Path d="M272 164a9 9 0 00-9-9h-14a9 9 0 00-9 9v293.56a32.09 32.09 0 002.49 12.38l10.07 24a3.92 3.92 0 006.88 0l10.07-24a32.09 32.09 0 002.49-12.38z" /><Circle cx={280} cy={72} r={24} /></Svg>; } export default SvgPinOutline;