@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
32 lines • 1.45 kB
JavaScript
const React = require("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: "currentColor",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("g", {
fillRule: "evenodd",
clipPath: "url(#a)",
clipRule: "evenodd"
}, /*#__PURE__*/React.createElement("path", {
d: "M12.75 7a.75.75 0 0 0-1.5 0v1.25H7.258a.75.75 0 0 0-.75.75v4.5c0 .414.336.75.75.75h3.992V17a.75.75 0 0 0 1.5 0v-2.75h4.008a.75.75 0 0 0 .75-.75V9a.75.75 0 0 0-.75-.75H12.75V7Zm3.258 2.75v3H12.75v-3h3.258Zm-4.758 0H8.008v3h3.242v-3Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M5.5 2.75A2.75 2.75 0 0 0 2.75 5.5v13a2.75 2.75 0 0 0 2.75 2.75h13a2.75 2.75 0 0 0 2.75-2.75v-13a2.75 2.75 0 0 0-2.75-2.75h-13ZM4.25 5.5c0-.69.56-1.25 1.25-1.25h13c.69 0 1.25.56 1.25 1.25v13c0 .69-.56 1.25-1.25 1.25h-13c-.69 0-1.25-.56-1.25-1.25v-13Z"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconChinese);
module.exports = ForwardRef;