UNPKG

@theguild/components

Version:
9 lines (8 loc) 645 B
import { jsx, jsxs } from "react/jsx-runtime"; const SvgSearch = (props) => /* @__PURE__ */ jsxs("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", ...props, children: [ /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ jsx("path", { d: "M21 21L16.65 16.65", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }) ] }); export { SvgSearch as ReactComponent };