UNPKG

@jinshuju/field-icons-react

Version:

First, install `@jinshuju/field-icons-react` from npm:

34 lines 1.62 kB
import * as React from "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: "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: "M12.122 13.25a2.75 2.75 0 1 0-4.244 0A4.75 4.75 0 0 0 5.25 17.5a.75.75 0 0 0 1.5 0 3.25 3.25 0 0 1 6.5 0 .75.75 0 0 0 1.5 0 4.75 4.75 0 0 0-2.628-4.25Zm-2.122-3a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Z" }), /*#__PURE__*/React.createElement("path", { d: "M18 11.25a.75.75 0 0 0 0-1.5h-2a.75.75 0 0 0 0 1.5h2Z" }), /*#__PURE__*/React.createElement("path", { d: "M18.75 13.5a.75.75 0 0 1-.75.75h-2a.75.75 0 0 1 0-1.5h2a.75.75 0 0 1 .75.75Z" }), /*#__PURE__*/React.createElement("path", { d: "M8 2.5a.75.75 0 0 1 .75.75V4.5h6.5V3.25a.75.75 0 0 1 1.5 0V4.5H19a3 3 0 0 1 3 3v11a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3v-11a3 3 0 0 1 3-3h2.25V3.25A.75.75 0 0 1 8 2.5ZM19 6H5a1.5 1.5 0 0 0-1.5 1.5v11A1.5 1.5 0 0 0 5 20h14a1.5 1.5 0 0 0 1.5-1.5v-11A1.5 1.5 0 0 0 19 6Z" })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", { id: "a" }, /*#__PURE__*/React.createElement("rect", { width: 24, height: 24 })))); } const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconGrade); export default ForwardRef;