mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-29 12:10:24 +00:00
Initial commit of eigent-main
This commit is contained in:
commit
723df5a03e
1144 changed files with 103478 additions and 0 deletions
17
package/@stackframe/react/dist/esm/components/elements/separator-with-text.js
vendored
Normal file
17
package/@stackframe/react/dist/esm/components/elements/separator-with-text.js
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
"use client";
|
||||
"use client";
|
||||
|
||||
// src/components/elements/separator-with-text.tsx
|
||||
import { Separator } from "@stackframe/stack-ui";
|
||||
import { jsx, jsxs } from "react/jsx-runtime";
|
||||
function SeparatorWithText({ text }) {
|
||||
return /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-center my-6 stack-scope", children: [
|
||||
/* @__PURE__ */ jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsx(Separator, {}) }),
|
||||
/* @__PURE__ */ jsx("div", { className: "mx-2 text-sm text-zinc-500", children: text }),
|
||||
/* @__PURE__ */ jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsx(Separator, {}) })
|
||||
] });
|
||||
}
|
||||
export {
|
||||
SeparatorWithText
|
||||
};
|
||||
//# sourceMappingURL=separator-with-text.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue