@nomercyicons/react
Version:
26 lines • 1.07 kB
JavaScript
const React = require("react");
function DoneOutlineRoundedIcon({
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: "M20.47 5.63c.39.39.39 1.01 0 1.4L9.13 18.37a.984.984 0 01-1.4 0l-4.2-4.2a.984.984 0 010-1.4.984.984 0 011.4 0l3.5 3.5L19.07 5.63a.984.984 0 011.4 0zm-2.11-2.12l-9.93 9.93-2.79-2.79c-.78-.78-2.05-.78-2.83 0l-1.4 1.4c-.78.78-.78 2.05 0 2.83l5.6 5.6c.78.78 2.05.78 2.83 0L22.59 7.74c.78-.78.78-2.05 0-2.83l-1.4-1.4c-.79-.78-2.05-.78-2.83 0z"
}));
}
const ForwardRef = React.forwardRef(DoneOutlineRoundedIcon);
module.exports = ForwardRef;