@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.
24 lines (21 loc) • 519 B
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import { Icon } from '../components/internal/Icon.js';
function ResolvedIcon(props) {
return /* @__PURE__ */ jsxs(Icon, {
...props,
children: [
/* @__PURE__ */ jsx("circle", {
cx: 10,
cy: 10,
r: 7,
fill: "currentColor"
}),
/* @__PURE__ */ jsx("path", {
d: "m13 8-4 4-2-2",
stroke: "var(--lb-icon-background)"
})
]
});
}
export { ResolvedIcon };
//# sourceMappingURL=Resolved.js.map