@nomercyicons/react
Version:
30 lines • 1.04 kB
JavaScript
const React = require("react");
function CompassCalibrationRoundedIcon({
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("circle", {
cx: 12,
cy: 17,
r: 4
}), /*#__PURE__*/React.createElement("path", {
d: "M12 3C8.49 3 5.28 4.29 2.8 6.41a1.01 1.01 0 00-.06 1.48l3.6 3.6c.36.36.92.39 1.32.08 1.2-.94 2.71-1.5 4.34-1.5 1.64 0 3.14.56 4.34 1.49.4.31.96.28 1.31-.08l3.6-3.6c.42-.42.38-1.1-.07-1.48C18.72 4.28 15.51 3 12 3z"
}));
}
const ForwardRef = React.forwardRef(CompassCalibrationRoundedIcon);
module.exports = ForwardRef;