/* * SPDX-FileCopyrightText: 2020 Stalwart Labs LLC * SPDX-FileCopyrightText: 2026 Coffey Labs * * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-SEL * * Modified by Coffey Labs in 2026 for INBUXA. */ import { Loader2 } from 'lucide-react'; import { useTranslation } from 'react-i18next'; import { cn } from '@/lib/utils'; import inbuxaMark from '@/assets/inbuxa-mark.png'; export function LoadingFallback({ fullScreen = false }: { fullScreen?: boolean }) { const { t } = useTranslation(); return (

{t('common.loading')}

); }