Added missing className property to CardProps (#10823)

The className property for CardPros is missing, so using it like
<Card className={this.myClass}>...</Card>
is not possible.
This commit is contained in:
MichaelHilus
2016-10-03 11:37:14 -07:00
committed by Mohamed Hegazy
parent 7200df0663
commit 4a4d4e31e2
+1
View File
@@ -759,6 +759,7 @@ declare namespace __MaterialUI {
namespace Card {
interface CardProps extends React.Props<Card> {
className?: string;
actAsExpander?: boolean;
containerStyle?: React.CSSProperties;
expandable?: boolean;