@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 671 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function SearchIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "search",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M15.0355 15.0355L20 20M16.5 11.5C16.5 14.2614 14.2614 16.5 11.5 16.5C8.73858 16.5 6.5 14.2614 6.5 11.5C6.5 8.73858 8.73858 6.5 11.5 6.5C14.2614 6.5 16.5 8.73858 16.5 11.5Z",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { SearchIcon, SearchIcon as default };
//# sourceMappingURL=Search.js.map