import { IconRefresh } from "@tabler/icons-react"; import { useT } from "../i18n.js"; import { cn } from "../utils.js"; export function ExtensionQueryErrorState({ message, onRetry, retrying = false, compact = false, className, }: { message: string; onRetry: () => void; retrying?: boolean; compact?: boolean; className?: string; }) { const t = useT(); return (
{message}
); }