Skip to content

RtkLeaveButton

A button which toggles visilibility of the leave confirmation dialog.

Properties

PropertyTypeRequiredDefaultDescription
iconPackIconPack❌defaultIconPackIcon pack
sizeSize✅-Size
tRtkI18n❌useLanguage()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"
/>
);
}