import XNode from "@web-atoms/core/dist/core/XNode"; import { IStyleDeclaration } from "@web-atoms/core/dist/web/styles/IStyleDeclaration"; import IXStyle from "../core/IXStyle"; import IEmailElementStyle from "../style/IEmailElementStyle"; import StyleHelper from "./StyleHelper"; export interface ILink extends IEmailElementStyle { text?: string; href: string; target?: "_blank" | "_top"; } export default function Link({ text, href, target = "_blank", style, ... a }: ILink, ... children: XNode[]): XNode { return {text} { ... children} ; }