@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
28 lines • 1.18 kB
JavaScript
const React = require("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: "currentColor",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("g", {
clipPath: "url(#a)"
}, /*#__PURE__*/React.createElement("path", {
d: "M3 6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm3-1.5A1.5 1.5 0 0 0 4.5 6v2.25h3.75V4.5H6Zm3.75 3.75h9.75V6A1.5 1.5 0 0 0 18 4.5H9.75v3.75ZM4.5 9.75v4.5h3.75v-4.5H4.5Zm0 6V18A1.5 1.5 0 0 0 6 19.5h2.25v-3.75H4.5Zm5.25 0v3.75H18a1.5 1.5 0 0 0 1.5-1.5v-2.25H9.75Zm9.75-1.5v-4.5H9.75v4.5h9.75Z"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconMatrixInput);
module.exports = ForwardRef;