// @ts-nocheck
import React from "react"
import { Font, Hr as JEHr, Text as JEText, type HrProps, type TextProps } from "@jsx-email/all"
import { DIVIDER_COLOR, SURFACE_DIVIDER_COLOR, textColor } from "./styles"
export function Text(props: TextProps) {
return
}
export function Hr(props: HrProps) {
return
}
export function SurfaceHr(props: HrProps) {
return (
)
}
export function Title({ children }: TitleProps) {
return React.createElement("title", null, children)
}
export function A({ children, ...props }: AProps) {
return React.createElement("a", props, children)
}
export function Span({ children, ...props }: SpanProps) {
return React.createElement("span", props, children)
}
export function Wbr({ children, ...props }: WbrProps) {
return React.createElement("wbr", props, children)
}
export function Fonts({ assetsUrl }: { assetsUrl: string }) {
return (
<>
>
)
}
export function SplitString({ text, split }: { text: string; split: number }) {
const segments: JSX.Element[] = []
for (let i = 0; i < text.length; i += split) {
segments.push(<>{text.slice(i, i + split)}>)
if (i + split < text.length) {
segments.push()
}
}
return <>{segments}>
}