About to start work on buttons

This commit is contained in:
2018-05-15 08:10:54 +10:00
parent fbceaaddb0
commit d8b1c41538
10 changed files with 83 additions and 17 deletions

View File

@ -73,6 +73,8 @@ export default class Button extends React.Component {
style = "secondary";
} else if(this.props.danger) {
style = "danger";
} else if(this.props.warning) {
style = "warning";
} else if(this.props.style) {
style = this.props.style;
}