UNPKG

@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-

26 lines 829 B
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 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", "data-slot": "icon", fill: "none", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M3.75 16.25h3.5v3.5h-3.5zm0-6h3.5v3.5h-3.5zm0-4.036L5.063 7.5l2.187-3M10 6h10.25M10 12h10.25M10 18h10.25" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(ChecklistBoxesIcon); module.exports = ForwardRef;