import PropTypes from 'prop-types' import { useTranslation } from 'react-i18next' import Icon from '../../../shared/components/icon' import MaterialIcon from '@/shared/components/material-icon' import BootstrapVersionSwitcher from '@/features/ui/components/bootstrap-5/bootstrap-version-switcher' function MenuButton({ onClick }) { const { t } = useTranslation() return (
) } MenuButton.propTypes = { onClick: PropTypes.func.isRequired, } export default MenuButton