mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-26 05:31:52 +02:00
27 lines
No EOL
793 B
JavaScript
27 lines
No EOL
793 B
JavaScript
const React = require("react");
|
|
|
|
function ArrowTrendingUpIcon({
|
|
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",
|
|
ref: svgRef,
|
|
"aria-labelledby": titleId
|
|
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
id: titleId
|
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
strokeLinecap: "round",
|
|
strokeLinejoin: "round",
|
|
d: "M2.25 18L9 11.25l4.306 4.307a11.95 11.95 0 015.814-5.519l2.74-1.22m0 0l-5.94-2.28m5.94 2.28l-2.28 5.941"
|
|
}));
|
|
}
|
|
|
|
const ForwardRef = React.forwardRef(ArrowTrendingUpIcon);
|
|
module.exports = ForwardRef; |