@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
30 lines • 1.77 kB
JavaScript
const React = require("react");
function FieldIconNumber({
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", {
fillRule: "evenodd",
d: "M4.004 4.61h15.992c.278 0 .504.226.504.504v13.77a.504.504 0 0 1-.504.504H4.004a.504.504 0 0 1-.504-.504V5.114c0-.278.226-.504.504-.504ZM2 5.114c0-1.107.897-2.004 2.004-2.004h15.992c1.107 0 2.004.897 2.004 2.004v13.77a2.004 2.004 0 0 1-2.004 2.004H4.004A2.004 2.004 0 0 1 2 18.884V5.114Zm5.194 2.44a.75.75 0 1 0-1.5 0v8.89a.75.75 0 0 0 1.5 0v-8.89Zm1.473-.75a.75.75 0 0 0 0 1.5H11a.25.25 0 0 1 .25.25V11a.25.25 0 0 1-.25.25H9.667a1.75 1.75 0 0 0-1.75 1.75v2.444c0 .967.783 1.75 1.75 1.75H12a.75.75 0 0 0 0-1.5H9.667a.25.25 0 0 1-.25-.25V13a.25.25 0 0 1 .25-.25H11a1.75 1.75 0 0 0 1.75-1.75V8.554A1.75 1.75 0 0 0 11 6.804H8.667Zm4.805.75a.75.75 0 0 1 .75-.75h2.334c.966 0 1.75.784 1.75 1.75V15.443a1.75 1.75 0 0 1-1.75 1.75h-2.334a.75.75 0 0 1 0-1.5h2.334a.25.25 0 0 0 .25-.25V12.75h-2.584a.75.75 0 1 1 0-1.5h2.584V8.554a.25.25 0 0 0-.25-.25h-2.334a.75.75 0 0 1-.75-.75Z",
clipRule: "evenodd"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconNumber);
module.exports = ForwardRef;