import type { ReactNode } from 'react'; interface CardProps { icon?: string; title?: ReactNode; headerRight?: ReactNode; children: ReactNode; className?: string; } export function Card({ icon, title, headerRight, children, className = '' }: CardProps) { return (