23 lines
579 B
JavaScript
23 lines
579 B
JavaScript
import { Pressable, StyleSheet, Text } from 'react-native';
|
|
import MaterialIcons from '@expo/vector-icons/MaterialIcons';
|
|
|
|
export default function IconButton({ icon, label, onPress }) {
|
|
return (
|
|
<Pressable style={styles.iconButton} onPress={onPress}>
|
|
<MaterialIcons name={icon} size={24} color="#000" />
|
|
<Text style={styles.iconButtonLabel}>{label}</Text>
|
|
</Pressable>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
iconButton: {
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
},
|
|
iconButtonLabel: {
|
|
color: '#000',
|
|
marginTop: 12,
|
|
},
|
|
});
|