UNPKG

@jinshuju/field-icons-react

Version:

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

28 lines 1.22 kB
const React = require("react"); function FieldIconSigma({ 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: "M6.604 3C5.1 3 4.297 4.77 5.287 5.902l4.972 5.933a.25.25 0 0 1 0 .33l-4.972 5.933C4.297 19.229 5.1 21 6.604 21H17.4a1.75 1.75 0 0 0 1.75-1.75v-2a.75.75 0 0 0-1.5 0v2a.25.25 0 0 1-.25.25H6.604a.25.25 0 0 1-.189-.415l4.973-5.933a1.75 1.75 0 0 0 0-2.304L6.415 4.915a.25.25 0 0 1 .189-.415H17.4a.25.25 0 0 1 .25.25v2a.75.75 0 1 0 1.5 0v-2A1.75 1.75 0 0 0 17.4 3H6.604Z" })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", { id: "a" }, /*#__PURE__*/React.createElement("rect", { width: 24, height: 24 })))); } const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconSigma); module.exports = ForwardRef;