import { type HTMLAttributes, type ReactNode } from "react"; interface CardProps extends HTMLAttributes { children: ReactNode; } export function Card({ children, className = "", ...rest }: CardProps) { return (
{children}
); }