import { HTMLAttributes, forwardRef } from 'react';
export const Card = forwardRef>(
({ className = '', ...props }, ref) => (
)
);
Card.displayName = 'Card';
export const CardHeader = forwardRef>(
({ className = '', ...props }, ref) => (
)
);
CardHeader.displayName = 'CardHeader';
export const CardTitle = forwardRef>(
({ className = '', ...props }, ref) => (
)
);
CardTitle.displayName = 'CardTitle';
export const CardDescription = forwardRef>(
({ className = '', ...props }, ref) => (
)
);
CardDescription.displayName = 'CardDescription';
export const CardContent = forwardRef>(
({ className = '', ...props }, ref) => (
)
);
CardContent.displayName = 'CardContent';
export const CardFooter = forwardRef>(
({ className = '', ...props }, ref) => (
)
);
CardFooter.displayName = 'CardFooter';