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