@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
32 lines • 1.26 kB
JavaScript
const React = require("react");
function FieldIconTextArea({
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: "M7.75 11a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M7.75 15a.75.75 0 0 1 .75-.75h7a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1-.75-.75Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M21.5 12a9.5 9.5 0 0 1-9.5 9.5H5.5a3 3 0 0 1-3-3V12a9.5 9.5 0 1 1 19 0ZM20 12a8 8 0 1 0-16 0v6.5A1.5 1.5 0 0 0 5.5 20H12a8 8 0 0 0 8-8Z"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconTextArea);
module.exports = ForwardRef;