import Styles from "@/constants/Styles"; import { useTheme } from "@/providers/ThemeProvider"; 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) { const { colors } = useTheme(); return ( {icon} {text} ) }