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

24 lines
782 B
Plaintext

const React = require("react");
function ChevronUpIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
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: "M9.47 6.47a.75.75 0 0 1 1.06 0l4.25 4.25a.75.75 0 1 1-1.06 1.06L10 8.06l-3.72 3.72a.75.75 0 0 1-1.06-1.06l4.25-4.25Z",
clipRule: "evenodd"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(ChevronUpIcon);
module.exports = ForwardRef;