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