From df92a872b9d6f2084d87b1a764c693c40911f8e5 Mon Sep 17 00:00:00 2001 From: use-strict Date: Mon, 28 Sep 2015 12:06:37 +0300 Subject: [PATCH] Paper and ToolbarTitle should allow regular HTML attributes. --- material-ui/material-ui.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/material-ui/material-ui.d.ts b/material-ui/material-ui.d.ts index c5c37ee91..627d91b58 100644 --- a/material-ui/material-ui.d.ts +++ b/material-ui/material-ui.d.ts @@ -654,7 +654,7 @@ declare namespace __MaterialUI { export class Overlay extends React.Component { } - interface PaperProps extends React.Props { + interface PaperProps extends React.HTMLAttributesBase { circle?: boolean; rounded?: boolean; transitionEnabled?: boolean; @@ -1256,7 +1256,7 @@ declare namespace __MaterialUI { export class ToolbarSeparator extends React.Component { } - interface ToolbarTitleProps extends React.Props { + interface ToolbarTitleProps extends React.HTMLAttributesBase { text?: string; } export class ToolbarTitle extends React.Component {