import type { ReactNode } from 'react'; import { type StyleProp, type ViewStyle, KeyboardAvoidingView, Platform } from 'react-native'; import { useTheme } from '../../hooks/useTheme'; import styles from './styles'; export interface CardProps { children: ReactNode; style?: StyleProp; } export function Card({ children, style }: CardProps) { const Theme = useTheme(); return ( {children} ); }