UNPKG

@jinshuju/field-icons-react

Version:

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

30 lines 1.63 kB
const React = require("react"); function FieldIconSignature({ 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: "M14.429 2.506c-.654-.654-1.852-.745-2.49.15a6.745 6.745 0 0 0 9.405 9.406c.895-.64.804-1.837.15-2.491l-7.065-7.065Zm-1.06 1.06 7.065 7.064a.216.216 0 0 1 .068.153c0 .019-.005.03-.008.037a.06.06 0 0 1-.02.022 5.246 5.246 0 0 1-7.316-7.315.06.06 0 0 1 .022-.021.087.087 0 0 1 .037-.008c.041-.001.101.016.152.068Z" }), /*#__PURE__*/React.createElement("path", { d: "M9.25 8.67a.75.75 0 0 0-.59-1.378L4.77 8.96a2.747 2.747 0 0 0-1.644 2.184l-1.111 8.89a1.748 1.748 0 0 0 1.951 1.952l8.89-1.111a2.747 2.747 0 0 0 2.185-1.644l1.668-3.891a.75.75 0 0 0-1.378-.59l-1.667 3.89a1.249 1.249 0 0 1-.993.748l-7.998 1 4.374-4.374a2.249 2.249 0 1 0-1.06-1.06l-4.374 4.374 1-7.998c.055-.44.34-.818.747-.993L9.25 8.67Zm1.295 4.785a.75.75 0 1 1-1.06 1.06.75.75 0 0 1 1.06-1.06Z" })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", { id: "a" }, /*#__PURE__*/React.createElement("rect", { width: 24, height: 24 })))); } const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconSignature); module.exports = ForwardRef;