@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
21 lines • 835 B
JavaScript
const React = require("react");
function FieldIconCny({
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: "M5.47 2.22a.75.75 0 0 1 1.06 0L12 7.69l5.47-5.47a.75.75 0 1 1 1.06 1.06L13.81 8H18a.75.75 0 0 1 0 1.5h-5.25v3H17a.75.75 0 0 1 0 1.5h-4.25v7.25a.75.75 0 0 1-1.5 0V14H7a.75.75 0 0 1 0-1.5h4.25v-3H6A.75.75 0 0 1 6 8h4.19L5.47 3.28a.75.75 0 0 1 0-1.06Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconCny);
module.exports = ForwardRef;