import styles from "./LoadingIndicator.module.css"; export function LoadingIndicator({ isLoading, progress, }: { isLoading: boolean; progress: number; }) { return (
{Math.round(progress * 100)}%
); }