@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
36 lines • 1.62 kB
JavaScript
const React = require("react");
function FieldIconHorizontalFill({
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: "M2 6.75A2.75 2.75 0 0 1 4.75 4h1a.75.75 0 0 1 0 1.5h-1c-.69 0-1.25.56-1.25 1.25v10.5c0 .69.56 1.25 1.25 1.25h1a.75.75 0 0 1 0 1.5h-1A2.75 2.75 0 0 1 2 17.25V6.75Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M22 17.25A2.75 2.75 0 0 1 19.25 20h-1a.75.75 0 0 1 0-1.5h1c.69 0 1.25-.56 1.25-1.25V6.75c0-.69-.56-1.25-1.25-1.25h-1a.75.75 0 0 1 0-1.5h1A2.75 2.75 0 0 1 22 6.75v10.5Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M6 11.25a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 0-1.5H6Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M10.25 12a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M16 11.25a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 0-1.5h-2Z"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconHorizontalFill);
module.exports = ForwardRef;