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