@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
34 lines • 1.54 kB
JavaScript
const React = require("react");
function FieldIconCascader({
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: "M14.39 6.487A.3.3 0 0 1 14.624 6h2.752a.3.3 0 0 1 .234.487l-1.376 1.72a.3.3 0 0 1-.468 0l-1.376-1.72Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm2-.5a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 .5.5h14a.5.5 0 0 0 .5-.5V5a.5.5 0 0 0-.5-.5H5Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M14.624 16a.3.3 0 0 0-.234.487l1.376 1.72a.3.3 0 0 0 .468 0l1.376-1.72a.3.3 0 0 0-.234-.487h-2.752Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M3 15a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4Zm2-.5a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 .5.5h14a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5H5Z"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconCascader);
module.exports = ForwardRef;