Files
vercel_dashboard_example/.pnpm-store/v11/files/8e/da5d8db7b92f758a1975ccb5c123a6fa87bb3dc16d1873cd5877cc6a9b877e2f300ba739bd230bf5a1be59f6f40adf769e619898424c020a2ee8c0f8753353
T
2026-05-12 14:53:15 +00:00

26 lines
874 B
Plaintext

const React = require("react");
function LinkIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "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", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M13.19 8.688a4.5 4.5 0 0 1 1.242 7.244l-4.5 4.5a4.5 4.5 0 0 1-6.364-6.364l1.757-1.757m13.35-.622 1.757-1.757a4.5 4.5 0 0 0-6.364-6.364l-4.5 4.5a4.5 4.5 0 0 0 1.242 7.244"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(LinkIcon);
module.exports = ForwardRef;