@@ -65,6 +65,7 @@ export default class MultiSelect extends Component {
65
65
styleTextDropdown : Text . propTypes . style ,
66
66
styleTextDropdownSelected : Text . propTypes . style ,
67
67
styleTextTag : Text . propTypes . style ,
68
+ styleIndicator : ViewPropTypes . style ,
68
69
altFontFamily : PropTypes . string ,
69
70
hideSubmitButton : PropTypes . bool ,
70
71
hideDropdown : PropTypes . bool ,
@@ -572,7 +573,8 @@ export default class MultiSelect extends Component {
572
573
styleSelectorContainer,
573
574
styleTextDropdown,
574
575
styleTextDropdownSelected,
575
- searchIcon
576
+ searchIcon,
577
+ styleIndicator,
576
578
} = this . props ;
577
579
const { searchTerm, selector } = this . state ;
578
580
return (
@@ -613,7 +615,8 @@ export default class MultiSelect extends Component {
613
615
name = "menu-down"
614
616
style = { [
615
617
styles . indicator ,
616
- { paddingLeft : 15 , paddingRight : 15 }
618
+ { paddingLeft : 15 , paddingRight : 15 } ,
619
+ styleIndicator && styleIndicator ,
617
620
] }
618
621
/>
619
622
</ TouchableOpacity >
@@ -714,7 +717,10 @@ export default class MultiSelect extends Component {
714
717
</ Text >
715
718
< Icon
716
719
name = { hideSubmitButton ? 'menu-right' : 'menu-down' }
717
- style = { styles . indicator }
720
+ style = { [
721
+ styles . indicator ,
722
+ styleIndicator && styleIndicator ,
723
+ ] }
718
724
/>
719
725
</ View >
720
726
</ TouchableWithoutFeedback >
0 commit comments