@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.
32 lines (28 loc) • 668 B
JavaScript
'use strict';
var jsxRuntime = require('react/jsx-runtime');
var Icon = require('../components/internal/Icon.cjs');
function EllipsisIcon(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(Icon.Icon, {
fill: "currentColor",
...props,
children: [
/* @__PURE__ */ jsxRuntime.jsx("circle", {
cx: 5,
cy: 10,
r: 0.75
}),
/* @__PURE__ */ jsxRuntime.jsx("circle", {
cx: 10,
cy: 10,
r: 0.75
}),
/* @__PURE__ */ jsxRuntime.jsx("circle", {
cx: 15,
cy: 10,
r: 0.75
})
]
});
}
exports.EllipsisIcon = EllipsisIcon;
//# sourceMappingURL=Ellipsis.cjs.map