Use raised button for inline button
This commit is contained in:
parent
3a4906079b
commit
a629f287f0
1 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
const React = require('react')
|
||||
|
||||
const FlatButton = require('material-ui/FlatButton').default
|
||||
const RaisedButton = require('material-ui/RaisedButton').default
|
||||
|
||||
class ShowMore extends React.Component {
|
||||
static get propTypes () {
|
||||
|
|
@ -41,7 +41,7 @@ class ShowMore extends React.Component {
|
|||
return (
|
||||
<div style={this.props.style}>
|
||||
{this.state.expanded ? this.props.children : null}
|
||||
<FlatButton
|
||||
<RaisedButton
|
||||
onClick={this.handleClick}
|
||||
label={label} />
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue