import IconAcknowledge from '@mui/icons-material/Person'; import { useTheme } from '@mui/material'; import { useTranslation } from 'react-i18next'; import { labelAcknowledgement } from '../../../translatedLabels'; import EventAnnotations from '../EventAnnotations'; import type { Args } from '../models'; const AcknowledgementAnnotations = (props: Args): JSX.Element => { const { t } = useTranslation(); const theme = useTheme(); const color = theme.palette.action.acknowledged; return ( ); }; export default AcknowledgementAnnotations;