UNPKG

@tmlmobilidade/emails

Version:
11 lines (10 loc) 794 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; /* * */ import { GO_HOMEPAGE_URL } from '../../constants.js'; import { Column, Img, Link, Row } from 'react-email'; import styles from './styles.js'; /* * */ export function CoverLogo() { return (_jsxs(Row, { style: styles.container, children: [_jsx(Column, { children: _jsx(Link, { href: GO_HOMEPAGE_URL, target: "_blank", children: _jsx(Img, { alt: "GO Logo", height: 40, src: "https://storage.carrismetropolitana.pt/static/test/go-header-left.png", width: 88 }) }) }), _jsx(Column, { align: "right", children: _jsx(Link, { href: GO_HOMEPAGE_URL, target: "_blank", children: _jsx(Img, { alt: "TML Logo", height: 40, src: "https://storage.carrismetropolitana.pt/static/test/go-header-right.png", width: 60 }) }) })] })); } ;