import { FC } from "react" import IconLoading from "../icon/IconLoading" import Alert, { AlertProps } from "./Alert" import styles from "./Loading.module.css" import classNames from "classnames" const ConnectingAlert: FC = ({ className = "", canClose = false, }) => { return (
Connecting ...
) } export default ConnectingAlert