Files
vercel_dashboard_example/.pnpm-store/v11/files/4d/9fea01ea9bb81a766427f12ad38d4a8ffc6f2f173316cddea19e9107aa34ed4bc7ac0eaa4066fe890f632dab3b366c1afccb667f8f33d79e1e522ce6c758e8
T
2026-05-12 14:53:15 +00:00

30 lines
895 B
Plaintext

const React = require("react");
function ChevronDoubleUpIcon({
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: "m4.5 18.75 7.5-7.5 7.5 7.5"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "m4.5 12.75 7.5-7.5 7.5 7.5"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(ChevronDoubleUpIcon);
module.exports = ForwardRef;