iconic-icons-rn
Version:
Iconic icons for React Native
9 lines (8 loc) • 618 B
JavaScript
import * as React from "react";
import Svg, { Circle, Path } from "react-native-svg";
function SvgZoomIn(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Circle, { cx: 11, cy: 11, r: 6.25, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5 }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M15.5 15.5l3.75 3.75M11 8.75v4.5M13.25 11h-4.5" })));
}
export default SvgZoomIn;