import PropTypes from 'prop-types' import classNames from 'classnames' import { useTranslation } from 'react-i18next' import BootstrapVersionSwitcher from '@/features/ui/components/bootstrap-5/bootstrap-version-switcher' import MaterialIcon from '@/shared/components/material-icon' function TrackChangesToggleButton({ trackChangesIsOpen, disabled, onMouseDown, }) { const { t } = useTranslation() const classes = classNames('btn', 'btn-full-height', { active: trackChangesIsOpen && !disabled, disabled, }) return (