@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
25 lines • 894 B
JavaScript
const React = require("react");
function FieldIconGrade({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "none",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 1.8,
d: "M16 9.001h2.5M16 13h2.5m-9-.499a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0 0a4.001 4.001 0 0 1 4 4.001m-4-4.001a4.001 4.001 0 0 0-4 4.001M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconGrade);
module.exports = ForwardRef;