import { Trans } from "@lingui-solid/solid/macro"; import { Dialog, DialogProps } from "@revolt/ui"; import { Modals } from "../types"; /** * Modal to notify the user they've been signed out * TODO: show if user is banned, etc */ export function SignedOutModal( props: DialogProps & Modals & { type: "signed_out" }, ) { return ( You've been signed out of Stoat!} actions={[{ text: OK }]} > <> ); }