From 0f72a2d8191ae1b0e83c90a7ceb73cfc81d802d8 Mon Sep 17 00:00:00 2001 From: Nicolas Cisco Date: Wed, 25 Dec 2019 23:43:55 -0300 Subject: [PATCH] Fixed `dividers` css property for DialogContent --- packages/material-ui/src/DialogContent/DialogContent.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/material-ui/src/DialogContent/DialogContent.d.ts b/packages/material-ui/src/DialogContent/DialogContent.d.ts index 783821fc855f46..d1fb737f6a18af 100644 --- a/packages/material-ui/src/DialogContent/DialogContent.d.ts +++ b/packages/material-ui/src/DialogContent/DialogContent.d.ts @@ -6,7 +6,7 @@ export interface DialogContentProps dividers?: boolean; } -export type DialogContentClassKey = 'root'; +export type DialogContentClassKey = 'root' | 'dividers'; declare const DialogContent: React.ComponentType;