{/* Action buttons */}
{/* Image counter */}
{images.length > 1 && (
{index + 1} / {images.length}
)}
{/* Left arrow */}
{index > 0 && (
)}
{/* Right arrow */}
{index < images.length - 1 && (
)}
{/* Image */}
{status === 'error' ? (
e.stopPropagation()}
>
{current?.name || 'Image not found'}
) : resolvedSrc ? (
e.stopPropagation()}
/>
) : (
e.stopPropagation()}
/>
)}
);
}