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

30 lines
612 B
TypeScript

import { Table, TBody, TR, TD } from "oy-vey";
import * as React from "react";
const EmptySpace = ({ height }: { height?: number }) => {
height = height || 16;
const style = {
lineHeight: `${height}px`,
fontSize: "1px",
msoLineHeightRule: "exactly",
};
return (
<Table width="100%">
<TBody>
<TR>
<TD
width="100%"
height={`${height}px`}
style={style}
dangerouslySetInnerHTML={{
__html: "&nbsp;",
}}
/>
</TR>
</TBody>
</Table>
);
};
export default EmptySpace;