import React from 'react'; import { View, Text, TouchableOpacity, StyleSheet, TouchableOpacityProps, ScrollView, } from 'react-native'; import { PreviewType, ProfilePreviewType, ScreenType, CategoryPreviewType, } from '../../types'; import {TAGG_LIGHT_BLUE} from '../../constants'; import SearchResults from './SearchResults'; import {SCREEN_HEIGHT} from '../../utils'; interface RecentSearchesProps extends TouchableOpacityProps { sectionTitle: PreviewType; sectionButtonTitle: string; recents: Array; recentCategories: CategoryPreviewType[]; screenType: ScreenType; } const RecentSearches: React.FC = (props) => { const { sectionTitle, sectionButtonTitle, recents, recentCategories, screenType, } = props; return ( {sectionTitle} {sectionButtonTitle && ( Clear all )} ); }; const styles = StyleSheet.create({ mainContainer: { marginLeft: '3%', }, container: { flexDirection: 'row', }, title: { fontSize: 18, fontWeight: '600', flexGrow: 1, marginBottom: '5%', }, clear: { fontSize: 18, fontWeight: 'bold', color: TAGG_LIGHT_BLUE, }, }); export default RecentSearches;