import React from 'react'; import { View, Text, TouchableOpacity, StyleSheet, TouchableOpacityProps, } from 'react-native'; import {ProfilePreviewType} from 'src/types'; import SearchResults from './SearchResults'; interface RecentSearchesProps extends TouchableOpacityProps { sectionTitle: string; sectionButtonTitle: string; recents: Array; } /** * An image component that returns the of the icon for a specific social media platform. */ const RecentSearches: React.FC = (props) => { return ( <> {props.sectionTitle} {props.sectionButtonTitle && ( Clear all )} ); }; const styles = StyleSheet.create({ container: { flexDirection: 'row', }, title: { fontSize: 17, fontWeight: 'bold', flexGrow: 1, }, clear: { fontSize: 17, fontWeight: 'bold', color: '#698DD3', }, }); export default RecentSearches;