import { useTheme } from '@mui/material'; import { useTranslation } from 'react-i18next'; import { DowntimeIcon } from '../../../../../Icon'; import { labelDowntime } from '../../../translatedLabels'; import EventAnnotations from '../EventAnnotations'; import type { Args } from '../models'; const DowntimeAnnotations = (props: Args): JSX.Element => { const { t } = useTranslation(); const theme = useTheme(); const color = theme.palette.action.inDowntime; return ( ); }; export default DowntimeAnnotations;