From 910023509a2a0d5e7c62531248bd5fdbffc8d77c Mon Sep 17 00:00:00 2001 From: Nick Graham Date: Mon, 24 Jul 2017 12:33:52 -0500 Subject: [PATCH] [material-ui] Adds missing subtitleStyleProps to GridTile (#18271) * Adds props to GridTile * Removes the children prop that I added --- types/material-ui/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/material-ui/index.d.ts b/types/material-ui/index.d.ts index 6180f193f7..632ab397b7 100644 --- a/types/material-ui/index.d.ts +++ b/types/material-ui/index.d.ts @@ -1055,6 +1055,7 @@ declare namespace __MaterialUI { rows?: number; style?: React.CSSProperties; subtitle?: React.ReactNode; + subtitleStyle?: React.CSSProperties; title?: React.ReactNode; titleBackground?: string; titlePosition?: "top" | "bottom";