@nomercyicons/react
Version:
33 lines • 1.45 kB
JavaScript
import * as React from "react";
function UnfoldLessDoubleRoundedIcon({
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("g", {
fill: "none"
}, /*#__PURE__*/React.createElement("path", {
d: "M0 0h24v24H0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M0 0h24v24H0z"
})), /*#__PURE__*/React.createElement("path", {
d: "M14.46 5.7l-2.47 2.46L9.53 5.7a.996.996 0 10-1.41 1.41l3.17 3.18c.39.39 1.02.39 1.41 0l3.17-3.18a.996.996 0 10-1.41-1.41z"
}), /*#__PURE__*/React.createElement("path", {
d: "M14.46.7l-2.47 2.46L9.53.7a.996.996 0 10-1.41 1.41l3.17 3.18c.39.39 1.02.39 1.41 0l3.17-3.18A.996.996 0 1014.46.7zM9.54 23.3l2.47-2.46 2.46 2.46a.996.996 0 101.41-1.41l-3.17-3.18a.996.996 0 00-1.41 0l-3.17 3.18a.996.996 0 101.41 1.41z"
}), /*#__PURE__*/React.createElement("path", {
d: "M9.54 18.29l2.47-2.45 2.46 2.46a.996.996 0 101.41-1.41l-3.17-3.18a.996.996 0 00-1.41 0l-3.17 3.17a.996.996 0 101.41 1.41z"
}));
}
const ForwardRef = React.forwardRef(UnfoldLessDoubleRoundedIcon);
export default ForwardRef;