@nomercyicons/react
Version:
26 lines • 1.04 kB
JavaScript
import * as React from "react";
function HowToRegRoundedIcon({
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: "M12 20l-.86-.86a2.997 2.997 0 01.02-4.26l.84-.82a9.34 9.34 0 00-1-.06c-2.67 0-8 1.34-8 4v2h9zm-1-8c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4M16.18 19.78c-.39.39-1.03.39-1.42 0l-2.07-2.09a.99.99 0 010-1.39l.01-.01a.984.984 0 011.4 0l1.37 1.37 4.43-4.46a.996.996 0 011.41 0l.01.01a.99.99 0 010 1.39l-5.14 5.18z"
}));
}
const ForwardRef = React.forwardRef(HowToRegRoundedIcon);
export default ForwardRef;