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