import React from "react"; import { CircularProgress, CircularProgressProps } from "./CircularProgress"; import { Typography } from "./Typography"; /** * * @param text * @param props * @ignore */ export function CircularProgressCenter({ text, ...props }: CircularProgressProps & { text?: string }) { return (
{text && {text}}
); }