Files
TorrServerJellyfin/web/src/components/TorrentList/NoServerConnection.jsx
2021-06-20 22:43:21 +03:00

22 lines
525 B
JavaScript

import { useTranslation } from 'react-i18next'
import { themeColors } from 'style/colors'
import IconWrapper from './style'
export default function NoServerConnection() {
const { t } = useTranslation()
return (
<IconWrapper>
<lord-icon
src='https://cdn.lordicon.com/wrprwmwt.json'
trigger='loop'
colors={`primary:#121331,secondary:${themeColors.primary}`}
stroke='26'
scale='60'
/>
<div className='icon-label'>{t('Offline')}</div>
</IconWrapper>
)
}