@nomercyicons/react
Version:
38 lines • 1.25 kB
JavaScript
const React = require("react");
function CookieOutlinedIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "currentColor",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "none",
d: "M0 0h24v24H0z"
}), /*#__PURE__*/React.createElement("circle", {
cx: 10.5,
cy: 8.5,
r: 1.5
}), /*#__PURE__*/React.createElement("circle", {
cx: 8.5,
cy: 13.5,
r: 1.5
}), /*#__PURE__*/React.createElement("circle", {
cx: 15,
cy: 15,
r: 1
}), /*#__PURE__*/React.createElement("path", {
d: "M21.95 10.99c-1.79-.03-3.7-1.95-2.68-4.22-2.97 1-5.78-1.59-5.19-4.56C7.11.74 2 6.41 2 12c0 5.52 4.48 10 10 10 5.89 0 10.54-5.08 9.95-11.01zM12 20c-4.41 0-8-3.59-8-8 0-3.31 2.73-8.18 8.08-8.02.42 2.54 2.44 4.56 4.99 4.94.07.36.52 2.55 2.92 3.63C19.7 16.86 16.06 20 12 20z"
}));
}
const ForwardRef = React.forwardRef(CookieOutlinedIcon);
module.exports = ForwardRef;