Skip to content
Cloudflare Docs

RtkLeaveButton

A button which toggles visilibility of the leave confirmation dialog.

Properties

PropertyTypeRequiredDefaultDescription
iconPackIconPackdefaultIconPackIcon pack
sizeSize-Size
tRtkI18nuseLanguage()Language
variantControlBarVariant-Variant

Usage Examples

Basic Usage

import { RtkLeaveButton } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkLeaveButton />;
}

With Properties

import { RtkLeaveButton } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkLeaveButton
size="md"
variant="button"
/>
);
}