@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
26 lines • 1.13 kB
JavaScript
const React = require("react");
function FieldIconName({
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", {
fillRule: "evenodd",
clipRule: "evenodd"
}, /*#__PURE__*/React.createElement("path", {
d: "M12 2.25a4.75 4.75 0 1 0 0 9.5 4.75 4.75 0 0 0 0-9.5ZM8.75 7a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M7.75 13.75A4.75 4.75 0 0 0 3 18.5V20c0 .966.784 1.75 1.75 1.75h14.5A1.75 1.75 0 0 0 21 20v-1.5a4.75 4.75 0 0 0-4.75-4.75h-8.5Zm-2.298 2.452a3.25 3.25 0 0 1 2.298-.952h8.5a3.25 3.25 0 0 1 3.25 3.25V20a.25.25 0 0 1-.25.25H4.75A.25.25 0 0 1 4.5 20v-1.5c0-.862.342-1.689.952-2.298Z"
})));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconName);
module.exports = ForwardRef;