fix(ios) fix drag handle not rendering with latest react-native-svg

Fill must be properly specified.
This commit is contained in:
Saúl Ibarra Corretgé
2021-01-07 11:39:28 +01:00
parent db87959141
commit 38e264ced2
2 changed files with 3 additions and 6 deletions

View File

@@ -166,8 +166,9 @@ class OverflowMenu extends PureComponent<Props, State> {
styles.expandMenuContainer
] }>
<TouchableOpacity onPress = { this._onToggleMenu }>
{ /* $FlowFixMeProps */ }
<IconDragHandle style = { this.props._bottomSheetStyles.expandIcon } />
{ /* $FlowFixMe */ }
<IconDragHandle
fill = { this.props._bottomSheetStyles.buttons.iconStyle.color } />
</TouchableOpacity>
</View>
);