@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
25 lines • 1.13 kB
JavaScript
const React = require("react");
function FieldIconRegisteryFee({
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", null, /*#__PURE__*/React.createElement("path", {
d: "M8.55 6.4a.75.75 0 0 1 1.05.15l2.4 3.2 2.4-3.2a.75.75 0 1 1 1.2.9l-2.1 2.8h2a.75.75 0 0 1 0 1.5h-2.75v1h1.75a.75.75 0 0 1 0 1.5h-1.75V17a.75.75 0 0 1-1.5 0v-2.75H9.5a.75.75 0 0 1 0-1.5h1.75v-1H8.5a.75.75 0 0 1 0-1.5h2l-2.1-2.8a.75.75 0 0 1 .15-1.05Z"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-1.5 0a8.5 8.5 0 1 1-17 0 8.5 8.5 0 0 1 17 0Z",
clipRule: "evenodd"
})));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconRegisteryFee);
module.exports = ForwardRef;