import Styles from "@/constants/Styles"; import React from "react"; import { TouchableWithoutFeedback, View } from "react-native"; import Text from "./Text"; type Props = { onPress?: () => void; icon: React.ReactNode; text: string; }; export function ButtonFiturMenu({ onPress, icon, text }: Props) { return ( {icon} {text} ) }