@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) • 527 B
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import { Icon } from '../components/internal/Icon.js';
function CopyIcon(props) {
return /* @__PURE__ */ jsxs(Icon, {
...props,
children: [
/* @__PURE__ */ jsx("path", {
d: "M4.5 12.91c-.58-.2-1-.76-1-1.41v-6c0-1.1.9-2 2-2h6c.65 0 1.2.42 1.41 1"
}),
/* @__PURE__ */ jsx("rect", {
x: 7,
y: 7,
width: 9.5,
height: 9.5,
rx: 1.5
})
]
});
}
export { CopyIcon };
//# sourceMappingURL=Copy.js.map