@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
31 lines • 1.02 kB
JavaScript
const React = require("react");
function FieldIconPosition({
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",
strokeLinejoin: "round",
strokeWidth: 2.5,
d: "M12 12h.01"
}), /*#__PURE__*/React.createElement("path", {
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 1.8,
d: "M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2m14 6.998a18.15 18.15 0 0 1-20 0m2-6.999h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-10a2 2 0 0 1 2-2Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconPosition);
module.exports = ForwardRef;