@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.
14 lines (11 loc) • 479 B
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import { Icon } from '../components/internal/Icon.js';
function EllipsisIcon(props) {
return /* @__PURE__ */ jsxs(Icon, { fill: "currentColor", ...props, children: [
/* @__PURE__ */ jsx("circle", { cx: 5, cy: 10, r: 0.75 }),
/* @__PURE__ */ jsx("circle", { cx: 10, cy: 10, r: 0.75 }),
/* @__PURE__ */ jsx("circle", { cx: 15, cy: 10, r: 0.75 })
] });
}
export { EllipsisIcon };
//# sourceMappingURL=Ellipsis.js.map