@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 873 B
JavaScript
const React = require("react");
function Repeat01Icon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M17 2l4 4m0 0l-4 4m4-4H7.8c-1.68 0-2.52 0-3.162.327a3 3 0 00-1.311 1.311C3 8.28 3 9.12 3 10.8v.2m0 7h13.2c1.68 0 2.52 0 3.162-.327a3 3 0 001.311-1.311C21 15.72 21 14.88 21 13.2V13M3 18l4 4m-4-4l4-4"
}));
}
const ForwardRef = React.forwardRef(Repeat01Icon);
module.exports = ForwardRef;