import { View, type ViewStyle } from "react-native"; import { useTheme } from "../theme"; interface CardProps { children: React.ReactNode; style?: ViewStyle; onPress?: () => void; } export function Card({ children, style, onPress }: CardProps) { const theme = useTheme(); return ( {children} ); }