@nomercyicons/react
Version:
26 lines • 1.14 kB
JavaScript
const React = require("react");
function ShuffleOnRoundedIcon({
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: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM4.3 4.7a.996.996 0 011.41 0l4.47 4.47-1.42 1.4L4.3 6.11a.996.996 0 010-1.41zm15.29 14.8c0 .28-.22.5-.5.5H15.3a.5.5 0 01-.36-.85l1.2-1.2-3.13-3.13 1.41-1.41 3.13 3.14 1.19-1.19c.31-.32.85-.1.85.35v3.79zm0-11.21a.5.5 0 01-.85.36l-1.19-1.19L5.7 19.29a.996.996 0 11-1.41-1.41L16.13 6.04l-1.19-1.19A.5.5 0 0115.3 4h3.79c.28 0 .5.22.5.5v3.79z"
}));
}
const ForwardRef = React.forwardRef(ShuffleOnRoundedIcon);
module.exports = ForwardRef;