import { View, ViewProps } from 'react-native'; export function Card({ children, className = '', ...props }: ViewProps & { className?: string }) { return ( {children} ); }