File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ const styles = createStyleSheet({
21
21
alignSelf : 'center' ,
22
22
} ,
23
23
icon : {
24
- fontSize : 28 ,
25
24
alignSelf : 'center' ,
26
25
} ,
27
26
} ) ;
@@ -39,7 +38,7 @@ export default class LightboxFooter extends PureComponent<Props> {
39
38
< SafeAreaView mode = "padding" edges = { [ 'right' , 'bottom' , 'left' ] } >
40
39
< View style = { [ styles . wrapper , style ] } >
41
40
< Text style = { styles . text } > { displayMessage } </ Text >
42
- < Icon style = { styles . icon } color = "white" name = "more-vertical" onPress = { onOptionsPress } />
41
+ < Icon size = { 28 } color = "white" name = "more-vertical" onPress = { onOptionsPress } />
43
42
</ View >
44
43
</ SafeAreaView >
45
44
) ;
Original file line number Diff line number Diff line change @@ -27,9 +27,6 @@ const styles = createStyleSheet({
27
27
rightIconTouchTarget : {
28
28
alignSelf : 'center' ,
29
29
} ,
30
- rightIcon : {
31
- fontSize : 28 ,
32
- } ,
33
30
wrapper : {
34
31
flex : 1 ,
35
32
flexDirection : 'row' ,
@@ -74,7 +71,7 @@ export default class LightboxHeader extends PureComponent<Props> {
74
71
</ Text >
75
72
</ View >
76
73
< Touchable style = { styles . rightIconTouchTarget } onPress = { onPressBack } >
77
- < Icon style = { styles . rightIcon } color = "white" name = "x" />
74
+ < Icon size = { 28 } color = "white" name = "x" />
78
75
</ Touchable >
79
76
</ View >
80
77
</ SafeAreaView >
You can’t perform that action at this time.
0 commit comments