Skip to content

RtkSpinner

Last updated View as MarkdownAgent setup

An animated loading spinner component.

Properties

Property Type Required Default Description
style object - Custom styles to override spinner appearance

Usage Examples

Basic Usage

import { RtkSpinner } from "@cloudflare/realtimekit-react-native-ui";

function MyComponent() {
	return <RtkSpinner />;
}

With Properties

import { RtkSpinner } from "@cloudflare/realtimekit-react-native-ui";

function MyComponent() {
	return <RtkSpinner style={{ width: 48, height: 48 }} />;
}

Was this helpful?