@nomercyicons/react
Version:
35 lines • 1.2 kB
JavaScript
const React = require("react");
function AvTimerRoundedIcon({
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("circle", {
cx: 12,
cy: 17,
r: 1
}), /*#__PURE__*/React.createElement("circle", {
cx: 7,
cy: 12,
r: 1
}), /*#__PURE__*/React.createElement("circle", {
cx: 17,
cy: 12,
r: 1
}), /*#__PURE__*/React.createElement("path", {
d: "M12 3c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1s1-.45 1-1v-.92c3.31.48 5.87 3.25 6 6.66.14 3.85-3.03 7.2-6.88 7.26A6.996 6.996 0 015 12c0-1.68.59-3.22 1.58-4.42l4.71 4.72a.996.996 0 101.41-1.41L7.26 5.46c-.38-.38-1-.39-1.4-.02A8.904 8.904 0 003 12c0 5.04 4.14 9.12 9.21 9 4.7-.11 8.63-4.01 8.78-8.71C21.16 7.19 17.07 3 12 3z"
}));
}
const ForwardRef = React.forwardRef(AvTimerRoundedIcon);
module.exports = ForwardRef;