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.

25 lines (22 loc) 597 B
import { jsxs, jsx } from 'react/jsx-runtime'; import { Icon } from '../components/internal/Icon.js'; function QuestionMarkIcon(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 14Zm0-3h.007" }), /* @__PURE__ */ jsx("path", { d: "M8 7.5C8 7 8.5 6 10 6s2 1 2 2c0 1.5-2 2-2 3.5" }), /* @__PURE__ */ jsx("circle", { cx: 10, cy: 14, r: 0.25 }) ] }); } export { QuestionMarkIcon }; //# sourceMappingURL=QuestionMark.js.map