@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.
20 lines (17 loc) • 546 B
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import { Icon } from '../components/internal/Icon.js';
function SparklesTextIcon(props) {
return /* @__PURE__ */ jsxs(Icon, {
...props,
children: [
/* @__PURE__ */ jsx("path", {
d: "M9 11.5H4.5m3.5 3H4.5m11-6h-11m11-3h-11"
}),
/* @__PURE__ */ jsx("path", {
d: "M16 13.5a2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1 2.5-2.5Z"
})
]
});
}
export { SparklesTextIcon };
//# sourceMappingURL=SparklesText.js.map