import { useT } from "@agent-native/core/client/i18n"; import { IconAlertCircle, IconRefresh } from "@tabler/icons-react"; import { Button } from "@/components/ui/button"; export function QueryErrorState({ onRetry, compact = false, }: { onRetry: () => void; compact?: boolean; }) { const t = useT(); return (

{t("common.loadFailed")}

); }