@nomercyicons/react
Version:
30 lines • 1 kB
JavaScript
const React = require("react");
function ScreenSearchDesktopSharpIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "currentColor",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "none",
d: "M0 0h24v24H0V0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M1 19h22v2H1zM22 3H2v15h19.99L22 3zm-6.53 12.03l-2.09-2.09c-1.35.87-3.17.71-4.36-.47-1.37-1.37-1.37-3.58 0-4.95s3.58-1.37 4.95 0c1.18 1.18 1.34 3 .47 4.36l2.09 2.09-1.06 1.06z"
}), /*#__PURE__*/React.createElement("circle", {
cx: 11.5,
cy: 10,
r: 2
}));
}
const ForwardRef = React.forwardRef(ScreenSearchDesktopSharpIcon);
module.exports = ForwardRef;