mirror of
https://github.com/Alamantus/Lexiconga.git
synced 2025-05-15 06:31:18 +02:00
Add option to not use button styling on Modal triggers
This commit is contained in:
parent
6d79cdc7de
commit
6b8718ed6e
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ export class Modal extends Component {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='is-inline'>
|
<div className='is-inline'>
|
||||||
<a className='button'
|
<a className={!this.props.noButton ? 'button' : null}
|
||||||
onClick={ this.show.bind(this) }>
|
onClick={ this.show.bind(this) }>
|
||||||
{ buttonText || 'Show' }
|
{ buttonText || 'Show' }
|
||||||
</a>
|
</a>
|
||||||
|
|
Loading…
Add table
Reference in a new issue