* Impl * Added reason * Secondary reject CTA * Update packages/emails/src/components/Info.tsx * Adjusting recurring info * Not showing reason for rejecting if none given * Feedback * Error handling + style fixes Co-authored-by: Peer Richelsen <peeroke@gmail.com>
23 lines
545 B
TypeScript
23 lines
545 B
TypeScript
export const CallToActionTable = (props: { children: React.ReactNode }) => (
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td
|
|
align="center"
|
|
role="presentation"
|
|
style={{
|
|
border: "none",
|
|
borderRadius: "3px",
|
|
cursor: "auto",
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
msoPaddingAlt: "10px 25px",
|
|
}}
|
|
valign="middle">
|
|
{props.children}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
);
|