material-ui: labelPosition on RaisedButton

This commit is contained in:
Denis Sokolov
2015-11-09 10:23:36 +02:00
parent 421d6610bd
commit f17e96256c
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -131,7 +131,7 @@ class MaterialUiTests extends React.Component<{}, {}> implements React.LinkedSta
element = <FlatButton linkButton={true} href="https://github.com/callemall/material-ui" secondary={true} label="GitHub">
<FontIcon style={{ color: Typography.textFullWhite }} className="muidocs-icon-custom-github"/>
</FlatButton>;
element = <RaisedButton linkButton={true} href="https://github.com/callemall/material-ui" secondary={true} label="GitHub">
element = <RaisedButton linkButton={true} href="https://github.com/callemall/material-ui" secondary={true} label="GitHub" labelPosition="before">
<FontIcon style={{ color: Typography.textFullWhite }} className="muidocs-icon-custom-github"/>
</RaisedButton>;
element = <FloatingActionButton secondary={true} mini={true} linkButton={true}
+1
View File
@@ -692,6 +692,7 @@ declare namespace __MaterialUI {
labelStyle?: React.CSSProperties;
backgroundColor?: string;
labelColor?: string;
labelPosition?: string;
disabledBackgroundColor?: string;
disabledLabelColor?: string;
fullWidth?: boolean;