import { StyleSheet, Text, View, Pressable } from 'react-native' const RemoveNoteButton = ({ removeNote }) => ( Delete ); const styles = StyleSheet.create({ button: { width: 80, alignItems: 'center', justifyContent: 'center', backgroundColor: 'red', }, buttonText: { fontWeight: 'bold', color: 'white', }, buttonsContainer: { flex: 1, flexDirection: 'row', justifyContent: 'flex-end', }, }); export default RemoveNoteButton;