@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
25 lines • 957 B
JavaScript
import * as React from "react";
function FieldIconMatrixScore({
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: "M16.38 8.132a2.1 2.1 0 0 1-1.595-1.16l-2.31-4.68a.53.53 0 0 0-.95.001l-2.309 4.68a2.1 2.1 0 0 1-1.597 1.16l-5.165.754a.53.53 0 0 0-.294.906l3.736 3.637a2.1 2.1 0 0 1 .611 1.88l-.88 5.138a.53.53 0 0 0 .77.56l4.616-2.428.027-.014m3.96.435 2 2 4-4m-6-4 2 2 4-4"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconMatrixScore);
export default ForwardRef;