blowfish/node_modules/@heroicons/react/24/solid/esm/ArrowUpLeftIcon.js

25 lines
760 B
JavaScript
Raw Normal View History

2023-01-29 22:30:24 +00:00
import * as React from "react";
function ArrowUpLeftIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M5.25 6.31v9.44a.75.75 0 01-1.5 0V4.5a.75.75 0 01.75-.75h11.25a.75.75 0 010 1.5H6.31l13.72 13.72a.75.75 0 11-1.06 1.06L5.25 6.31z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(ArrowUpLeftIcon);
export default ForwardRef;