import React from 'react'; import { cn } from '@/lib/utils'; interface CardProps extends React.HTMLAttributes { hover?: boolean; } export const Card = React.forwardRef( ({ className, hover = false, ...props }, ref) => { return (
); } ); Card.displayName = 'Card'; export const CardHeader = React.forwardRef>( ({ className, ...props }, ref) => { return (
); } ); CardHeader.displayName = 'CardHeader'; export const CardTitle = React.forwardRef>( ({ className, ...props }, ref) => { return (

); } ); CardTitle.displayName = 'CardTitle'; export const CardDescription = React.forwardRef>( ({ className, ...props }, ref) => { return (

); } ); CardDescription.displayName = 'CardDescription'; export const CardContent = React.forwardRef>( ({ className, ...props }, ref) => { return (

); } ); CardContent.displayName = 'CardContent'; export const CardFooter = React.forwardRef>( ({ className, ...props }, ref) => { return (
); } ); CardFooter.displayName = 'CardFooter';