@@ -15,7 +15,7 @@ export const RightButton = memo(
1515 loading,
1616 buttonsContainerStyle,
1717 ChevronIconComponent,
18- ClearIconComponent,
18+ ClearIconComponent
1919 } ) => {
2020 const isOpenedAnimationValue = useRef ( new Animated . Value ( 0 ) ) . current
2121
@@ -24,21 +24,21 @@ export const RightButton = memo(
2424 duration : 350 ,
2525 toValue : isOpened ? 1 : 0 ,
2626 useNativeDriver : true ,
27- easing : Easing . bezier ( 0.3 , 0.58 , 0.25 , 0.99 ) ,
27+ easing : Easing . bezier ( 0.3 , 0.58 , 0.25 , 0.99 )
2828 } ) . start ( )
2929 } , [ isOpened ] )
3030
3131 const chevronSpin = isOpenedAnimationValue . interpolate ( {
3232 inputRange : [ 0 , 1 ] ,
33- outputRange : [ '0deg' , '180deg' ] ,
33+ outputRange : [ '0deg' , '180deg' ]
3434 } )
3535
3636 return (
3737 < View
3838 style = { {
3939 ...styles . container ,
4040 height : inputHeight ,
41- ...buttonsContainerStyle ,
41+ ...buttonsContainerStyle
4242 } } >
4343 { ! loading && showClear && (
4444 < TouchableOpacity onPress = { onClearPress } style = { styles . clearButton } >
@@ -55,7 +55,7 @@ export const RightButton = memo(
5555 ) }
5656 </ View >
5757 )
58- } ,
58+ }
5959)
6060
6161const styles = StyleSheet . create ( {
@@ -67,16 +67,16 @@ const styles = StyleSheet.create({
6767 zIndex : 10 ,
6868 justifyContent : 'center' ,
6969 alignItems : 'center' ,
70- backgroundColor : 'transparent' ,
70+ backgroundColor : 'transparent'
7171 } ,
7272 clearButton : {
7373 width : 26 ,
74- alignItems : 'center' ,
74+ alignItems : 'center'
7575 } ,
7676 chevronButton : {
7777 width : 26 ,
7878 alignItems : 'center' ,
7979 height : '100%' ,
80- justifyContent : 'center' ,
81- } ,
80+ justifyContent : 'center'
81+ }
8282} )
0 commit comments