@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.
22 lines (18 loc) • 573 B
JavaScript
var jsxRuntime = require('react/jsx-runtime');
var Icon = require('../components/internal/Icon.cjs');
function MentionIcon(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(Icon.Icon, {
...props,
children: [
/* @__PURE__ */ jsxRuntime.jsx("path", {
d: "M10 13a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"
}),
/* @__PURE__ */ jsxRuntime.jsx("path", {
d: "M13 7v3.7c0 1.105.855 2.1 1.9 2.1a2.12 2.12 0 0 0 2.1-2.1V10a7 7 0 1 0-2.8 5.6"
})
]
});
}
exports.MentionIcon = MentionIcon;
//# sourceMappingURL=Mention.cjs.map
;