import React from 'react'; import {StyleSheet, View} from 'react-native'; import {Text} from 'react-native-animatable'; interface TaggPostFooterProps { likes: number; handle: string; caption: string; date: string; } const TaggPostFooter: React.FC = ({ likes, handle, caption, date, }) => { return ( {likes} likes {handle} {caption} {date} ); }; const styles = StyleSheet.create({ container: { flexDirection: 'column', padding: 10, paddingBottom: '10%', }, captionContainer: { paddingVertical: 10, }, likeText: { fontSize: 14, fontWeight: 'bold', color: 'white', }, handleText: { fontSize: 14, fontWeight: 'bold', color: '#8FA9C2', }, captionText: { fontSize: 14, fontWeight: 'bold', color: 'white', flexWrap: 'wrap', }, dateText: { fontSize: 14, fontWeight: 'bold', color: '#8FA9C2', }, }); export default TaggPostFooter;