Skip to content

Commit

Permalink
Fixed some double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunderous committed Mar 22, 2018
1 parent 42978a6 commit eee7e06
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/AutoRotatingCarousel.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export default class AutoRotatingCarousel extends Component {
<div style={landscape ? {minWidth: 300, maxWidth: 'calc(50% - 48px)', padding: 24, float: 'right'} : null}>
<div style={landscape ? style.footerLandscape : style.footer}>
{this.props.label && <Button
variant="raised"
variant='raised'
onClick={this.props.onStart}
>
{this.props.label}
Expand All @@ -198,14 +198,14 @@ export default class AutoRotatingCarousel extends Component {
</div>
{!this.props.mobile && !this.props.hideArrows ? <div>
<Button
variant="fab"
variant='fab'
style={style.arrowLeft}
onClick={() => this.decreaseIndex()}
>
<ArrowBackIcon style={style.arrowIcon} />
</Button>
<Button
variant="fab"
variant='fab'
style={style.arrowRight}
onClick={() => this.increaseIndex()}
>
Expand Down

0 comments on commit eee7e06

Please sign in to comment.