@nomercyicons/react
Version:
32 lines • 1.22 kB
JavaScript
import * as React from "react";
function NearbyErrorRoundedIcon({
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: "M11.29 8.28l-3.01 3.01a.996.996 0 000 1.41l3.01 3.01c.39.39 1.02.39 1.41 0l3.01-3.01a.996.996 0 000-1.41L12.7 8.28a.996.996 0 00-1.41 0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M10.59 2.59l-8.01 8c-.78.78-.78 2.05 0 2.83l8.01 8c.78.78 2.05.78 2.83 0l4.58-4.6V13.2l-6 6L4.79 12 12 4.79l6 6V7.17l-4.58-4.58c-.78-.79-2.05-.79-2.83 0zM20 11v6c0 .55.45 1 1 1s1-.45 1-1v-6c0-.55-.45-1-1-1s-1 .45-1 1z"
}), /*#__PURE__*/React.createElement("circle", {
cx: 21,
cy: 21,
r: 1
}));
}
const ForwardRef = React.forwardRef(NearbyErrorRoundedIcon);
export default ForwardRef;