@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
28 lines • 1.1 kB
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("g", {
clipPath: "url(#a)"
}, /*#__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"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconCny);
module.exports = ForwardRef;