ReactProgress Components

Indeterminate

Use the `Indeterminate` component

The Indeterminate component must be used inside the Progress component.

Import

import { Indeterminate } from '@bprogress/...';

Note

Replace the ... in the import with the library you're using. For example, if you use @bprogress/next, import by doing from '@bprogress/next'

Usage

The Indeterminate component is used to create the indeterminate progress bar element.

<Indeterminate />

It's only useful if you use the BProgress indeterminate option.

Props

NameTypeDefaultDescription
asReact.ElementType'div'The component to render the progress element
classSelectorstring'indeterminate'The class selector of the progress element (depends on your css)
...restReact.ComponentPropsWithoutRef<T>-The rest of the props are passed to the progress element

On this page