@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
28 lines • 1.17 kB
JavaScript
const React = require("react");
function FieldIconTable({
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.25h6.75V4.5H6Zm6.75 3.75h6.75V6A1.5 1.5 0 0 0 18 4.5h-5.25v3.75ZM4.5 9.75v4.5h6.75v-4.5H4.5Zm0 6V18A1.5 1.5 0 0 0 6 19.5h5.25v-3.75H4.5Zm8.25 0v3.75H18a1.5 1.5 0 0 0 1.5-1.5v-2.25h-6.75Zm6.75-1.5v-4.5h-6.75v4.5h6.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(FieldIconTable);
module.exports = ForwardRef;