Skip to content

RtkLeaveButton

Last updated View as MarkdownAgent setup

A button which toggles visilibility of the leave confirmation dialog.

Properties

Property Type Required Default Description
iconPack IconPack defaultIconPack Icon pack
size Size - Size
t RtkI18n useLanguage() Language
variant ControlBarVariant - 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"
    />
  );
}

Was this helpful?