From c935c2b9eb9751f2bfefcfec0d1045b4d12b2f1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Grzelak?= Date: Tue, 18 Feb 2020 19:48:29 +0100 Subject: [PATCH] Add align to MjmlTableProps (#42312) * add align to MjmlTableProps * table align type --- types/mjml-react/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/mjml-react/index.d.ts b/types/mjml-react/index.d.ts index 5fd24aa97e..411b2024a3 100644 --- a/types/mjml-react/index.d.ts +++ b/types/mjml-react/index.d.ts @@ -359,6 +359,7 @@ export interface MjmlTableProps { containerBackgroundColor?: React.CSSProperties['backgroundColor']; width?: string | number; tableLayout?: 'auto' | 'fixed' | 'initial' | 'inherit'; + align?: 'left' | 'right' | 'center'; } export class MjmlTable extends React.Component { }