import type { ReactNode } from "react"; import { T } from "src/locale"; import styles from "./Loading.module.css"; interface Props { label?: string | ReactNode; noLogo?: boolean; } export function Loading({ label, noLogo }: Props) { return (
{noLogo ? null : (
)}
{label || }
); }