@jfstech/icons-react
Version:
<p align="center"> <a href="https://jfstech.uk" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/JFS-Tech/icons/HEAD/.github/logo-dark.svg"> <source media="(prefers-color
26 lines • 873 B
JavaScript
const React = require("react");
function MoveIcon({
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",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M5.763 15.363 2.4 12m0 0 3.363-3.363M2.4 12h19.2m-3.363 3.363L21.6 12m0 0-3.363-3.363m-9.6-2.874L12 2.4m0 0 3.363 3.363M12 2.4v19.2m-3.363-3.363L12 21.6m0 0 3.363-3.363"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(MoveIcon);
module.exports = ForwardRef;