@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
32 lines • 1.54 kB
JavaScript
const React = require("react");
function FieldIconPictureCheck({
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: "M8.487 6.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm-.75 2.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M2.987 6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3l.026 7.556a1 1 0 0 1-1 1.003h-.066a.998.998 0 0 1-.726-.312c-.935-.988-3.34-3.53-3.921-4.15L6.484 19.5h5.753a.75.75 0 0 1 0 1.5h-6.25a3 3 0 0 1-3-3V6Zm3-1.5a1.5 1.5 0 0 0-1.5 1.5v12c0 .391.15.748.396 1.015l9.87-10.528a.75.75 0 0 1 1.094 0l3.64 3.883V6a1.5 1.5 0 0 0-1.5-1.5h-12Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M15.263 17a.75.75 0 0 0 0 1.5h1.75v1.75a.75.75 0 0 0 1.5 0V18.5h1.75a.75.75 0 0 0 0-1.5h-1.75v-1.75a.75.75 0 0 0-1.5 0V17h-1.75Z"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconPictureCheck);
module.exports = ForwardRef;