Add align to MjmlTableProps (#42312)

* add align to MjmlTableProps

* table align type
This commit is contained in:
Michał Grzelak 2020-02-18 19:48:29 +01:00 committed by GitHub
parent 2ef0c19e45
commit c935c2b9eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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<MjmlTableProps & RequiredChildrenProps & PaddingProps> { }