import { View } from 'react-native'; import type { ViewProps } from 'react-native'; type Props = ViewProps & { children: React.ReactNode; className?: string; }; export function Card({ children, className = '', style, ...rest }: Props) { return ( {children} ); }