@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.
20 lines (17 loc) • 508 B
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import { Icon } from '../components/internal/Icon.js';
function MentionIcon(props) {
return /* @__PURE__ */ jsxs(Icon, {
...props,
children: [
/* @__PURE__ */ jsx("path", {
d: "M10 13a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"
}),
/* @__PURE__ */ 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"
})
]
});
}
export { MentionIcon };
//# sourceMappingURL=Mention.js.map