export default function IconButton({ icon, label, variant = 'default', title, className = '', type = 'button', ...rest }) { const variantClass = variant === 'ghost' ? ' btn-ghost' : ''; const tooltip = title ?? label; return ( ); }