@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
25 lines • 893 B
JavaScript
const React = require("react");
function Send01Icon({
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",
d: "M21.07 2.93 10.406 13.594M3.271 8.235l16.606-5.76c1.023-.356 2.004.625 1.649 1.648l-5.761 16.606c-.395 1.137-1.992 1.169-2.431.047l-2.637-6.738a1.3 1.3 0 0 0-.735-.735l-6.738-2.637c-1.122-.439-1.09-2.036.047-2.43Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(Send01Icon);
module.exports = ForwardRef;