From bd7de712097493b591894dd23c2f2116e1c66fbe Mon Sep 17 00:00:00 2001 From: sakulstra Date: Sat, 5 Oct 2019 12:55:39 +0200 Subject: [PATCH] Reduce specificity of typescript type - closes #17699 --- packages/material-ui/src/ListSubheader/ListSubheader.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/material-ui/src/ListSubheader/ListSubheader.d.ts b/packages/material-ui/src/ListSubheader/ListSubheader.d.ts index b0cc8f0cc8208c..8b99e06c4454b7 100644 --- a/packages/material-ui/src/ListSubheader/ListSubheader.d.ts +++ b/packages/material-ui/src/ListSubheader/ListSubheader.d.ts @@ -4,7 +4,7 @@ import { StandardProps } from '..'; export interface ListSubheaderProps extends StandardProps, ListSubheaderClassKey> { color?: 'default' | 'primary' | 'inherit'; - component?: React.ElementType>; + component?: React.ElementType; disableGutters?: boolean; disableSticky?: boolean; inset?: boolean;