@@ -2,6 +2,7 @@ import React, { cloneElement } from 'react';
2
2
import classNames from 'classnames' ;
3
3
import BootstrapMixin from './BootstrapMixin' ;
4
4
import ValidComponentChildren from './utils/ValidComponentChildren' ;
5
+ import Glyphicon from './Glyphicon' ;
5
6
6
7
const Carousel = React . createClass ( {
7
8
mixins : [ BootstrapMixin ] ,
@@ -17,7 +18,9 @@ const Carousel = React.createClass({
17
18
onSlideEnd : React . PropTypes . func ,
18
19
activeIndex : React . PropTypes . number ,
19
20
defaultActiveIndex : React . PropTypes . number ,
20
- direction : React . PropTypes . oneOf ( [ 'prev' , 'next' ] )
21
+ direction : React . PropTypes . oneOf ( [ 'prev' , 'next' ] ) ,
22
+ prevIcon : React . PropTypes . node . isRequired ,
23
+ nextIcon : React . PropTypes . node . isRequired
21
24
} ,
22
25
23
26
getDefaultProps ( ) {
@@ -27,7 +30,9 @@ const Carousel = React.createClass({
27
30
pauseOnHover : true ,
28
31
wrap : true ,
29
32
indicators : true ,
30
- controls : true
33
+ controls : true ,
34
+ prevIcon : < Glyphicon glyph = "chevron-left" /> ,
35
+ nextIcon : < Glyphicon glyph = "chevron-right" />
31
36
} ;
32
37
} ,
33
38
@@ -158,15 +163,15 @@ const Carousel = React.createClass({
158
163
renderPrev ( ) {
159
164
return (
160
165
< a className = "left carousel-control" href = "#prev" key = { 0 } onClick = { this . prev } >
161
- < span className = "glyphicon glyphicon-chevron-left" />
166
+ { this . props . prevIcon }
162
167
</ a >
163
168
) ;
164
169
} ,
165
170
166
171
renderNext ( ) {
167
172
return (
168
173
< a className = "right carousel-control" href = "#next" key = { 1 } onClick = { this . next } >
169
- < span className = "glyphicon glyphicon-chevron-right" />
174
+ { this . props . nextIcon }
170
175
</ a >
171
176
) ;
172
177
} ,
0 commit comments