@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
34 lines • 1.61 kB
JavaScript
const React = require("react");
function FieldIconNumberFill({
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: "M6.25 19.5a.75.75 0 0 1 0 1.5h-1.5A2.75 2.75 0 0 1 2 18.25V5.75A2.75 2.75 0 0 1 4.75 3h1.5a.75.75 0 0 1 0 1.5h-1.5c-.69 0-1.25.56-1.25 1.25v12.5c0 .69.56 1.25 1.25 1.25h1.5Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M17.75 19.5a.75.75 0 0 0 0 1.5h1.5A2.75 2.75 0 0 0 22 18.25V5.75A2.75 2.75 0 0 0 19.25 3h-1.5a.75.75 0 0 0 0 1.5h1.5c.69 0 1.25.56 1.25 1.25v12.5c0 .69-.56 1.25-1.25 1.25h-1.5Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M12.287 5.307A.75.75 0 0 1 12.75 6v9.25h1.75a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1 0-1.5h1.75V7.81l-1.22 1.22a.75.75 0 1 1-1.06-1.06l2.5-2.5a.75.75 0 0 1 .817-.163Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M8.25 18.25a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.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(FieldIconNumberFill);
module.exports = ForwardRef;