@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
34 lines • 1.47 kB
JavaScript
const React = require("react");
function FieldIconMatrixSelect({
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: "M7 7.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M8 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M7 18.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M6 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm5.25 1.5v3.75H4.5V6A1.5 1.5 0 0 1 6 4.5h5.25Zm1.5 0H18A1.5 1.5 0 0 1 19.5 6v2.25h-6.75V4.5Zm-1.5 5.25v4.5H4.5v-4.5h6.75ZM4.5 18v-2.25h6.75v3.75H6A1.5 1.5 0 0 1 4.5 18Zm8.25 1.5v-3.75h6.75V18a1.5 1.5 0 0 1-1.5 1.5h-5.25Zm6.75-5.25h-6.75v-4.5h6.75v4.5Z"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconMatrixSelect);
module.exports = ForwardRef;