Skip to content

Commit 96627ef

Browse files
committed
fix(Button): add disabled class
1 parent 7f4384e commit 96627ef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/Button.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class Button extends React.Component {
5050
'btn-' + color,
5151
size ? 'btn-' + size : false,
5252
block ? 'btn-block' : false,
53-
{ active }
53+
{ active, disabled: this.props.disabled }
5454
);
5555

5656
if (El) {

0 commit comments

Comments
 (0)