iconic-icons-rn
Version:
Iconic icons for React Native
10 lines (9 loc) • 780 B
JavaScript
import * as React from "react";
import Svg, { Circle, Path } from "react-native-svg";
function SvgHelp(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: 3.25, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5 }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M7 17l2.5-2.5M17 17l-2.5-2.5M9.5 9.5L7 7M14.5 9.5L17 7" })));
}
export default SvgHelp;