@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
25 lines • 806 B
JavaScript
import * as React from "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: "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 22 5.5 7.5 13 6l5 5-1.5 7.5L2 22Zm0 0 7.586-7.586M19 12l-7-7 3-3 7 7-3 3Zm-8-1a2 2 0 1 1 0 4 2 2 0 0 1 0-4Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconSignature);
export default ForwardRef;