Add option to not use button styling on Modal triggers
This commit is contained in:
parent
6d79cdc7de
commit
6b8718ed6e
|
@ -33,7 +33,7 @@ export class Modal extends Component {
|
|||
|
||||
return (
|
||||
<div className='is-inline'>
|
||||
<a className='button'
|
||||
<a className={!this.props.noButton ? 'button' : null}
|
||||
onClick={ this.show.bind(this) }>
|
||||
{ buttonText || 'Show' }
|
||||
</a>
|
||||
|
|
Loading…
Reference in New Issue