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 = ({ onClose, onZoomIn, onZoomOut, onReset }) => { const _ = useTranslation(); return (
); }; export default ZoomControls;