diff --git a/index.js b/index.js index 513f4e3..5edeb2c 100644 --- a/index.js +++ b/index.js @@ -405,12 +405,12 @@ export default class VideoPlayer extends Component { renderStartButton() { const { customStyles } = this.props; return ( - - - + + + ); } @@ -427,7 +427,7 @@ export default class VideoPlayer extends Component { ]} source={thumbnail} > - {this.renderStartButton()} + {this.props.customStartButton ? this.props.customStartButton(this.onStartPress) : this.renderStartButton()} ); }