import * as React from "react"; import { Pressable, View, type PressableProps, type ViewProps } from "react-native"; import { cn } from "@/lib/utils"; const Card = React.forwardRef( ({ className, ...props }, ref) => ( ), ); Card.displayName = "Card"; const CardPressable = React.forwardRef< View, PressableProps & { className?: string; children?: React.ReactNode } >(({ className, children, ...props }, ref) => ( } className={cn( "rounded-md border border-border bg-card p-4 active:bg-secondary", className, )} {...props} > {children as React.ReactNode} )); CardPressable.displayName = "CardPressable"; export { Card, CardPressable };