@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
25 lines • 1.21 kB
JavaScript
const React = require("react");
function FieldIconUrl({
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", null, /*#__PURE__*/React.createElement("path", {
d: "M18.546 5.454a3.253 3.253 0 0 0-4.6 0l-2.83 2.83a.75.75 0 1 1-1.062-1.06l2.83-2.832a4.754 4.754 0 1 1 6.724 6.723l-2.831 2.831a.75.75 0 1 1-1.062-1.061l2.831-2.831a3.253 3.253 0 0 0 0-4.6Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M5.454 18.546a3.253 3.253 0 0 0 4.6 0l2.83-2.83a.75.75 0 1 1 1.062 1.06l-2.83 2.832a4.754 4.754 0 0 1-6.724-6.723l2.831-2.831a.75.75 0 1 1 1.062 1.061l-2.831 2.831a3.253 3.253 0 0 0 0 4.6Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M16.07 8.992a.75.75 0 0 0-1.062-1.061L7.93 15.008a.75.75 0 1 0 1.061 1.061l7.077-7.077Z"
})));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconUrl);
module.exports = ForwardRef;