@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 810 B
JavaScript
const React = require("react");
function ArrowUpRightIcon({
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: "M12.92 6.404a.75.75 0 0 1 1.012-.319L18.38 8.4a.75.75 0 0 1-.345 1.415.8.8 0 0 1-.238.127l-11.58 3.689a.75.75 0 0 1-.455-1.43l10.343-3.294-2.865-1.493a.75.75 0 0 1-.32-1.011M5.75 16.889a.75.75 0 0 0 0 1.5h13a.75.75 0 0 0 0-1.5z"
}));
}
const ForwardRef = React.forwardRef(ArrowUpRightIcon);
module.exports = ForwardRef;