Files
vercel_dashboard_example/.pnpm-store/v11/files/2a/95e78966b20cbd3dc1dc55d67ae31d234a56edef2d33da68fffda43a715ddd5cc995bd1275a7b4b0efd3cd29a38d8dc2b42621e979e560537d9a61be8a75cc
T
2026-05-12 14:53:15 +00:00

24 lines
799 B
Plaintext

const React = require("react");
function CheckIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 16 16",
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: "M12.416 3.376a.75.75 0 0 1 .208 1.04l-5 7.5a.75.75 0 0 1-1.154.114l-3-3a.75.75 0 0 1 1.06-1.06l2.353 2.353 4.493-6.74a.75.75 0 0 1 1.04-.207Z",
clipRule: "evenodd"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(CheckIcon);
module.exports = ForwardRef;