import React from 'react'; import type { VariantProps } from '@gluestack-ui/nativewind-utils'; import { View, ViewProps } from 'react-native'; import { cardStyle } from './styles'; type ICardProps = ViewProps & VariantProps & { className?: string }; const Card = React.forwardRef, ICardProps>( ({ className, size = 'md', variant = 'elevated', ...props }, ref) => { return ( ); } ); Card.displayName = 'Card'; export { Card };