@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
34 lines • 2.15 kB
JavaScript
const React = require("react");
function FieldIconFormula({
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: "M8.415 2.5c-2.122 0-3.842 1.677-3.842 3.745v2.642H2.268a.759.759 0 0 0-.768.749c0 .414.344.75.768.75h2.305v10.34c0 .414.344.75.768.75a.759.759 0 0 0 .769-.75v-10.34h2.305a.759.759 0 0 0 .768-.75.759.759 0 0 0-.768-.749H6.11V6.245c0-1.24 1.032-2.247 2.305-2.247h1.024a.759.759 0 0 0 .768-.749.759.759 0 0 0-.768-.749H8.415Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M14.991 14.035a.781.781 0 0 0-1.076-.15.737.737 0 0 0-.153 1.049l1.183 1.538-1.218 1.511a.736.736 0 0 0 .13 1.052.782.782 0 0 0 1.08-.127l.962-1.196.936 1.217a.781.781 0 0 0 1.076.15.737.737 0 0 0 .153-1.05l-1.183-1.537L18.1 14.98a.736.736 0 0 0-.13-1.051.782.782 0 0 0-1.079.126l-.963 1.197-.936-1.217Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M12.082 11.014a.736.736 0 0 1-.107 1.054c-1.047.836-1.768 2.26-1.768 3.915 0 1.654.721 3.352 1.768 4.189a.736.736 0 0 1 .107 1.054.782.782 0 0 1-1.081.104c-1.43-1.142-2.33-3.28-2.33-5.347 0-2.068.9-3.931 2.33-5.074a.782.782 0 0 1 1.081.105Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M19.196 21.226a.736.736 0 0 1 .107-1.054c1.047-.837 1.66-2.535 1.66-4.19 0-1.654-.72-3.078-1.767-3.914a.736.736 0 0 1-.107-1.054.782.782 0 0 1 1.08-.105c1.431 1.143 2.331 3.006 2.331 5.073 0 2.068-.793 4.206-2.223 5.348a.782.782 0 0 1-1.081-.104Z"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconFormula);
module.exports = ForwardRef;