1 | const React = require("react");
|
2 | function ArrowUpOnSquareStackIcon({
|
3 | title,
|
4 | titleId,
|
5 | ...props
|
6 | }, svgRef) {
|
7 | return React.createElement("svg", Object.assign({
|
8 | xmlns: "http://www.w3.org/2000/svg",
|
9 | fill: "none",
|
10 | viewBox: "0 0 24 24",
|
11 | strokeWidth: 1.5,
|
12 | stroke: "currentColor",
|
13 | "aria-hidden": "true",
|
14 | ref: svgRef,
|
15 | "aria-labelledby": titleId
|
16 | }, props), title ? React.createElement("title", {
|
17 | id: titleId
|
18 | }, title) : null, React.createElement("path", {
|
19 | strokeLinecap: "round",
|
20 | strokeLinejoin: "round",
|
21 | d: "M7.5 7.5h-.75A2.25 2.25 0 004.5 9.75v7.5a2.25 2.25 0 002.25 2.25h7.5a2.25 2.25 0 002.25-2.25v-7.5a2.25 2.25 0 00-2.25-2.25h-.75m0-3l-3-3m0 0l-3 3m3-3v11.25m6-2.25h.75a2.25 2.25 0 012.25 2.25v7.5a2.25 2.25 0 01-2.25 2.25h-7.5a2.25 2.25 0 01-2.25-2.25v-.75"
|
22 | }));
|
23 | }
|
24 | const ForwardRef = React.forwardRef(ArrowUpOnSquareStackIcon);
|
25 | module.exports = ForwardRef; |
\ | No newline at end of file |