@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.
17 lines (14 loc) • 677 B
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import { Icon } from '../components/internal/Icon.js';
function ListUnorderedIcon(props) {
return /* @__PURE__ */ jsxs(Icon, { ...props, children: [
/* @__PURE__ */ jsx("path", { d: "M16 14.25H8M16 10H8m8-4.25H8m-3.75 0h0" }),
/* @__PURE__ */ jsx("circle", { cx: 4.25, cy: 5.75, r: 0.25 }),
/* @__PURE__ */ jsx("path", { d: "M4.25 14.25h0" }),
/* @__PURE__ */ jsx("circle", { cx: 4.25, cy: 14.25, r: 0.25 }),
/* @__PURE__ */ jsx("path", { d: "M4.25 10h0" }),
/* @__PURE__ */ jsx("circle", { cx: 4.25, cy: 10, r: 0.25 })
] });
}
export { ListUnorderedIcon };
//# sourceMappingURL=ListUnordered.js.map