Skip to main content

Indicators

Progress Indicator

A component used to visually communicate the progress of a task or process to the user.

Activity Indicator

A component used to indicate that a process is ongoing, and the system is working to retrieve data, perform a task, or load content.

Code Example

import {
ActivityIndicator,
Glass,
ProgressIndicator,
} from "@coconut-xr/apfel-kruemel";

export default function Indicators() {
return (
<Glass borderRadius={32} padding={16} flexDirection="column" gapRow={16}>
<ProgressIndicator value={0.75} />
<ActivityIndicator size="md" />
</Glass>
);
}

Sandbox

Params

Progress Indicator

NameTypeAttributesDescription
valuenumberoptional / default: 0Value between 0 and 1 to indicate the progress

Activity Indicator

NameTypeAttributesDescription
sizeSizeoptional / default: 'md'Sets the size of the activity indicator. Options are "sm" / "md" / "lg" .