@nomercyicons/react
Version:
26 lines • 1.06 kB
JavaScript
const React = require("react");
function AutoFixNormalRoundedIcon({
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.45 6l.49-1.06L22 4.45a.5.5 0 000-.91l-1.06-.49L20.45 2a.5.5 0 00-.91 0l-.49 1.06-1.05.49a.5.5 0 000 .91l1.06.49.49 1.05c.17.39.73.39.9 0zM17.71 9.12l-2.83-2.83a.996.996 0 00-1.41 0L2.29 17.46a.996.996 0 000 1.41l2.83 2.83c.39.39 1.02.39 1.41 0L17.7 10.53c.4-.38.4-1.02.01-1.41zm-3.5 2.09L12.8 9.8l1.38-1.38 1.41 1.41-1.38 1.38z"
}));
}
const ForwardRef = React.forwardRef(AutoFixNormalRoundedIcon);
module.exports = ForwardRef;