Skip to content

RtkSpinner

Last updated View as MarkdownAgent setup

A component which shows an animating spinner.

Properties

Property Type Required Default Description
iconPack IconPack defaultIconPack Icon pack
size Size1 - Size

Usage Examples

Basic Usage

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

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

With Properties

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

function MyComponent() {
  return (
    <RtkSpinner
      size="md"
    />
  );
}

Was this helpful?