mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-04-10 16:30:18 +02:00
14 lines
609 B
JavaScript
14 lines
609 B
JavaScript
// React
|
|
import { TouchableOpacity, View, Image, Text, Alert } from 'react-native';
|
|
|
|
export const Stat = ({ children, source, description }) => {
|
|
return (
|
|
<TouchableOpacity onPress={description ? () => Alert.alert("Info", description) : null}>
|
|
<View style={{height: 30, flexDirection: "row", justifyContent: 'center', alignItems: 'center'}}>
|
|
{source && <Image source={source} style={{width: 30, height: 30, marginRight: 5}} resizeMode="contain"/>}
|
|
<Text style={{fontSize: 15}}>{children}</Text>
|
|
</View>
|
|
</TouchableOpacity>
|
|
);
|
|
};
|