import { StyleSheet, Pressable } from "react-native"; import { ThemedText } from "@/components/ThemedText"; import { ThemedView } from "@/components/ThemedView"; import { Colors } from '@/constants/Colors'; import { useColorScheme } from '@/hooks/useColorScheme'; const DEFAULT_WIDTH = 320; const DEFAULT_HEIGHT = 68; type Props = { width?: number; height?: number; onPress?: () => void; }; const Button = ({ width, height, children, onPress }: Props & React.ComponentProps) => { const scheme = useColorScheme() ?? 'light'; return ( {children} ); }; export default Button; const styles = StyleSheet.create({ buttonContainer: { alignItems: 'center', justifyContent: 'center', padding: 3, }, button: { borderRadius: 10, width: '100%', height: '100%', alignItems: 'center', justifyContent: 'center', flexDirection: 'row', }, });