@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.81 kB
JavaScript
const React = require("react");
function CookieIcon({
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: "M13.75 4a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75Zm-1-3a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75ZM11 3a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75A.75.75 0 0 0 11 3ZM8 1C4.143 1 1 4.143 1 8s3.143 7 7 7 7-3.143 7-7a.75.75 0 0 0 0-.002.75.75 0 0 0 0-.002.75.75 0 0 0 0-.002.75.75 0 0 0 0-.002.75.75 0 0 0 0-.002.75.75 0 0 0 0-.002.75.75 0 0 0 0-.002.75.75 0 0 0 0-.002.75.75 0 0 0 0-.002 7.019 7.019 0 0 0-.041-.609.75.75 0 0 0-1.318-.402c-.285.335-.7.529-1.141.529A1.489 1.489 0 0 1 11 6.002V6c.001-.06.005-.12.014-.178a.75.75 0 0 0-.873-.842 1.513 1.513 0 0 1-.147.018A1.488 1.488 0 0 1 8.5 3.5a1.5 1.5 0 0 1 .54-1.148.75.75 0 0 0-.413-1.323A7.03 7.03 0 0 0 8 1ZM5.75 4a.75.75 0 0 1 .75.75.75.75 0 0 1-.75.75.75.75 0 0 1-.75-.75.75.75 0 0 1 .75-.75Zm-1 3A1.25 1.25 0 0 1 6 8.25 1.25 1.25 0 0 1 4.75 9.5 1.25 1.25 0 0 1 3.5 8.25 1.25 1.25 0 0 1 4.75 7ZM9 7.5a.75.75 0 0 1 .75.75A.75.75 0 0 1 9 9a.75.75 0 0 1-.75-.75A.75.75 0 0 1 9 7.5Zm2.25 2.5a.75.75 0 0 1 .75.75.75.75 0 0 1-.75.75.75.75 0 0 1-.75-.75.75.75 0 0 1 .75-.75Zm-4 1.25A.75.75 0 0 1 8 12a.75.75 0 0 1-.75.75.75.75 0 0 1-.75-.75.75.75 0 0 1 .75-.75Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(CookieIcon);
module.exports = ForwardRef;