import { forwardRef } from 'react'; import { Text, TouchableOpacity, TouchableOpacityProps, View } from 'react-native'; type ButtonProps = { title: string; } & TouchableOpacityProps; export const Button = forwardRef(({ title, ...touchableProps }, ref) => { return ( {title} ); }); Button.displayName = 'Button'; const styles = { button: 'items-center bg-indigo-500 rounded-[28px] shadow-md p-4', buttonText: 'text-white text-lg font-semibold text-center', };