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