import { Text, TextClassContext } from '@/components/ui/text'; import { cn } from '@/lib/utils'; import { View, type ViewProps } from 'react-native'; function Card({ className, ...props }: ViewProps & React.RefAttributes) { return ( ); } function CardHeader({ className, ...props }: ViewProps & React.RefAttributes) { return ; } function CardTitle({ className, ...props }: React.ComponentProps & React.RefAttributes) { return ( ); } function CardDescription({ className, ...props }: React.ComponentProps & React.RefAttributes) { return ; } function CardContent({ className, ...props }: ViewProps & React.RefAttributes) { return ; } function CardFooter({ className, ...props }: ViewProps & React.RefAttributes) { return ; } export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle };