File size: 1,846 Bytes
4e1096a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | import React from 'react';
import { IoClose, IoExpand, IoAdd, IoRemove } from 'react-icons/io5';
import { useTranslation } from '@/hooks/useTranslation';
interface ZoomControlsProps {
onClose: () => void;
onZoomIn: () => void;
onZoomOut: () => void;
onReset: () => void;
}
const ZoomControls: React.FC<ZoomControlsProps> = ({ onClose, onZoomIn, onZoomOut, onReset }) => {
const _ = useTranslation();
return (
<div className='absolute right-4 top-4 z-10 grid grid-cols-1 gap-4 text-white'>
<button
onClick={onClose}
className='eink-bordered flex h-10 w-10 cursor-pointer items-center justify-center rounded-full bg-black/50 transition-colors hover:bg-black/70'
aria-label={_('Close')}
title={_('Close')}
>
<IoClose className='h-6 w-6' />
</button>
<button
onClick={onZoomIn}
className='eink-bordered flex h-10 w-10 cursor-pointer items-center justify-center rounded-full bg-black/50 transition-colors hover:bg-black/70'
aria-label={_('Zoom In')}
title={_('Zoom In')}
>
<IoAdd className='h-6 w-6' />
</button>
<button
onClick={onZoomOut}
className='eink-bordered flex h-10 w-10 cursor-pointer items-center justify-center rounded-full bg-black/50 transition-colors hover:bg-black/70'
aria-label={_('Zoom Out')}
title={_('Zoom Out')}
>
<IoRemove className='h-6 w-6' />
</button>
<button
onClick={onReset}
className='eink-bordered flex h-10 w-10 cursor-pointer items-center justify-center rounded-full bg-black/50 transition-colors hover:bg-black/70'
aria-label={_('Reset Zoom')}
title={_('Reset Zoom')}
>
<IoExpand className='h-6 w-6' />
</button>
</div>
);
};
export default ZoomControls;
|