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