import { intl } from "src/locale"; import styles from "./Loading.module.css"; interface Props { label?: string; noLogo?: boolean; } export function Loading({ label, noLogo }: Props) { return (
{noLogo ? null : (
)}
{label || intl.formatMessage({ id: "loading" })}
); }