@liveblocks/react-ui
Version:
A set of React pre-built components for the Liveblocks products. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.
27 lines (23 loc) • 678 B
JavaScript
var jsxRuntime = require('react/jsx-runtime');
var Icon = require('../components/internal/Icon.cjs');
function QuestionMarkIcon(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(Icon.Icon, {
...props,
children: [
/* @__PURE__ */ jsxRuntime.jsx("path", {
d: "M10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm0-3h.007"
}),
/* @__PURE__ */ jsxRuntime.jsx("path", {
d: "M8 7.5C8 7 8.5 6 10 6s2 1 2 2c0 1.5-2 2-2 3.5"
}),
/* @__PURE__ */ jsxRuntime.jsx("circle", {
cx: 10,
cy: 14,
r: 0.25
})
]
});
}
exports.QuestionMarkIcon = QuestionMarkIcon;
//# sourceMappingURL=QuestionMark.cjs.map
;