type LoadingBrandedTypes = { loadProgress: number // Percentage label?: string hasError?: boolean } export default function LoadingBranded({ loadProgress, label, hasError = false, }: LoadingBrandedTypes) { return ( <>
{!hasError && (
{label}
)} ) }