import * as React from 'react'; import {Avatar, Button, Card, withTheme} from 'react-native-paper'; import {TouchableOpacity, View} from "react-native"; import Autolink from "react-native-autolink"; import i18n from "i18n-js"; const ICON_AMICALE = require('../assets/amicale.png'); /** * Gets the amicale INSAT logo * * @return {*} */ function getAvatar() { return ( ); } /** * Component used to display a feed item * * @param props Props to pass to the component * @return {*} */ function FeedItem(props) { const {colors} = props.theme; return ( {props.full_picture !== '' && props.full_picture !== undefined ? : } {props.message !== undefined ? : } ); } export default withTheme(FeedItem);