import React from 'react'; import { Button, Tooltip } from 'antd'; import { LeftOutlined, RightOutlined, ZoomInOutlined, ZoomOutOutlined, RotateRightOutlined, ReloadOutlined, CompressOutlined, } from '@ant-design/icons'; interface ViewerControlsProps { style: React.CSSProperties; onPrev: () => void; onNext: () => void; onZoomIn: () => void; onZoomOut: () => void; onRotate: () => void; onReset: () => void; onFit: () => void; disableSwitch: boolean; } export const ViewerControls: React.FC = ({ style, onPrev, onNext, onZoomIn, onZoomOut, onRotate, onReset, onFit, disableSwitch, }) => (
);