import Styles from "@/constants/Styles" import { Pressable, Text, View } from "react-native" type Props = { onPress: () => void icon: React.ReactNode title: string } export default function MenuItemRow({ onPress, icon, title }: Props) { return ( { console.log('press'); onPress() }} style={[Styles.btnMenuRow]}> {icon} {title} ) }