UNPKG

@jinshuju/field-icons-react

Version:

First, install `@jinshuju/field-icons-react` from npm:

21 lines 1.32 kB
const React = require("react"); function FieldIconNps({ 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("path", { d: "M11.453 2.5a.746.746 0 0 0-.68.441L7.31 10.4H4.965c-.65 0-1.276.255-1.739.713A2.443 2.443 0 0 0 2.5 12.85v6.2c0 .654.263 1.278.726 1.736a2.472 2.472 0 0 0 1.739.714h12.862c.589.005 1.162-.2 1.614-.58.454-.38.755-.914.845-1.5l1.186-7.9a2.435 2.435 0 0 0-.58-1.982 2.463 2.463 0 0 0-1.88-.838h-4.46l.225-2.9c0-.88-.353-1.72-.978-2.338a3.336 3.336 0 0 0-2.346-.962Zm.387 1.707a.186.186 0 0 1 .228-.103c.256.09.49.235.685.427.342.339.532.795.532 1.269l-.226 3.65c0 .414.334.75.747.75h5.218a.99.99 0 0 1 .75.33.944.944 0 0 1 .223.76l-1.186 7.9a.944.944 0 0 1-.327.58.986.986 0 0 1-.645.23H8.537V11.31l3.303-7.104ZM7.045 11.9V20h-2.08a.984.984 0 0 1-.692-.283.939.939 0 0 1-.28-.667v-6.2c0-.248.099-.489.28-.668a.984.984 0 0 1 .692-.282h2.08Z" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconNps); module.exports = ForwardRef;