import { View } from 'react-native'; import { cn } from '../lib/cn'; import { Text, TextClassContext } from './text'; 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 };