@carbon/icons-react
Version:
React components for icons in digital and software products using the Carbon Design System
57 lines (55 loc) • 1.79 kB
JavaScript
/**
* Copyright IBM Corp. 2016, 2023
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*
* Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
*/
import Icon from "./Icon.js";
import { t as iconPropTypes } from "./iconPropTypes-B1cP964Y.js";
import React from "react";
import { jsx } from "react/jsx-runtime";
//#region virtual:Cookie.js
const Cookie = React.forwardRef(function Cookie({ children, size = 16, ...rest }, ref) {
return React.createElement(Icon, {
width: size,
height: size,
ref,
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 32 32",
fill: "currentColor",
...rest
}, /* @__PURE__ */ jsx("circle", {
cx: "10",
cy: "21",
r: "2"
}), /* @__PURE__ */ jsx("circle", {
cx: "23",
cy: "20",
r: "2"
}), /* @__PURE__ */ jsx("circle", {
cx: "13",
cy: "10",
r: "2"
}), /* @__PURE__ */ jsx("circle", {
cx: "14",
cy: "15",
r: "1"
}), /* @__PURE__ */ jsx("circle", {
cx: "23",
cy: "5",
r: "2"
}), /* @__PURE__ */ jsx("circle", {
cx: "29",
cy: "3",
r: "1"
}), /* @__PURE__ */ jsx("circle", {
cx: "16",
cy: "23",
r: "1"
}), /* @__PURE__ */ jsx("path", { d: "M16,30C8.3,30,2,23.7,2,16S8.3,2,16,2c0.1,0,0.2,0,0.3,0l1.4,0.1l-0.3,1.2c-0.1,0.4-0.2,0.9-0.2,1.3c0,2.8,2.2,5,5,5 c1,0,2-0.3,2.9-0.9l1.3,1.5c-0.4,0.4-0.6,0.9-0.6,1.4c0,1.3,1.3,2.4,2.7,1.9l1.2-0.5l0.2,1.3C30,14.9,30,15.5,30,16 C30,23.7,23.7,30,16,30z M15.3,4C9,4.4,4,9.6,4,16c0,6.6,5.4,12,12,12s12-5.4,12-12c0-0.1,0-0.3,0-0.4c-2.3,0.1-4.2-1.7-4.2-4 c0-0.1,0-0.1,0-0.2c-0.5,0.1-1,0.2-1.6,0.2c-3.9,0-7-3.1-7-7C15.2,4.4,15.2,4.2,15.3,4z" }), children);
});
if (process.env.NODE_ENV !== "production") Cookie.propTypes = iconPropTypes;
//#endregion
export { Cookie as default };