import type { ElementType, ReactNode } from "react"; interface CardProps { children: ReactNode; className?: string; as?: ElementType; } export function Card({ children, className = "", as: Tag = "div", }: CardProps) { return ( {children} ); }