@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
25 lines • 810 B
JavaScript
import * as React from "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: "none",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 1.8,
d: "M2.5 11h5M5 20.5v-14a3 3 0 0 1 3-3h2M11.5 20s-2-1.5-2-4.5 2-4.5 2-4.5m8 0s2 1.5 2 4.5-2 4.5-2 4.5m-2-6.501-4 4m0-4 4 4"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconFormula);
export default ForwardRef;