@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
32 lines • 1.22 kB
JavaScript
const React = require("react");
function FieldIconNote({
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 9.75a.75.75 0 0 1 .75.75V16a.75.75 0 0 1-1.5 0v-5.5a.75.75 0 0 1 .75-.75Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M12 7.25a.75.75 0 0 0 0 1.5h.01a.75.75 0 0 0 0-1.5H12Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-10 8.5a8.5 8.5 0 1 0 0-17 8.5 8.5 0 0 0 0 17Z"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconNote);
module.exports = ForwardRef;