iconic-icons-rn
Version:
Iconic icons for React Native
9 lines (8 loc) • 662 B
JavaScript
import * as React from "react";
import Svg, { Path, Circle } from "react-native-svg";
function SvgPin(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M18.25 11c0 4-6.25 8.25-6.25 8.25S5.75 15 5.75 11c0-3.5 2.936-6.25 6.25-6.25S18.25 7.5 18.25 11z" }),
React.createElement(Circle, { cx: 12, cy: 11, r: 2.25, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5 })));
}
export default SvgPin;