iconic-icons-rn
Version:
Iconic icons for React Native
10 lines (9 loc) • 744 B
JavaScript
import * as React from "react";
import Svg, { Circle } from "react-native-svg";
function SvgTarget(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Circle, { cx: 12, cy: 12, r: 7.25, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5 }),
React.createElement(Circle, { cx: 12, cy: 12, r: 4.25, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5 }),
React.createElement(Circle, { cx: 12, cy: 12, r: 1.25, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5 })));
}
export default SvgTarget;