import React from 'react'; import { IoClose, IoExpand, IoAdd, IoRemove } from 'react-icons/io5'; import { useTranslation } from '@/hooks/useTranslation'; import { useThemeStore } from '@/store/themeStore'; import { Insets } from '@/types/misc'; interface ZoomControlsProps { gridInsets: Insets; onClose: () => void; onZoomIn: () => void; onZoomOut: () => void; onReset: () => void; } const ZoomControls: React.FC = ({ gridInsets, onClose, onZoomIn, onZoomOut, onReset, }) => { const _ = useTranslation(); const { systemUIVisible, statusBarHeight } = useThemeStore(); return (
); }; export default ZoomControls;