Back to Compositions

LoadingState

Feedback

Skeleton loading placeholder with status text

Composed from
SpinnerTextBox
Example
Importing products...Step 2 of 4
Usage
import { LoadingState } from '@/components/polaris';

function Example() {
    return (
        <LoadingState
            status="Loading products..."
            progress="Step 2 of 4"
        />
    );
}