diff options
author | Ivan Chen <ivan@tagg.id> | 2021-04-20 17:16:46 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-04-20 17:21:46 -0400 |
commit | bae0136cb1939302b758249a1978251bd37aaee8 (patch) | |
tree | 8788895fe72bef062a4de3b3b8e245d091dc3c1f /src/components/messages | |
parent | 5ff7cab4bd36337b2c86e3d4915a6fc3ceef1ddb (diff) |
linted
Diffstat (limited to 'src/components/messages')
-rw-r--r-- | src/components/messages/TypingIndicator.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/messages/TypingIndicator.tsx b/src/components/messages/TypingIndicator.tsx index be7141a2..b7c33567 100644 --- a/src/components/messages/TypingIndicator.tsx +++ b/src/components/messages/TypingIndicator.tsx @@ -7,7 +7,7 @@ const TypingIndicator: React.FC = () => { <View style={styles.typingIndicatorContainer}> <Image source={require('../../assets/gifs/loading-animation.gif')} - style={{width: 88, height: 49}} + style={styles.image} /> </View> ); @@ -25,6 +25,7 @@ const styles = StyleSheet.create({ justifyContent: 'center', alignItems: 'center', }, + image: {width: 88, height: 49}, }); export default TypingIndicator; |