@nomercyicons/react
Version:
26 lines • 1.09 kB
JavaScript
const React = require("react");
function ReplayCircleFilledRoundedIcon({
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: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 10.74c-.12 3.09-2.67 5.64-5.76 5.76a5.995 5.995 0 01-6.12-4.82c-.13-.61.36-1.18.98-1.18.47 0 .88.33.98.8a3.997 3.997 0 004.72 3.12c1.56-.3 2.82-1.56 3.12-3.12A4 4 0 0012 8.5v1.79c0 .45-.54.67-.85.35l-2.8-2.79c-.2-.2-.2-.51 0-.71l2.79-2.79c.32-.31.86-.09.86.36V6.5a6.01 6.01 0 016 6.24z"
}));
}
const ForwardRef = React.forwardRef(ReplayCircleFilledRoundedIcon);
module.exports = ForwardRef;