// @ts-nocheck import React from "react" import { Font, Text as JEText, type TextProps } from "@jsx-email/all" import { baseText } from "./styles" export function Text(props: TextProps) { 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 Fonts({ assetsUrl }: { assetsUrl: string }) { return ( <> ) }