import Icon from "@/Icons/Icon"; import AsyncButton from "./AsyncButton"; import { FormattedMessage } from "react-intl"; import classNames from "classnames"; export function Offline({ onRetry, className }: { onRetry?: () => void | Promise; className?: string }) { return (
{onRetry && ( )}
); }