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