import { StyleSheet, TouchableOpacity } from "react-native"; export default function ClickableCustom({ children, onPress, disabled, style, ...props }: { children: React.ReactNode; onPress: () => void; disabled?: boolean; style?: any; [key: string]: any; }) { return ( <> {children} ); } const styles = StyleSheet.create({ container: { width: "100%", height: "auto", }, });