Files
vercel_dashboard_example/.pnpm-store/v11/files/00/1cc698ad1708b814b1b3a59a5d016104c900dffdd8c092ea01f7df024d0234715e6d58a491e9a826e3eee116ad22ee1729d6684ea6be92c2f0acb1648c98cf
T
2026-05-12 14:53:15 +00:00

26 lines
809 B
Plaintext

import * as React from "react";
function NoSymbolIcon({
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: "M18.364 18.364A9 9 0 0 0 5.636 5.636m12.728 12.728A9 9 0 0 1 5.636 5.636m12.728 12.728L5.636 5.636"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(NoSymbolIcon);
export default ForwardRef;