A component which shows an animating spinner.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
iconPack |
IconPack |
❌ | defaultIconPack |
Icon pack |
size |
Size1 |
✅ | - | Size |
import { RtkSpinner } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkSpinner />;
}import { RtkSpinner } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkSpinner
size="md"
/>
);
}