Files
vercel_dashboard_example/.pnpm-store/v11/files/83/6a2be08d004a6448fdecaa13b4825c958bb34bac3889c4fdc232df3b184e912c4b14c5a24a65cea135df21577dbbd8e0fc7f20451e411c7a62d9a4380dd99f
T
2026-05-12 14:53:15 +00:00

22 lines
911 B
Plaintext

const React = require("react");
function PaintBrushIcon({
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", {
d: "M15.993 1.385a1.87 1.87 0 0 1 2.623 2.622l-4.03 5.27a12.749 12.749 0 0 1-4.237 3.562 4.508 4.508 0 0 0-3.188-3.188 12.75 12.75 0 0 1 3.562-4.236l5.27-4.03ZM6 11a3 3 0 0 0-3 3 .5.5 0 0 1-.72.45.75.75 0 0 0-1.035.931A4.001 4.001 0 0 0 9 14.004V14a3.01 3.01 0 0 0-1.66-2.685A2.99 2.99 0 0 0 6 11Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(PaintBrushIcon);
module.exports = ForwardRef;