You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
686 B

import React from 'react';
import { View, Image, Text, StyleSheet } from 'react-native';
const ArtistCard = ({ imageUri, name }) => {
return (
<View style={styles.container}>
<Image source={{ uri: imageUri }} style={styles.image}/>
<Text style={styles.name}>{name}</Text>
</View>
);
};
const styles = StyleSheet.create({
container: {
flexDirection: 'row',
alignItems: 'center',
margin: 10,
},
image: {
width: 80,
height: 80,
borderRadius: 40,
marginRight: 10,
},
name: {
fontSize: 20,
fontWeight: 'bold',
},
});
export default ArtistCard;