import { CaretLeftIcon, CaretRightIcon } from '@phosphor-icons/react' import React from 'react' import { VIEWER_NAV_CLASS } from './viewerChromeClasses' export interface CarouselNavProps { onPrev: () => void onNext: () => void /** Accessible label for the previous-item button. */ prevLabel?: string /** Accessible label for the next-item button. */ nextLabel?: string } /** * Prev / next chrome shared by every carousel-aware viewer. Rendered * inside the dialog body so the buttons sit absolutely positioned * against the viewer, mid-height on each edge. */ const CarouselNav: React.FC = ({ onPrev, onNext, prevLabel = 'Previous', nextLabel = 'Next', }) => ( <> ) export default CarouselNav