@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.
35 lines (31 loc) • 829 B
JavaScript
var jsxRuntime = require('react/jsx-runtime');
var Icon = require('../components/internal/Icon.cjs');
function EmojiIcon(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 14Z"
}),
/* @__PURE__ */ jsxRuntime.jsx("path", {
d: "M7.5 11.5S8.25 13 10 13s2.5-1.5 2.5-1.5M8 8h.007"
}),
/* @__PURE__ */ jsxRuntime.jsx("path", {
d: "M12 8h.007"
}),
/* @__PURE__ */ jsxRuntime.jsx("circle", {
cx: 8,
cy: 8,
r: 0.25
}),
/* @__PURE__ */ jsxRuntime.jsx("circle", {
cx: 12,
cy: 8,
r: 0.25
})
]
});
}
exports.EmojiIcon = EmojiIcon;
//# sourceMappingURL=Emoji.cjs.map
;