blowfish/node_modules/@heroicons/react/24/outline/esm/ArrowLongUpIcon.js

27 lines
717 B
JavaScript
Raw Normal View History

2023-01-29 22:30:24 +00:00
import * as React from "react";
function ArrowLongUpIcon({
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: "M8.25 6.75L12 3m0 0l3.75 3.75M12 3v18"
}));
}
const ForwardRef = React.forwardRef(ArrowLongUpIcon);
export default ForwardRef;