@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
23 lines • 992 B
JavaScript
const React = require("react");
function FieldIconCheckbox({
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: "M8.035 11.474a.75.75 0 1 0-1.07 1.052l3 3.05a.75.75 0 0 0 1.065.005l6-6a.75.75 0 0 0-1.06-1.061l-5.466 5.465-2.47-2.51Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M3 6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm3-1.5A1.5 1.5 0 0 0 4.5 6v12A1.5 1.5 0 0 0 6 19.5h12a1.5 1.5 0 0 0 1.5-1.5V6A1.5 1.5 0 0 0 18 4.5H6Z"
})));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconCheckbox);
module.exports = ForwardRef;