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

25 lines
858 B
Plaintext

const React = require("react");
/** @deprecated */
function ArrowSmallDownIcon({
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: "M10 5a.75.75 0 0 1 .75.75v6.638l1.96-2.158a.75.75 0 1 1 1.08 1.04l-3.25 3.5a.75.75 0 0 1-1.08 0l-3.25-3.5a.75.75 0 1 1 1.08-1.04l1.96 2.158V5.75A.75.75 0 0 1 10 5Z",
clipRule: "evenodd"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(ArrowSmallDownIcon);
module.exports = ForwardRef;