mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-31 02:00:07 +02:00

Remove proptypes from editor-navigation-toolbar components GitOrigin-RevId: 77a1c4e13e3da6c06bb515b0137da2f70bfdf4a8
36 lines
939 B
TypeScript
36 lines
939 B
TypeScript
import classNames from 'classnames'
|
|
import { useTranslation } from 'react-i18next'
|
|
import MaterialIcon from '@/shared/components/material-icon'
|
|
|
|
function TrackChangesToggleButton({
|
|
trackChangesIsOpen,
|
|
disabled,
|
|
onMouseDown,
|
|
}: {
|
|
trackChangesIsOpen: boolean
|
|
disabled?: boolean
|
|
onMouseDown: (e: React.MouseEvent) => void
|
|
}) {
|
|
const { t } = useTranslation()
|
|
const classes = classNames('btn', 'btn-full-height', {
|
|
active: trackChangesIsOpen && !disabled,
|
|
disabled,
|
|
})
|
|
|
|
return (
|
|
<div className="toolbar-item">
|
|
<button
|
|
type="button"
|
|
disabled={disabled}
|
|
className={classes}
|
|
onMouseDown={onMouseDown}
|
|
>
|
|
<MaterialIcon type="rate_review" className="align-middle" />
|
|
<p className="toolbar-label">{t('review')}</p>
|
|
</button>
|
|
<div id="toolbar-cio-review" className="toolbar-cio-tooltip" />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default TrackChangesToggleButton
|