import { ChevronLeft, ChevronRight } from "lucide-react"; interface ImageNavigationButtonsProps { onPrev: () => void; onNext: () => void; currentIndex: number; totalImages: number; } export function ImageNavigationButtons({ onPrev, onNext, currentIndex, totalImages, }: ImageNavigationButtonsProps) { const hasPrev = currentIndex > 0; const hasNext = currentIndex < totalImages - 1; return ( <> {/* 左侧按钮 */} {/* 右侧按钮 */} ); }