import { BackwardCompatibleLoadingState } from '@interval/sdk/dist/internalRpcSchema' import IVSpinner from '~/components/IVSpinner' export default function DisplayProgressIndeterminate( props: BackwardCompatibleLoadingState ) { return (
{(props.label ?? props.title) && (

{props.label ?? props.title}

)} {props.description && (

{props.description}

)}
) }