import AddCircleIcon from '@mui/icons-material/AddCircle' import DeleteForeverIcon from '@mui/icons-material/DeleteForever' import { SpeedDial, SpeedDialAction, SpeedDialIcon } from '@mui/material' import { useI18n } from '../../hooks/useI18n' type Props = { onOpen: () => void onStopAll: () => void } const LivestreamSpeedDial: React.FC = ({ onOpen, onStopAll }) => { const { i18n } = useI18n() return ( } > } tooltipTitle={i18n.t('abortAllButton')} onClick={onStopAll} /> } tooltipTitle={i18n.t('newDownloadButton')} onClick={onOpen} /> ) } export default LivestreamSpeedDial