(isPlay: boolean)
| 95 | }; |
| 96 | |
| 97 | const activeSearch = (isPlay: boolean) => { |
| 98 | return ( |
| 99 | <View style={styles.tabStyle}> |
| 100 | <LottieView |
| 101 | source={require(`../assets/search.json`)} |
| 102 | autoPlay={isPlay} |
| 103 | loop={false} |
| 104 | style={lottieIconStyle} |
| 105 | /> |
| 106 | </View> |
| 107 | ); |
| 108 | }; |
| 109 | |
| 110 | interface TabsDataType extends TabsType { |
| 111 | activeTintColor: string; |