iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 480 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgSearch(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: "M19.25 19.25L15.5 15.5M4.75 11a6.25 6.25 0 1112.5 0 6.25 6.25 0 01-12.5 0z" })));
}
export default SvgSearch;