Skip to main contentIntelligence Community Design SystemICDSGet startedAccessibilityStylesComponentsPatternsCommunity

Loading indicator

GuidanceCodeAccessibility

Component demo

Interactive example

<ic-loading-indicator type="circular" label="Loading..."></ic-loading-indicator>
<ic-loading-indicator type="linear" label="Loading..."></ic-loading-indicator>

Loading indicator details

Props

All components also accept native properties supported by the DOM, such as className and style.

NameDescriptionDefault
Propertyappearance
Attributeappearance

The appearance of the loading indicator, e.g. dark or light.

type: IcThemeForegroundNoDefault - "dark" | "light"
"dark"
Propertydescription
Attributedescription

The description that will be set as the aria-label of the loading indicator when not using a visible label.

type: string
"Loading"
PropertyfullWidth
Attributefull-width

If true, when linear, the full-width variant (i.e. without a border radius) will be displayed.

type: boolean
false
Propertylabel
Attributelabel

The label to be displayed beneath the loading indicator. Display a changing label by separating multiple messages with forward slashes.

type: string
PropertylabelDuration
Attributelabel-duration

The time in milliseconds before the label changes.

type: number
8000
Propertymax
Attributemax

The maximum value that the progress value can take. Used to calculate the proportional width of the progress bar.

type: number
100
Propertymin
Attributemin

The minimum value that the progress value can take. Used to calculate the proportional width of the progress bar.

type: number
0
Propertyprogress
Attributeprogress

The current amount of progress made. If not provided, component acts as an indeterminate loading indicator.

type: number
Propertysize
Attributesize

The size of the loading indicator.

type: IcLoadingSizes - "default" | "icon" | "large" | "small"
"default"
Propertytype
Attributetype

The type of indicator, either linear or circular.

type: IcLoadingTypes - "circular" | "linear"
"circular"
Propertyappearance
Attributeappearance

The appearance of the loading indicator, e.g. dark or light.

type: IcThemeForegroundNoDefault - "dark" | "light"
Default: "dark"
Propertydescription
Attributedescription

The description that will be set as the aria-label of the loading indicator when not using a visible label.

type: string
Default: "Loading"
PropertyfullWidth
Attributefull-width

If true, when linear, the full-width variant (i.e. without a border radius) will be displayed.

type: boolean
Default: false
Propertylabel
Attributelabel

The label to be displayed beneath the loading indicator. Display a changing label by separating multiple messages with forward slashes.

type: string
PropertylabelDuration
Attributelabel-duration

The time in milliseconds before the label changes.

type: number
Default: 8000
Propertymax
Attributemax

The maximum value that the progress value can take. Used to calculate the proportional width of the progress bar.

type: number
Default: 100
Propertymin
Attributemin

The minimum value that the progress value can take. Used to calculate the proportional width of the progress bar.

type: number
Default: 0
Propertyprogress
Attributeprogress

The current amount of progress made. If not provided, component acts as an indeterminate loading indicator.

type: number
Propertysize
Attributesize

The size of the loading indicator.

type: IcLoadingSizes - "default" | "icon" | "large" | "small"
Default: "default"
Propertytype
Attributetype

The type of indicator, either linear or circular.

type: IcLoadingTypes - "circular" | "linear"
Default: "circular"

CSS Custom Properties

NameDescription
--circular-diameterDiameter of the circular-indicator
--circular-diameterDiameter of the circular-indicator

Variants

Sizes

Interactive example

<ic-loading-indicator type="circular" label="Loading..." size="small"></ic-loading-indicator>
<ic-loading-indicator type="circular" label="Loading..." size="large"></ic-loading-indicator>
<ic-loading-indicator type="linear" label="Loading..." size="small"></ic-loading-indicator>
<ic-loading-indicator type="linear" label="Loading..." size="large"></ic-loading-indicator>

Icon

Interactive example

<ic-loading-indicator size="icon"></ic-loading-indicator>

Determinate

Interactive example

<ic-loading-indicator type="circular" label="Progress 30%" progress="30" min="0" max="100"></ic-loading-indicator>
<ic-loading-indicator type="linear" label="Progress 30%" progress="30" min="0" max="100"></ic-loading-indicator>

Light

Interactive example

<ic-loading-indicator
type="circular"
label="Loading"
appearance="light"
></ic-loading-indicator>
<ic-loading-indicator
type="linear"
label="Loading"
appearance="light"
></ic-loading-indicator>

Changing label

Interactive example

<ic-loading-indicator type="circular" label="Loading.../Still loading..." label-duration="4000"></ic-loading-indicator>

Last reviewed 31 May 2024.
Navigated to Loading indicator - Intelligence Community Design System