import { ButtonGroup } from 'react-bootstrap' import PropTypes from 'prop-types' import Button from 'react-bootstrap/lib/Button' import Icon from '../../../shared/components/icon' import { memo } from 'react' import { useTranslation } from 'react-i18next' function PdfViewerControls({ setZoom }) { const { t } = useTranslation() return ( ) } PdfViewerControls.propTypes = { setZoom: PropTypes.func.isRequired, } export default memo(PdfViewerControls)