@nomercyicons/react
Version:
28 lines • 1.3 kB
JavaScript
const React = require("react");
function WrongLocationRoundedIcon({
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 0h24v24H0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M20.42 4.5l1.38-1.38a.996.996 0 10-1.41-1.41L19 3.08 17.62 1.7a.996.996 0 10-1.41 1.41l1.38 1.38-1.38 1.38a.996.996 0 101.41 1.41L19 5.92l1.38 1.38a.996.996 0 101.41-1.41L20.42 4.5z"
}), /*#__PURE__*/React.createElement("path", {
d: "M19.67 8L19 7.33l-.59.59c-.7.7-1.84.88-2.65.3a2.005 2.005 0 01-.26-3.05l.67-.67-.67-.67c-.36-.36-.54-.81-.57-1.28C14.01 2.19 13.02 2 12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2c0-.76-.1-1.47-.26-2.14-.02-.02-.05-.04-.07-.06zM12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"
}));
}
const ForwardRef = React.forwardRef(WrongLocationRoundedIcon);
module.exports = ForwardRef;