import Styles from "@/constants/Styles"; import { useTheme } from "@/providers/ThemeProvider"; import { TouchableOpacity } from "react-native"; import Text from './Text'; type Props = { text: string; onPress: () => void; disabled?: boolean }; export function ButtonForm({ text, onPress, disabled }: Props) { const { colors } = useTheme(); return ( {text} ); }