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(function Card( { className, size = 'md', variant = 'elevated', ...props }, ref ) { return (
); }); Card.displayName = 'Card'; export { Card };