import {t} from '@/scripts/i18n'; import styled from '@emotion/styled'; import clsx from 'clsx'; import Skeleton from 'react-loading-skeleton'; import {Box, Icon, InfoTable} from './styles'; const ShrinkedSkeleton = styled(Skeleton)<{width?: string}>` width: ${properties => properties.width}; `; const isDarkMode = document.body.classList.contains('dark-mode'); export default function LoadingCard() { return (
{t('general.user.score')}
{t('admin.permission')}
{t('admin.verification')}
); }