@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
24 lines • 817 B
JavaScript
import * as React from "react";
function FieldIconChinese({
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",
strokeWidth: 1.8,
d: "M12 6.5v11M5 21h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2Zm3-8h8a1 1 0 0 0 1-1V9.5a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1V12a1 1 0 0 0 1 1Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconChinese);
export default ForwardRef;