UNPKG

braid-design-system

Version:
28 lines (27 loc) 1.14 kB
"use strict"; const jsxRuntime = require("react/jsx-runtime"); const IconSentimentPositiveSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs( "svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", focusable: "false", fill: "currentColor", width: 16, height: 16, "aria-labelledby": titleId, ...props, children: [ title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null, /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 23C5.935 23 1 18.065 1 12S5.935 1 12 1s11 4.935 11 11-4.935 11-11 11Zm0-20c-4.963 0-9 4.037-9 9s4.037 9 9 9 9-4.037 9-9-4.037-9-9-9Z" }), /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 9.5, cy: 9.5, r: 1.5 }), /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 14.5, cy: 9.5, r: 1.5 }), /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 18a5.955 5.955 0 0 1-4.8-2.4 1.001 1.001 0 0 1 1.6-1.2c.763 1.017 1.93 1.6 3.2 1.6s2.437-.583 3.2-1.6c.332-.442.96-.53 1.4-.2.442.332.53.96.2 1.4A5.955 5.955 0 0 1 12 18Z" }) ] } ); exports.IconSentimentPositiveSvg = IconSentimentPositiveSvg;