@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.26 kB
JavaScript
const React = require("react");
function Dots3X3Icon({
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: "M14 12.5c0-.82-.68-1.5-1.5-1.5s-1.5.68-1.5 1.5.68 1.5 1.5 1.5 1.5-.68 1.5-1.5zm-4.5 0c0-.82-.68-1.5-1.5-1.5s-1.5.68-1.5 1.5S7.18 14 8 14s1.5-.68 1.5-1.5Zm-4.5 0c0-.82-.68-1.5-1.5-1.5S2 11.68 2 12.5 2.68 14 3.5 14 5 13.32 5 12.5Zm9-9c0-.82-.68-1.5-1.5-1.5S11 2.68 11 3.5 11.68 5 12.5 5 14 4.32 14 3.5ZM14 8c0-.82-.68-1.5-1.5-1.5S11 7.18 11 8s.68 1.5 1.5 1.5S14 8.82 14 8ZM9.5 3.5C9.5 2.68 8.82 2 8 2s-1.5.68-1.5 1.5S7.18 5 8 5s1.5-.68 1.5-1.5Zm0 4.5c0-.82-.68-1.5-1.5-1.5S6.5 7.18 6.5 8 7.18 9.5 8 9.5 9.5 8.82 9.5 8ZM5 3.5C5 2.68 4.32 2 3.5 2S2 2.68 2 3.5 2.68 5 3.5 5 5 4.32 5 3.5ZM5 8c0-.82-.68-1.5-1.5-1.5S2 7.18 2 8s.68 1.5 1.5 1.5S5 8.82 5 8Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(Dots3X3Icon);
module.exports = ForwardRef;