Skip to content

Commit 4ba1522

Browse files
committed
use glyphicons for side arrows
1 parent aa1e65f commit 4ba1522

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DateTimePickerDays.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ export default class DateTimePickerDays extends Component {
7474
<table className="table-condensed">
7575
<thead>
7676
<tr>
77-
<th className="prev" onClick={this.props.subtractMonth}></th>
77+
<th className="prev" onClick={this.props.subtractMonth}><span className="glyphicon glyphicon-chevron-left" /></th>
7878

7979
<th className="switch" colSpan="5" onClick={this.props.showMonths}>{moment.months()[this.props.viewDate.month()]} {this.props.viewDate.year()}</th>
8080

81-
<th className="next" onClick={this.props.addMonth}></th>
81+
<th className="next" onClick={this.props.addMonth}><span className="glyphicon glyphicon-chevron-right" /></th>
8282
</tr>
8383

8484
<tr>

0 commit comments

Comments
 (0)