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