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