forked from cemaden-educacao/WPD-MobileApp
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.
30 lines
729 B
30 lines
729 B
import React from "react";
|
|
import { View, StyleSheet, TouchableWithoutFeedback } from "react-native";
|
|
import { MaterialCommunityIcons } from "@expo/vector-icons";
|
|
|
|
import colors from "../../config/colors";
|
|
|
|
function ListItemDeleteAction({ onPress }) {
|
|
return (
|
|
<TouchableWithoutFeedback onPress={onPress}>
|
|
<View style={styles.container}>
|
|
<MaterialCommunityIcons
|
|
name="trash-can"
|
|
size={35}
|
|
color={colors.white}
|
|
/>
|
|
</View>
|
|
</TouchableWithoutFeedback>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
backgroundColor: colors.danger,
|
|
width: 70,
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
});
|
|
|
|
export default ListItemDeleteAction;
|