Skip to content

RtkEmojiPickerButton

Last updated View as MarkdownAgent setup

Properties

Property Type Required Default Description
iconPack IconPack1 defaultIconPack Icon pack
isActive boolean - Active state indicator
t RtkI18n1 useLanguage() Language

Usage Examples

Basic Usage

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

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

With Properties

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

function MyComponent() {
  return (
    <RtkEmojiPickerButton
      isActive={true}
    />
  );
}

Was this helpful?