@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
33 lines • 1.52 kB
JavaScript
const React = require("react");
function FieldIconAssociation({
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("path", {
d: "M4 4.5h12a.5.5 0 0 1 .5.5v2.25a.75.75 0 0 0 1.5 0V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.25a.75.75 0 0 0 0-1.5H4a.5.5 0 0 1-.5-.5V5a.5.5 0 0 1 .5-.5Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M14 10.75a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M11.25 9.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M14 14.75a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M11.25 13.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M14 18.75a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M11.25 17.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconAssociation);
module.exports = ForwardRef;