@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 801 B
JavaScript
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", {
d: "M11.212 7.005a.75.75 0 0 0-1.011-.318L5.97 8.889a.75.75 0 0 0 .328 1.416.8.8 0 0 0 .232.121l11.014 3.509a.75.75 0 0 0 .455-1.43L8.243 9.397l2.65-1.38a.75.75 0 0 0 .32-1.012M18 17.25a.75.75 0 0 1 0 1.5H6a.75.75 0 0 1 0-1.5z"
}));
}
const ForwardRef = React.forwardRef(ArrowUpLeftIcon);
export default ForwardRef;