"use client"; import { useCustomTheme } from "../../../core/design-system/CustomThemeProvider.js"; import { fontSize, spacing } from "../../../core/design-system/index.js"; import { StyledDiv } from "../design-system/elements.js"; /** * * @internal */ export const TextDivider = (props: { text: string; py?: keyof typeof spacing; }) => { return ( {props.text} ); }; const TextDividerEl = /* @__PURE__ */ StyledDiv(() => { const theme = useCustomTheme(); return { "&::before, &::after": { borderBottom: `1px solid ${theme.colors.separatorLine}`, content: '""', flex: 1, }, alignItems: "center", color: theme.colors.secondaryText, display: "flex", fontSize: fontSize.sm, span: { margin: "0 16px", }, }; });