mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-02 11:15:35 +03:00
removed reblogedby text
This commit is contained in:
parent
ad098a31a8
commit
7952922e46
@ -4,6 +4,7 @@ import { withNavigation } from 'react-navigation';
|
||||
|
||||
// Components
|
||||
import { Tag, TextWithIcon } from '../../../basicUIElements';
|
||||
import { Icon } from '../../../icon';
|
||||
import { UserAvatar } from '../../../userAvatar';
|
||||
// Styles
|
||||
import styles from './postHeaderDescriptionStyles';
|
||||
@ -81,7 +82,12 @@ class PostHeaderDescription extends PureComponent {
|
||||
)}
|
||||
<Text style={styles.date}>{date}</Text>
|
||||
{!!reblogedBy && (
|
||||
<TextWithIcon text={reblogedBy} iconType="MaterialIcons" iconName="repeat" />
|
||||
// <TextWithIcon text={reblogedBy} iconType="MaterialIcons" iconName="repeat" />
|
||||
<Icon
|
||||
style={styles.reblogedIcon}
|
||||
name="repeat"
|
||||
iconType="MaterialIcons"
|
||||
/>
|
||||
)}
|
||||
</View>
|
||||
);
|
||||
|
@ -31,4 +31,10 @@ export default EStyleSheet.create({
|
||||
avatarNameWrapper: {
|
||||
flexDirection: 'row',
|
||||
},
|
||||
reblogedIcon: {
|
||||
color: '$iconColor',
|
||||
fontSize: 12,
|
||||
marginLeft: 10,
|
||||
alignSelf: 'center',
|
||||
},
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user