@sidekickicons/react
Version:
<p align="center"> <a href="https://heroicons.com" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/ndri/sidekickicons/HEAD/.github/logo-dark.svg"> <source media="(prefers-
22 lines • 1.18 kB
JavaScript
const React = require("react");
function ChecklistBoxesIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 16 16",
fill: "currentColor",
"aria-hidden": "true",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M5.14.958a.75.75 0 0 0-.492.295L3.594 2.67l-.325-.31a.75.75 0 0 0-1.06.021.75.75 0 0 0 .021 1.06l.938.9a.75.75 0 0 0 1.12-.093l1.563-2.1a.75.75 0 0 0-.154-1.05.75.75 0 0 0-.557-.14ZM2.75 6a.75.75 0 0 0-.75.75v2.5a.75.75 0 0 0 .75.75h2.5A.75.75 0 0 0 6 9.25v-2.5A.75.75 0 0 0 5.25 6Zm.75 1.5h1v1h-1zM7.75 2c-1 0-1 1.5 0 1.5h5.5c1 0 1-1.5 0-1.5zm-5 9a.75.75 0 0 0-.75.75v2.5a.75.75 0 0 0 .75.75h2.5a.75.75 0 0 0 .75-.75v-2.5a.75.75 0 0 0-.75-.75Zm.75 1.5h1v1h-1zm4.25-5.25c-1 0-1 1.5 0 1.5h5.5c1 0 1-1.5 0-1.5zm0 5.25c-1 0-1 1.5 0 1.5h5.5c1 0 1-1.5 0-1.5z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(ChecklistBoxesIcon);
module.exports = ForwardRef;