@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
24 lines • 785 B
JavaScript
import * as React from "react";
function FieldIconMatrixInput({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "none",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
stroke: "currentColor",
strokeLinejoin: "round",
strokeWidth: 1.8,
d: "M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18M3 9v10a2 2 0 0 0 2 2h4M3 9h18m0 0v10a2 2 0 0 1-2 2H9m-6-6h18"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconMatrixInput);
export default ForwardRef;