Files
outline/server/emails/templates/components/Header.tsx
Tom Moor 5c24f9e1d5 chore: Email + mailer refactor (#3342)
* Huge email refactor

* fix: One rename too many

* comments
2022-04-07 16:50:04 -07:00

26 lines
540 B
TypeScript

import { Table, TBody, TR, TD } from "oy-vey";
import * as React from "react";
import EmptySpace from "./EmptySpace";
const url = process.env.CDN_URL || process.env.URL;
export default () => {
return (
<Table width="100%">
<TBody>
<TR>
<TD>
<EmptySpace height={40} />
<img
alt="Outline"
src={`${url}/email/header-logo.png`}
height="48"
width="48"
/>
</TD>
</TR>
</TBody>
</Table>
);
};