import { TouchableOpacity, View } from "react-native"; import { useResponsive } from "@/lib/responsive"; export const TextBox = (props) => { const { backgroundColor, flex, onPressButton, children } = props; const { verticalScale } = useResponsive(); return ( {children} ); };