Files
outline/server/emails/templates/components/EmailLayout.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

24 lines
475 B
TypeScript

import { Table, TBody, TR, TD } from "oy-vey";
import * as React from "react";
import theme from "@shared/styles/theme";
const EmailLayout: React.FC = ({ children }) => (
<Table width="550" padding="40">
<TBody>
<TR>
<TD align="left">{children}</TD>
</TR>
</TBody>
</Table>
);
export default EmailLayout;
export const baseStyles = `
#__bodyTable__ {
font-family: ${theme.fontFamily};
font-size: 16px;
line-height: 1.5;
}
`;