UNPKG

react-native-modern-elements

Version:

A modern, customizable UI component library for React Native

9 lines (8 loc) 656 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; import { verticalScale } from "../../utils/styling"; const SearchIconSvg = (props) => (React.createElement(Svg, Object.assign({ width: verticalScale(24), height: verticalScale(24), viewBox: "0 0 24 24", fill: "none", stroke: "#4C4C4C", strokeWidth: 1, strokeLinecap: "round", strokeLinejoin: "round" }, props), React.createElement(Path, { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), React.createElement(Path, { d: "M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0" }), React.createElement(Path, { d: "M21 21l-6 -6" }))); export default React.memo(SearchIconSvg);