UNPKG

@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.

33 lines (30 loc) 733 B
import { jsxs, jsx } from 'react/jsx-runtime'; import { Icon } from '../components/internal/Icon.js'; function EmojiIcon(props) { return /* @__PURE__ */ jsxs(Icon, { ...props, children: [ /* @__PURE__ */ jsx("path", { d: "M10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14Z" }), /* @__PURE__ */ jsx("path", { d: "M7.5 11.5S8.25 13 10 13s2.5-1.5 2.5-1.5M8 8h.007" }), /* @__PURE__ */ jsx("path", { d: "M12 8h.007" }), /* @__PURE__ */ jsx("circle", { cx: 8, cy: 8, r: 0.25 }), /* @__PURE__ */ jsx("circle", { cx: 12, cy: 8, r: 0.25 }) ] }); } export { EmojiIcon }; //# sourceMappingURL=Emoji.js.map