UNPKG

1.16 kBJavaScriptView Raw
1const React = require("react");
2function ArrowTopRightOnSquareIcon({
3 title,
4 titleId,
5 ...props
6}, svgRef) {
7 return /*#__PURE__*/React.createElement("svg", Object.assign({
8 xmlns: "http://www.w3.org/2000/svg",
9 viewBox: "0 0 20 20",
10 fill: "currentColor",
11 "aria-hidden": "true",
12 "data-slot": "icon",
13 ref: svgRef,
14 "aria-labelledby": titleId
15 }, props), title ? /*#__PURE__*/React.createElement("title", {
16 id: titleId
17 }, title) : null, /*#__PURE__*/React.createElement("path", {
18 fillRule: "evenodd",
19 d: "M4.25 5.5a.75.75 0 0 0-.75.75v8.5c0 .414.336.75.75.75h8.5a.75.75 0 0 0 .75-.75v-4a.75.75 0 0 1 1.5 0v4A2.25 2.25 0 0 1 12.75 17h-8.5A2.25 2.25 0 0 1 2 14.75v-8.5A2.25 2.25 0 0 1 4.25 4h5a.75.75 0 0 1 0 1.5h-5Z",
20 clipRule: "evenodd"
21 }), /*#__PURE__*/React.createElement("path", {
22 fillRule: "evenodd",
23 d: "M6.194 12.753a.75.75 0 0 0 1.06.053L16.5 4.44v2.81a.75.75 0 0 0 1.5 0v-4.5a.75.75 0 0 0-.75-.75h-4.5a.75.75 0 0 0 0 1.5h2.553l-9.056 8.194a.75.75 0 0 0-.053 1.06Z",
24 clipRule: "evenodd"
25 }));
26}
27const ForwardRef = React.forwardRef(ArrowTopRightOnSquareIcon);
28module.exports = ForwardRef;
\No newline at end of file