24 lines
884 B
JavaScript
24 lines
884 B
JavaScript
|
import * as React from "react";
|
||
|
function ArrowTurnUpRightIcon({
|
||
|
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",
|
||
|
"data-slot": "icon",
|
||
|
ref: svgRef,
|
||
|
"aria-labelledby": titleId
|
||
|
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||
|
id: titleId
|
||
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||
|
fillRule: "evenodd",
|
||
|
d: "M3.74 20.25a.75.75 0 0 0 .75-.75V8.999h13.938l-2.47 2.47a.75.75 0 0 0 1.061 1.06l3.75-3.75a.75.75 0 0 0 0-1.06l-3.75-3.75a.75.75 0 0 0-1.06 1.06l2.47 2.47H3.738a.75.75 0 0 0-.75.75V19.5c0 .414.336.75.75.75Z",
|
||
|
clipRule: "evenodd"
|
||
|
}));
|
||
|
}
|
||
|
const ForwardRef = /*#__PURE__*/ React.forwardRef(ArrowTurnUpRightIcon);
|
||
|
export default ForwardRef;
|